-
Supabase + refine
+
Supabase + Refine
Sign in via magic link with your email below
@@ -334,7 +333,7 @@ export default function Auth() {
$CodeTabs>
-Notice we are using the [`useLogin()`](https://refine.dev/docs/api-reference/core/hooks/authentication/useLogin/) refine auth hook to grab the `mutate: login` method to use inside `handleLogin()` function and `isLoading` state for our form submission. The `useLogin()` hook conveniently offers us access to `authProvider.login` method for authenticating the user with OTP.
+Notice we are using the [`useLogin()`](https://refine.dev/docs/api-reference/core/hooks/authentication/useLogin/) Refine auth hook to grab the `mutate: login` method to use inside `handleLogin()` function and `isLoading` state for our form submission. The `useLogin()` hook conveniently offers us access to `authProvider.login` method for authenticating the user with OTP.
### Account page
@@ -367,7 +366,7 @@ export default function Account() {
const { mutate: logOut } = useLogout()
const {
- refineCore: { formLoading, queryResult, onFinish },
+ refineCore: { formLoading, query, onFinish },
register,
control,
handleSubmit,
@@ -416,7 +415,7 @@ export default function Account() {
$CodeTabs>
-Notice above that, we are using three refine hooks, namely the [`useGetIdentity()`](https://refine.dev/docs/api-reference/core/hooks/authentication/useGetIdentity/), [`useLogOut()`](https://refine.dev/docs/api-reference/core/hooks/authentication/useLogout/) and [`useForm()`](https://refine.dev/docs/packages/documentation/react-hook-form/useForm/) hooks.
+Notice above that, we are using three Refine hooks, namely the [`useGetIdentity()`](https://refine.dev/docs/api-reference/core/hooks/authentication/useGetIdentity/), [`useLogOut()`](https://refine.dev/docs/api-reference/core/hooks/authentication/useLogout/) and [`useForm()`](https://refine.dev/docs/packages/documentation/react-hook-form/useForm/) hooks.
`useGetIdentity()` is a auth hook that gets the identity of the authenticated user. It grabs the current user by invoking the `authProvider.getIdentity` method under the hood.
@@ -437,13 +436,13 @@ Add the routes for `/login` with the `
` component and the routes for `in
```tsx name=src/App.tsx
import { Authenticated, Refine } from '@refinedev/core'
import { RefineKbar, RefineKbarProvider } from '@refinedev/kbar'
-import routerBindings, {
+import routerProvider, {
CatchAllNavigate,
DocumentTitleHandler,
UnsavedChangesNotifier,
-} from '@refinedev/react-router-v6'
+} from '@refinedev/react-router'
import { dataProvider, liveProvider } from '@refinedev/supabase'
-import { BrowserRouter, Outlet, Route, Routes } from 'react-router-dom'
+import { BrowserRouter, Outlet, Route, Routes } from 'react-router'
import './App.css'
import authProvider from './authProvider'
@@ -459,7 +458,7 @@ function App() {
dataProvider={dataProvider(supabaseClient)}
liveProvider={liveProvider(supabaseClient)}
authProvider={authProvider}
- routerProvider={routerBindings}
+ routerProvider={routerProvider}
options={{
syncWithLocation: true,
warnWhenUnsavedChanges: true,
@@ -468,14 +467,17 @@ function App() {
}>
+ }
+ >
}
>
} />
- } />}>
+ } />}>
} />
@@ -501,7 +503,7 @@ npm run dev
And then open the browser to [localhost:5173](http://localhost:5173) and you should see the completed app.
-
+
## Bonus: Profile photos
@@ -636,7 +638,7 @@ return (
size={150}
onUpload={(filePath) => {
onFinish({
- ...queryResult?.data?.data,
+ ...query?.data?.data,
avatar_url: filePath,
onMutationError: (data: { message: string }) => alert(data?.message),
})
diff --git a/apps/docs/features/docs/Reference.sections.tsx b/apps/docs/features/docs/Reference.sections.tsx
index 67c07fccd2f3f..52ce5675fc048 100644
--- a/apps/docs/features/docs/Reference.sections.tsx
+++ b/apps/docs/features/docs/Reference.sections.tsx
@@ -7,6 +7,7 @@ import ApiSchema from '~/components/ApiSchema'
import { clientSdkIds, REFERENCES } from '~/content/navigation.references'
import { MDXRemoteRefs, getRefMarkdown } from '~/features/docs/Reference.mdx'
import type { MethodTypes } from '~/features/docs/Reference.typeSpec'
+import { formatMethodSignature } from '~/features/docs/Reference.typeSpec'
import {
getApiEndpointById,
getCliSpec,
@@ -447,6 +448,16 @@ async function FunctionSection({
return (
+
+ {/* Display method signature below title */}
+ {types && formatMethodSignature(types) && (
+
+
+ {formatMethodSignature(types)}
+
+
+ )}
+
@@ -468,48 +479,60 @@ async function FunctionSection({
{!!types?.ret && }
- {'examples' in fn && Array.isArray(fn.examples) && fn.examples.length > 0 && (
-
-
- {fn.examples.map((example) => (
-
- {example.name}
-
+ {(() => {
+ // Prefer YAML examples, fallback to TypeDoc examples
+ const yamlExamples =
+ 'examples' in fn && Array.isArray(fn.examples) && fn.examples.length > 0
+ ? fn.examples
+ : []
+ const examples = yamlExamples.length > 0 ? yamlExamples : types?.comment?.examples || []
+
+ if (examples.length === 0) return null
+
+ return (
+
+
+ {examples.map((example) => (
+
+ {example.name}
+
+ ))}
+
+ {examples.map((example) => (
+
+
+
+ {/* Only YAML examples have data/response/description fields */}
+ {'data' in example && !!example.data?.sql && (
+
+ )}
+ {'response' in example && !!example.response && (
+
+ )}
+ {'description' in example && !!example.description && (
+
+ )}
+
+
))}
-
- {fn.examples.map((example) => (
-
-
-
- {!!example.data?.sql && (
-
- )}
- {!!example.response && (
-
- )}
- {!!example.description && (
-
- )}
-
-
- ))}
-
- )}
+
+ )
+ })()}
)
diff --git a/apps/docs/features/docs/Reference.typeSpec.ts b/apps/docs/features/docs/Reference.typeSpec.ts
index 57fd7bff264b6..13c122bfb73c8 100644
--- a/apps/docs/features/docs/Reference.typeSpec.ts
+++ b/apps/docs/features/docs/Reference.typeSpec.ts
@@ -47,6 +47,7 @@ interface Comment {
shortText?: string
text?: string
tags?: Array<{ tag: string; text: string }>
+ examples?: Array<{ id: string; name: string; code: string; response?: string }>
}
export interface FunctionParameterType {
@@ -204,6 +205,10 @@ interface CommentBlockTag {
* An @ string, e.g., `@returns`
*/
tag: string
+ /**
+ * Optional name for the tag, e.g., "Empty bucket" for @example tags
+ */
+ name?: string
content: CommentKind[]
}
@@ -225,6 +230,37 @@ function normalizeComment(original: TypedocComment | Comment | undefined): Comme
comment.tags = original.modifierTags.map((tag) => ({ tag: tag.replace(/^@/, ''), text: '' }))
}
+ // Extract @example tags from blockTags
+ if ('blockTags' in original && Array.isArray(original.blockTags)) {
+ const exampleTags = original.blockTags.filter((tag) => tag.tag === '@example')
+ if (exampleTags.length > 0) {
+ comment.examples = exampleTags.map((tag, index) => {
+ // Use the name if provided, otherwise generate a default name
+ const name = tag.name || `Example ${index + 1}`
+ // Convert name to kebab-case for id
+ const id = name
+ .toLowerCase()
+ .replace(/[^a-z0-9]+/g, '-')
+ .replace(/^-|-$/g, '')
+ // Join content to get the full text
+ const fullText = tag.content.map((part) => part.text).join('')
+
+ // Check if there's a "Response:" section and split it
+ const responseMatch = fullText.match(/\n\s*Response:\s*\n/i)
+ let code = fullText
+ let response: string | undefined = undefined
+
+ if (responseMatch) {
+ const splitIndex = responseMatch.index! + responseMatch[0].length
+ code = fullText.substring(0, responseMatch.index!).trim()
+ response = fullText.substring(splitIndex).trim()
+ }
+
+ return { id, name, code, response }
+ })
+ }
+ }
+
return comment
}
@@ -233,6 +269,14 @@ export function parseTypeSpec() {
return modules as Array
}
+function normalizeRefPath(path: string) {
+ return path.replace(/\.index(?=\.|$)/g, '').replace(/\.+/g, '.')
+}
+
+function buildRefPath(segments: Array) {
+ return normalizeRefPath(segments.filter(Boolean).join('.'))
+}
+
// Reading the type spec happens in several layers. The first layer is the
// module: this corresponds roughly to the JS libraries for each product:
// database, auth, storage, etc.
@@ -246,8 +290,9 @@ function parseMod(mod: (typeof typeSpec)['children'][number]) {
// Build a map of nodes by their IDs for easy cross-referencing.
const targetMap = new Map()
buildMap(mod, targetMap)
+ const processingRefs = new Set()
- parseModInternal(mod, targetMap, [], res)
+ parseModInternal(mod, targetMap, [], res, processingRefs)
return res
}
@@ -269,24 +314,31 @@ function parseModInternal(
node: any,
map: Map,
currentPath: Array,
- res: ModuleTypes
+ res: ModuleTypes,
+ processingRefs: Set
) {
let updatedPath: Array
switch ((node.kindString ?? node.variant)?.toLowerCase()) {
case 'module':
updatedPath = [...currentPath, node.name]
- node.children?.forEach((child: any) => parseModInternal(child, map, updatedPath, res))
+ node.children?.forEach((child: any) =>
+ parseModInternal(child, map, updatedPath, res, processingRefs)
+ )
return
// Some libraries have undefined where others have Project or declaration // for the same type of top-level node.
case 'project':
case undefined:
updatedPath = [...currentPath, node.name]
- node.children?.forEach((child: any) => parseModInternal(child, map, updatedPath, res))
+ node.children?.forEach((child: any) =>
+ parseModInternal(child, map, updatedPath, res, processingRefs)
+ )
return
case 'class':
updatedPath = [...currentPath, node.name]
- node.children?.forEach((child: any) => parseModInternal(child, map, updatedPath, res))
+ node.children?.forEach((child: any) =>
+ parseModInternal(child, map, updatedPath, res, processingRefs)
+ )
return
case 'constructor':
return parseConstructor(node, map, currentPath, res)
@@ -294,34 +346,79 @@ function parseModInternal(
return parseMethod(node, map, currentPath, res)
case 'interface':
updatedPath = [...currentPath, node.name]
- node.children?.forEach((child: any) => parseModInternal(child, map, updatedPath, res))
+ node.children?.forEach((child: any) =>
+ parseModInternal(child, map, updatedPath, res, processingRefs)
+ )
return
case 'declaration':
if (node.kind === KIND_CLASS || node.kind === KIND_MODULE) {
updatedPath = [...currentPath, node.name]
- node.children?.forEach((child: any) => parseModInternal(child, map, updatedPath, res))
+ node.children?.forEach((child: any) =>
+ parseModInternal(child, map, updatedPath, res, processingRefs)
+ )
+ } else if (node.kind === KIND_INTERFACE) {
+ updatedPath = [...currentPath, node.name]
+ node.children?.forEach((child: any) =>
+ parseModInternal(child, map, updatedPath, res, processingRefs)
+ )
} else if (node.kind === KIND_CONSTRUCTOR) {
parseConstructor(node, map, currentPath, res)
} else if (node.kind === KIND_METHOD) {
return parseMethod(node, map, currentPath, res)
} else if (node.kind === KIND_PROPERTY) {
- if (node.type?.type === 'reference') {
- const referent = map.get(node.type.target)
- if (referent?.variant === 'declaration' && referent?.kind === KIND_INTERFACE) {
- const children = referent?.children ?? []
- updatedPath = [...currentPath, node.name]
- children.forEach((child: any) => parseModInternal(child, map, updatedPath, res))
- }
- }
+ parsePropertyReference(node, map, currentPath, res, processingRefs)
}
return
case 'property':
+ parsePropertyReference(node, map, currentPath, res, processingRefs)
+ return
case 'reference':
default:
return
}
}
+function parsePropertyReference(
+ node: any,
+ map: Map,
+ currentPath: Array,
+ res: ModuleTypes,
+ processingRefs: Set
+) {
+ const refType = node.type
+ if (refType?.type !== 'reference') {
+ return
+ }
+
+ const referent = map.get(refType.target ?? refType.id)
+ if (!referent) {
+ return
+ }
+
+ if (processingRefs.has(referent.id)) {
+ return
+ }
+
+ const isForwardedNamespace =
+ referent?.variant === 'declaration' &&
+ (referent.kind === KIND_INTERFACE ||
+ referent.kind === KIND_CLASS ||
+ referent.kind === KIND_MODULE)
+
+ if (!isForwardedNamespace) {
+ return
+ }
+
+ const parentPath =
+ currentPath.length > 0 && currentPath[currentPath.length - 1]?.startsWith('@supabase/')
+ ? currentPath
+ : currentPath.slice(0, -1)
+
+ processingRefs.add(referent.id)
+ parseModInternal(referent, map, parentPath, res, processingRefs)
+ processingRefs.delete(referent.id)
+}
+
/**
* Get the name for a node, which may be delegated or missing (placeholders
* are prefaced by two `__` in the type spec). If missing, use the anonymous
@@ -347,7 +444,7 @@ function parseConstructor(
currentPath: Array,
res: ModuleTypes
) {
- const $ref = `${currentPath.join('.')}.constructor`
+ const $ref = buildRefPath([...currentPath, 'constructor'])
const signature = node.signatures[0]
if (!signature) return
@@ -370,7 +467,7 @@ function parseMethod(
currentPath: Array,
res: ModuleTypes
) {
- const $ref = `${currentPath.join('.')}.${node.name}`
+ const $ref = buildRefPath([...currentPath, node.name])
const signature = node.signatures[0]
if (!signature) return
@@ -887,3 +984,72 @@ function parseInternalProperty(elem: any, map: Map, typeArguments?:
return res
}
+
+/**
+ * Formats a type for display in method signatures
+ */
+function formatTypeForSignature(type: TypeDetails | undefined): string {
+ if (!type) return 'any'
+
+ switch (type.type) {
+ case 'intrinsic':
+ return type.name !== TYPESPEC_NODE_ANONYMOUS ? (type.name as string) : 'any'
+ case 'literal':
+ if ('value' in type) {
+ return type.value === null ? 'null' : `"${type.value}"`
+ }
+ return type.name !== TYPESPEC_NODE_ANONYMOUS ? (type.name as string) : 'any'
+ case 'nameOnly':
+ return type.name !== TYPESPEC_NODE_ANONYMOUS ? (type.name as string) : 'any'
+ case 'promise':
+ return `Promise<${formatTypeForSignature(type.awaited)}>`
+ case 'array':
+ return `${formatTypeForSignature(type.elemType)}[]`
+ case 'object':
+ return type.name !== TYPESPEC_NODE_ANONYMOUS ? (type.name as string) : 'object'
+ case 'function':
+ return 'Function'
+ case 'union':
+ if (type.subTypes && type.subTypes.length > 0) {
+ return type.subTypes.map((st) => formatTypeForSignature(st)).join(' | ')
+ }
+ return 'any'
+ case 'record':
+ return `Record<${formatTypeForSignature(type.keyType)}, ${formatTypeForSignature(type.valueType)}>`
+ case 'index signature':
+ return `{ [key: ${formatTypeForSignature(type.keyType)}]: ${formatTypeForSignature(type.valueType)} }`
+ default:
+ return 'any'
+ }
+}
+
+/**
+ * Formats a method signature for display (minimal version)
+ * Example: "signUp(credentials, password)" - shows only method name and param names
+ * Returns empty string for constructors (they're shown in the title already)
+ */
+export function formatMethodSignature(method: MethodTypes): string {
+ let methodName = method.name !== TYPESPEC_NODE_ANONYMOUS ? method.name : 'anonymous'
+
+ // Strip package/class prefix - keep only the method name after the last dot
+ const lastDotIndex = methodName.lastIndexOf('.')
+ if (lastDotIndex !== -1) {
+ methodName = methodName.substring(lastDotIndex + 1)
+ }
+
+ // Hide constructors - they're already shown in the title
+ if (methodName.toLowerCase() === 'constructor') {
+ return ''
+ }
+
+ // Format parameters - only names, no types
+ const params = method.params
+ .map((param) => {
+ const paramName = param.name !== TYPESPEC_NODE_ANONYMOUS ? param.name : 'arg'
+ const optional = param.isOptional ? '?' : ''
+ return `${paramName}${optional}`
+ })
+ .join(', ')
+
+ return `${methodName}(${params})`
+}
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 fe02354048ac5..4428b7093c4fd 100644
--- a/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap
+++ b/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap
@@ -682,11 +682,18 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates an admin API client that can be used to manage users and OAuth clients."
+ "shortText": "Creates an admin API client that can be used to manage users and OAuth clients.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport { GoTrueAdminApi } from '@supabase/auth-js'\\n\\nconst admin = new GoTrueAdminApi({\\n url: 'https://xyzcompany.supabase.co/auth/v1',\\n headers: { Authorization: \`Bearer \${process.env.SUPABASE_SERVICE_ROLE_KEY}\` },\\n})\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/supabase-js.GoTrueAdminApi.mfa.deleteFactor": {
- "name": "@supabase/supabase-js.GoTrueAdminApi.mfa.deleteFactor",
+ "@supabase/supabase-js.GoTrueAdminMFAApi.deleteFactor": {
+ "name": "@supabase/supabase-js.GoTrueAdminMFAApi.deleteFactor",
"params": [
{
"name": "params",
@@ -780,8 +787,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/supabase-js.GoTrueAdminApi.mfa.listFactors": {
- "name": "@supabase/supabase-js.GoTrueAdminApi.mfa.listFactors",
+ "@supabase/supabase-js.GoTrueAdminMFAApi.listFactors": {
+ "name": "@supabase/supabase-js.GoTrueAdminMFAApi.listFactors",
"params": [
{
"name": "params",
@@ -925,8 +932,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Lists all factors associated to a user."
}
},
- "@supabase/supabase-js.GoTrueAdminApi.oauth.createClient": {
- "name": "@supabase/supabase-js.GoTrueAdminApi.oauth.createClient",
+ "@supabase/supabase-js.GoTrueAdminOAuthApi.createClient": {
+ "name": "@supabase/supabase-js.GoTrueAdminOAuthApi.createClient",
"params": [
{
"name": "params",
@@ -1258,8 +1265,8 @@ 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/supabase-js.GoTrueAdminApi.oauth.deleteClient": {
- "name": "@supabase/supabase-js.GoTrueAdminApi.oauth.deleteClient",
+ "@supabase/supabase-js.GoTrueAdminOAuthApi.deleteClient": {
+ "name": "@supabase/supabase-js.GoTrueAdminOAuthApi.deleteClient",
"params": [
{
"name": "clientId",
@@ -1307,8 +1314,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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",
+ "@supabase/supabase-js.GoTrueAdminOAuthApi.getClient": {
+ "name": "@supabase/supabase-js.GoTrueAdminOAuthApi.getClient",
"params": [
{
"name": "clientId",
@@ -1554,8 +1561,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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/supabase-js.GoTrueAdminApi.oauth.listClients": {
- "name": "@supabase/supabase-js.GoTrueAdminApi.oauth.listClients",
+ "@supabase/supabase-js.GoTrueAdminOAuthApi.listClients": {
+ "name": "@supabase/supabase-js.GoTrueAdminOAuthApi.listClients",
"params": [
{
"name": "params",
@@ -1644,8 +1651,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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",
+ "@supabase/supabase-js.GoTrueAdminOAuthApi.regenerateClientSecret": {
+ "name": "@supabase/supabase-js.GoTrueAdminOAuthApi.regenerateClientSecret",
"params": [
{
"name": "clientId",
@@ -1891,8 +1898,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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/supabase-js.GoTrueAdminApi.oauth.updateClient": {
- "name": "@supabase/supabase-js.GoTrueAdminApi.oauth.updateClient",
+ "@supabase/supabase-js.GoTrueAdminOAuthApi.updateClient": {
+ "name": "@supabase/supabase-js.GoTrueAdminOAuthApi.updateClient",
"params": [
{
"name": "clientId",
@@ -6582,11 +6589,18 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Create a new client for use in the browser."
+ "shortText": "Create a new client for use in the browser.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport { GoTrueClient } from '@supabase/auth-js'\\n\\nconst auth = new GoTrueClient({\\n url: 'https://xyzcompany.supabase.co/auth/v1',\\n headers: { apikey: 'public-anon-key' },\\n storageKey: 'supabase-auth',\\n})\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/supabase-js.GoTrueClient.mfa.challenge": {
- "name": "@supabase/supabase-js.GoTrueClient.mfa.challenge",
+ "@supabase/supabase-js.GoTrueMFAApi.challenge": {
+ "name": "@supabase/supabase-js.GoTrueMFAApi.challenge",
"params": [
{
"name": "params",
@@ -7167,8 +7181,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "@supabase/supabase-js.GoTrueClient.mfa.challengeAndVerify": {
- "name": "@supabase/supabase-js.GoTrueClient.mfa.challengeAndVerify",
+ "@supabase/supabase-js.GoTrueMFAApi.challengeAndVerify": {
+ "name": "@supabase/supabase-js.GoTrueMFAApi.challengeAndVerify",
"params": [
{
"name": "params",
@@ -7780,8 +7794,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/supabase-js.GoTrueClient.mfa.enroll": {
- "name": "@supabase/supabase-js.GoTrueClient.mfa.enroll",
+ "@supabase/supabase-js.GoTrueMFAApi.enroll": {
+ "name": "@supabase/supabase-js.GoTrueMFAApi.enroll",
"params": [
{
"name": "params",
@@ -8201,8 +8215,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "@supabase/supabase-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel": {
- "name": "@supabase/supabase-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel",
+ "@supabase/supabase-js.GoTrueMFAApi.getAuthenticatorAssuranceLevel": {
+ "name": "@supabase/supabase-js.GoTrueMFAApi.getAuthenticatorAssuranceLevel",
"params": [],
"ret": {
"type": {
@@ -8356,8 +8370,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/supabase-js.GoTrueClient.mfa.listFactors": {
- "name": "@supabase/supabase-js.GoTrueClient.mfa.listFactors",
+ "@supabase/supabase-js.GoTrueMFAApi.listFactors": {
+ "name": "@supabase/supabase-js.GoTrueMFAApi.listFactors",
"params": [],
"ret": {
"type": {
@@ -8405,8 +8419,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Returns the list of MFA factors enabled for this user."
}
},
- "@supabase/supabase-js.GoTrueClient.mfa.unenroll": {
- "name": "@supabase/supabase-js.GoTrueClient.mfa.unenroll",
+ "@supabase/supabase-js.GoTrueMFAApi.unenroll": {
+ "name": "@supabase/supabase-js.GoTrueMFAApi.unenroll",
"params": [
{
"name": "params",
@@ -8490,8 +8504,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/supabase-js.GoTrueClient.mfa.verify": {
- "name": "@supabase/supabase-js.GoTrueClient.mfa.verify",
+ "@supabase/supabase-js.GoTrueMFAApi.verify": {
+ "name": "@supabase/supabase-js.GoTrueMFAApi.verify",
"params": [
{
"name": "params",
@@ -10948,8 +10962,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "@supabase/supabase-js.GoTrueClient.oauth.approveAuthorization": {
- "name": "@supabase/supabase-js.GoTrueClient.oauth.approveAuthorization",
+ "@supabase/supabase-js.AuthOAuthServerApi.approveAuthorization": {
+ "name": "@supabase/supabase-js.AuthOAuthServerApi.approveAuthorization",
"params": [
{
"name": "authorizationId",
@@ -11044,8 +11058,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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",
+ "@supabase/supabase-js.AuthOAuthServerApi.denyAuthorization": {
+ "name": "@supabase/supabase-js.AuthOAuthServerApi.denyAuthorization",
"params": [
{
"name": "authorizationId",
@@ -11140,8 +11154,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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",
+ "@supabase/supabase-js.AuthOAuthServerApi.getAuthorizationDetails": {
+ "name": "@supabase/supabase-js.AuthOAuthServerApi.getAuthorizationDetails",
"params": [
{
"name": "authorizationId",
@@ -11188,7 +11202,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "object",
"properties": [
{
- "name": "client_id",
+ "name": "id",
"type": {
"type": "intrinsic",
"name": "string"
@@ -11198,33 +11212,33 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
{
- "name": "client_name",
+ "name": "logo_uri",
"type": {
"type": "intrinsic",
"name": "string"
},
"comment": {
- "shortText": "Human-readable name of the OAuth client"
+ "shortText": "URI of the OAuth client's logo"
}
},
{
- "name": "client_uri",
+ "name": "name",
"type": {
"type": "intrinsic",
"name": "string"
},
"comment": {
- "shortText": "URI of the OAuth client's website"
+ "shortText": "Human-readable name of the OAuth client"
}
},
{
- "name": "logo_uri",
+ "name": "uri",
"type": {
"type": "intrinsic",
"name": "string"
},
"comment": {
- "shortText": "URI of the OAuth client's logo"
+ "shortText": "URI of the OAuth client's website"
}
}
]
@@ -11320,6 +11334,211 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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.AuthOAuthServerApi.listGrants": {
+ "name": "@supabase/supabase-js.AuthOAuthServerApi.listGrants",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthOAuthGrantsResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "array",
+ "name": "T",
+ "elemType": {
+ "name": "OAuthGrant",
+ "type": "object",
+ "properties": [
+ {
+ "name": "client",
+ "type": {
+ "name": "OAuthAuthorizationClient",
+ "type": "object",
+ "properties": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the OAuth client (UUID)"
+ }
+ },
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Human-readable name of the OAuth client"
+ }
+ },
+ {
+ "name": "uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URI of the OAuth client's website"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "OAuth client information"
+ }
+ },
+ {
+ "name": "granted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Timestamp when the grant was created (ISO 8601 date-time)"
+ }
+ },
+ {
+ "name": "scopes",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "Array of scopes granted to this client"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Lists all OAuth grants that the authenticated user has authorized.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ },
+ "@supabase/supabase-js.AuthOAuthServerApi.revokeGrant": {
+ "name": "@supabase/supabase-js.AuthOAuthServerApi.revokeGrant",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "clientId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The OAuth client identifier (UUID) to revoke access for"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Revocation options"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthOAuthRevokeGrantResponse",
+ "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": "Revokes a user's OAuth grant for a specific client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nRevocation marks consent as revoked, deletes active sessions for that OAuth client,\\nand invalidates associated refresh tokens."
+ }
+ },
"@supabase/supabase-js.GoTrueClient._refreshSession": {
"name": "@supabase/supabase-js.GoTrueClient._refreshSession",
"params": [
@@ -35319,7 +35538,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": ""
+ "shortText": "",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport PostgrestError from '@supabase/postgrest-js'\\n\\nthrow new PostgrestError({\\n message: 'Row level security prevented the request',\\n details: 'RLS denied the insert',\\n hint: 'Check your policies',\\n code: 'PGRST301',\\n})\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/supabase-js.RealtimeChannel.constructor": {
@@ -35451,144 +35677,936 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a channel that can broadcast messages, sync presence, and listen to Postgres changes.\\n\\nThe topic determines which realtime stream you are subscribing to. Config options let you\\nenable acknowledgement for broadcasts, presence tracking, or private channels."
+ "shortText": "Creates a channel that can broadcast messages, sync presence, and listen to Postgres changes.\\n\\nThe topic determines which realtime stream you are subscribing to. Config options let you\\nenable acknowledgement for broadcasts, presence tracking, or private channels.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport RealtimeClient from '@supabase/realtime-js'\\n\\nconst client = new RealtimeClient('https://xyzcompany.supabase.co/realtime/v1', {\\n params: { apikey: 'public-anon-key' },\\n})\\nconst channel = new RealtimeChannel('realtime:public:messages', { config: {} }, client)\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/supabase-js.RealtimeChannel.httpSend": {
- "name": "@supabase/supabase-js.RealtimeChannel.httpSend",
+ "@supabase/supabase-js.RealtimePresence.constructor": {
+ "name": "@supabase/supabase-js.RealtimePresence.constructor",
"params": [
{
- "name": "event",
+ "name": "channel",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
},
"comment": {
- "shortText": "The name of the broadcast event"
+ "shortText": "The realtime channel to bind to."
}
},
{
- "name": "payload",
+ "name": "opts",
+ "type": {
+ "type": "nameOnly",
+ "name": "PresenceOpts"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional custom event names, e.g. \`{ events: { state: 'state', diff: 'diff' } }\`."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimePresence"
+ }
+ },
+ "comment": {
+ "shortText": "Creates a Presence helper that keeps the local presence state in sync with the server.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nconst presence = new RealtimePresence(channel)\\n\\nchannel.on('presence', ({ event, key }) => {\\n console.log(\`Presence \${event} on \${key}\`)\\n})\\n\`\`\`"
+ }
+ ]
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.constructor": {
+ "name": "@supabase/supabase-js.RealtimeClient.constructor",
+ "params": [
+ {
+ "name": "endPoint",
"type": {
"type": "intrinsic",
- "name": "any"
+ "name": "string"
},
"comment": {
- "shortText": "Payload to be sent (required)"
+ "shortText": "The string WebSocket endpoint, ie, \\"ws://example.com/socket\\", \\"wss://example.com\\", \\"/socket\\" (inherited host & protocol)"
}
},
{
- "name": "opts",
+ "name": "options",
"type": {
+ "name": "RealtimeClientOptions",
"type": "object",
"properties": [
{
- "name": "timeout",
+ "name": "accessToken",
"type": {
- "type": "intrinsic",
- "name": "number"
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ }
},
"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
- }
+ "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
},
{
- "type": "object",
- "properties": [
- {
- "name": "error",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "name": "heartbeatCallback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "status",
+ "type": {
+ "type": "nameOnly",
+ "name": "HeartbeatStatus"
+ }
}
- },
- {
- "name": "status",
+ ],
+ "ret": {
"type": {
"type": "intrinsic",
- "name": "number"
+ "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"
},
- {
- "name": "success",
- "type": {
- "type": "literal",
- "value": false
- }
+ "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": "vsn",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "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": "Sends a broadcast message explicitly via REST API.\\n\\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback."
+ "shortText": "Initializes the Socket.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport RealtimeClient from '@supabase/realtime-js'\\n\\nconst client = new RealtimeClient('https://xyzcompany.supabase.co/realtime/v1', {\\n params: { apikey: 'public-anon-key' },\\n})\\nclient.connect()\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/supabase-js.RealtimeChannel.on": {
- "name": "@supabase/supabase-js.RealtimeChannel.on",
+ "@supabase/supabase-js.RealtimeClient.channel": {
+ "name": "@supabase/supabase-js.RealtimeClient.channel",
"params": [
{
- "name": "type",
+ "name": "topic",
"type": {
- "type": "literal",
- "value": "presence"
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "name": "filter",
+ "name": "params",
"type": {
+ "name": "RealtimeChannelOptions",
"type": "object",
"properties": [
{
- "name": "event",
+ "name": "config",
"type": {
- "type": "literal",
- "value": "sync"
- }
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- }
- }
+ "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"
+ }
+ },
+ "comment": {
+ "shortText": "Creates (or reuses) a RealtimeChannel for the provided topic.\\n\\nTopics are automatically prefixed with \`realtime:\` to match the Realtime service.\\nIf a channel with the same topic already exists it will be returned instead of creating\\na duplicate connection."
+ }
+ },
+ "@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"
+ }
+ },
+ "comment": {
+ "shortText": "Sets a callback that receives lifecycle events for internal heartbeat messages.\\nUseful for instrumenting connection health (e.g. sent/ok/timeout/disconnected)."
+ }
+ },
+ "@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.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": {
@@ -36546,88 +37564,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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"
+ "value": "UPDATE",
+ "name": "UPDATE"
}
}
]
@@ -36647,15 +37585,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "event",
"type": {
"type": "literal",
- "value": "DELETE",
- "name": "DELETE"
+ "value": "UPDATE",
+ "name": "UPDATE"
}
},
{
"name": "payload",
"type": {
"type": "nameOnly",
- "name": "RealtimeBroadcastDeletePayload"
+ "name": "RealtimeBroadcastUpdatePayload"
}
},
{
@@ -36694,928 +37632,257 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "type",
"type": {
"type": "literal",
- "value": "system"
+ "value": "broadcast"
}
},
{
- "name": "filter"
- },
- {
- "name": "callback",
+ "name": "filter",
"type": {
- "type": "function",
- "params": [
+ "type": "object",
+ "properties": [
{
- "name": "payload",
+ "name": "event",
"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"
- }
- }
- }
- },
- "comment": {
- "shortText": "Returns the current presence state for this channel.\\n\\nThe shape is a map keyed by presence key (for example a user id) where each entry contains the\\ntracked metadata for that user."
- }
- },
- "@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"
+ "value": "DELETE",
+ "name": "DELETE"
}
- ]
- },
- "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": {
+ {
+ "name": "callback",
"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"
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Sends the supplied payload to the presence tracker so other subscribers can see that this\\nclient is online. Use \`untrack\` to stop broadcasting presence for the same key."
- }
- },
- "@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"
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Removes the current presence state for this client."
- }
- },
- "@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"
- }
- },
- "comment": {
- "shortText": "Updates the payload that will be sent the next time the channel joins (reconnects).\\nUseful for rotating access tokens or updating config without re-creating the channel."
- }
- },
- "@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": "function",
+ "params": [
+ {
+ "name": "payload",
"type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "subTypes": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
"type": "literal",
- "value": null
+ "value": "DELETE",
+ "name": "DELETE"
}
- ]
- }
- }
- }
- },
- "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": {
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeBroadcastDeletePayload"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
"type": "intrinsic",
- "name": "string"
+ "name": "void"
}
- },
- "isOptional": true
- },
- {
- "name": "heartbeatCallback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "status",
- "type": {
- "type": "nameOnly",
- "name": "HeartbeatStatus"
- }
- }
- ],
- "ret": {
+ }
+ }
+ }
+ ],
+ "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": "void"
+ "name": "any"
}
}
- },
- "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": {
+ ],
+ "ret": {
+ "type": {
"type": "intrinsic",
- "name": "any"
+ "name": "void"
}
- },
- "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": "vsn",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "worker",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "workerUrl",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ }
}
- ]
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
},
- "isOptional": true
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
}
- ],
+ ]
+ },
+ "@supabase/supabase-js.RealtimeChannel.presenceState": {
+ "name": "@supabase/supabase-js.RealtimeChannel.presenceState",
+ "params": [],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "RealtimeClient"
+ "name": "RealtimePresenceState",
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
+ }
}
},
"comment": {
- "shortText": "Initializes the Socket."
+ "shortText": "Returns the current presence state for this channel.\\n\\nThe shape is a map keyed by presence key (for example a user id) where each entry contains the\\ntracked metadata for that user."
}
},
- "@supabase/supabase-js.RealtimeClient.channel": {
- "name": "@supabase/supabase-js.RealtimeClient.channel",
+ "@supabase/supabase-js.RealtimeChannel.send": {
+ "name": "@supabase/supabase-js.RealtimeChannel.send",
"params": [
{
- "name": "topic",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "params",
+ "name": "args",
"type": {
- "name": "RealtimeChannelOptions",
"type": "object",
"properties": [
{
- "name": "config",
+ "name": "event",
"type": {
- "type": "object",
- "properties": [
+ "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": [
{
- "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": "broadcast"
},
{
- "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": "presence"
},
{
- "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": "literal",
+ "value": "postgres_changes"
}
]
+ },
+ "comment": {
+ "shortText": "The type of event to send"
}
}
]
},
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
- },
- "comment": {
- "shortText": "Creates (or reuses) a RealtimeChannel for the provided topic.\\n\\nTopics are automatically prefixed with \`realtime:\` to match the Realtime service.\\nIf a channel with the same topic already exists it will be returned instead of creating\\na duplicate connection."
- }
- },
- "@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."
+ "shortText": "Arguments to send to channel"
}
},
{
- "name": "reason",
+ "name": "opts",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
},
"isOptional": true,
"comment": {
- "shortText": "A custom reason for the disconnect."
+ "shortText": "Options to be used during the send process"
}
}
],
"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"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "RealtimeChannelSendResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
}
- },
- {
- "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."
+ "shortText": "Sends a message into the channel."
}
},
- "@supabase/supabase-js.RealtimeClient.onHeartbeat": {
- "name": "@supabase/supabase-js.RealtimeClient.onHeartbeat",
+ "@supabase/supabase-js.RealtimeChannel.subscribe": {
+ "name": "@supabase/supabase-js.RealtimeChannel.subscribe",
"params": [
{
"name": "callback",
@@ -37626,8 +37893,16 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "status",
"type": {
"type": "nameOnly",
- "name": "HeartbeatStatus"
+ "name": "REALTIME_SUBSCRIBE_STATES"
}
+ },
+ {
+ "name": "err",
+ "type": {
+ "type": "nameOnly",
+ "name": "Error"
+ },
+ "isOptional": true
}
],
"ret": {
@@ -37636,124 +37911,72 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "void"
}
}
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- },
- "comment": {
- "shortText": "Sets a callback that receives lifecycle events for internal heartbeat messages.\\nUseful for instrumenting connection health (e.g. sent/ok/timeout/disconnected)."
- }
- },
- "@supabase/supabase-js.RealtimeClient.push": {
- "name": "@supabase/supabase-js.RealtimeClient.push",
- "params": [
+ },
+ "isOptional": true
+ },
{
- "name": "data",
+ "name": "timeout",
"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"
- }
- }
- ]
- }
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "void"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
},
"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."
+ "shortText": "Subscribe registers your client with the server"
}
},
- "@supabase/supabase-js.RealtimeClient.removeAllChannels": {
- "name": "@supabase/supabase-js.RealtimeClient.removeAllChannels",
+ "@supabase/supabase-js.RealtimeChannel.teardown": {
+ "name": "@supabase/supabase-js.RealtimeChannel.teardown",
"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"
- }
- ]
- }
- }
+ "type": "intrinsic",
+ "name": "void"
}
},
"comment": {
- "shortText": "Unsubscribes and removes all channels"
+ "shortText": "Teardown the channel.\\n\\nDestroys and stops related timers."
}
},
- "@supabase/supabase-js.RealtimeClient.removeChannel": {
- "name": "@supabase/supabase-js.RealtimeClient.removeChannel",
+ "@supabase/supabase-js.RealtimeChannel.track": {
+ "name": "@supabase/supabase-js.RealtimeChannel.track",
"params": [
{
- "name": "channel",
+ "name": "payload",
"type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- },
- "comment": {
- "shortText": "A RealtimeChannel instance"
+ "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": {
@@ -37762,7 +37985,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
- "name": "RealtimeRemoveChannelResponse",
+ "name": "RealtimeChannelSendResponse",
"subTypes": [
{
"type": "literal",
@@ -37781,48 +38004,65 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Unsubscribes and removes a single channel"
+ "shortText": "Sends the supplied payload to the presence tracker so other subscribers can see that this\\nclient is online. Use \`untrack\` to stop broadcasting presence for the same key."
}
},
- "@supabase/supabase-js.RealtimeClient.sendHeartbeat": {
- "name": "@supabase/supabase-js.RealtimeClient.sendHeartbeat",
- "params": [],
+ "@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": "intrinsic",
- "name": "void"
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
}
}
},
"comment": {
- "shortText": "Sends a heartbeat message if the socket is connected."
+ "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.RealtimeClient.setAuth": {
- "name": "@supabase/supabase-js.RealtimeClient.setAuth",
+ "@supabase/supabase-js.RealtimeChannel.untrack": {
+ "name": "@supabase/supabase-js.RealtimeChannel.untrack",
"params": [
{
- "name": "token",
+ "name": "opts",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
},
- "isOptional": true,
- "comment": {
- "shortText": "A JWT string to override the token set on the client."
- }
+ "isOptional": true
}
],
"ret": {
@@ -37830,48 +38070,55 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "promise",
"name": "Promise",
"awaited": {
- "type": "intrinsic",
- "name": "void"
+ "type": "union",
+ "name": "RealtimeChannelSendResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
}
}
},
"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."
+ "shortText": "Removes the current presence state for this client."
}
},
- "@supabase/supabase-js.RealtimePresence.constructor": {
- "name": "@supabase/supabase-js.RealtimePresence.constructor",
+ "@supabase/supabase-js.RealtimeChannel.updateJoinPayload": {
+ "name": "@supabase/supabase-js.RealtimeChannel.updateJoinPayload",
"params": [
{
- "name": "channel",
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- },
- "comment": {
- "shortText": "The realtime channel to bind to."
- }
- },
- {
- "name": "opts",
+ "name": "payload",
"type": {
- "type": "nameOnly",
- "name": "PresenceOpts"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Optional custom event names, e.g. \`{ events: { state: 'state', diff: 'diff' } }\`."
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
}
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "RealtimePresence"
+ "type": "intrinsic",
+ "name": "void"
}
},
"comment": {
- "shortText": "Creates a Presence helper that keeps the local presence state in sync with the server."
+ "shortText": "Updates the payload that will be sent the next time the channel joins (reconnects).\\nUseful for rotating access tokens or updating config without re-creating the channel."
}
},
"@supabase/supabase-js.SupabaseClient.constructor": {
@@ -38315,161 +38562,389 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "isOptional": true,
- "comment": {
- "shortText": "Options passed to the realtime-js instance"
+ "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.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport { createClient } from '@supabase/supabase-js'\\n\\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key')\\nconst { data } = await supabase.from('profiles').select('*')\\n\`\`\`"
+ }
+ ]
+ }
+ },
+ "@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"
}
- },
- {
- "name": "storage",
- "type": {
- "type": "nameOnly",
- "name": "StorageClientOptions"
- },
- "isOptional": true
- }
- ]
+ ]
+ }
+ }
+ }
+ },
+ "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"
},
- "isOptional": true
+ "comment": {
+ "shortText": "The name of the Realtime channel."
+ }
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "SupabaseClient"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Create a new client for use in the browser."
+ "shortText": "Unsubscribes and removes Realtime channel from Realtime client."
}
},
- "@supabase/supabase-js.SupabaseClient.channel": {
- "name": "@supabase/supabase-js.SupabaseClient.channel",
+ "@supabase/supabase-js.SupabaseClient.rpc": {
+ "name": "@supabase/supabase-js.SupabaseClient.rpc",
"params": [
{
- "name": "name",
+ "name": "fn",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "FnName"
},
"comment": {
- "shortText": "The name of the Realtime channel."
+ "shortText": "The function name to call"
}
},
{
- "name": "opts",
+ "name": "args",
+ "type": {
+ "type": "nameOnly",
+ "name": "Args"
+ },
+ "comment": {
+ "shortText": "The arguments to pass to the function call"
+ }
+ },
+ {
+ "name": "options",
"type": {
- "name": "RealtimeChannelOptions",
"type": "object",
"properties": [
{
- "name": "config",
+ "name": "count",
"type": {
- "type": "object",
- "properties": [
+ "type": "union",
+ "subTypes": [
{
- "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": "exact"
},
{
- "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": "planned"
},
{
- "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": "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": "The options to pass to the Realtime channel."
+ "shortText": "Named parameters"
}
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "RealtimeChannel"
+ "name": "@supabase/postgrest-js.default"
}
},
"comment": {
- "shortText": "Creates a Realtime channel with Broadcast, Presence, and Postgres Changes."
+ "shortText": "Perform a function call."
}
},
- "@supabase/supabase-js.SupabaseClient.from": {
- "name": "@supabase/supabase-js.SupabaseClient.from",
+ "@supabase/supabase-js.SupabaseClient.schema": {
+ "name": "@supabase/supabase-js.SupabaseClient.schema",
"params": [
{
- "name": "relation",
+ "name": "schema",
"type": {
"type": "nameOnly",
- "name": "TableName"
+ "name": "DynamicSchema"
+ },
+ "comment": {
+ "shortText": "The schema to query"
}
}
],
@@ -38479,236 +38954,524 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "@supabase/postgrest-js.default"
}
},
- "altSignatures": [
+ "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.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"
+ }
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "Creates a WebSocket using the detected constructor.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nconst socket = WebSocketFactory.createWebSocket('wss://realtime.supabase.co/socket')\\n\`\`\`"
+ }
+ ]
+ }
+ },
+ "@supabase/supabase-js.WebSocketFactory.getWebSocketConstructor": {
+ "name": "@supabase/supabase-js.WebSocketFactory.getWebSocketConstructor",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "function",
"params": [
{
- "name": "relation",
+ "name": "url",
"type": {
- "type": "nameOnly",
- "name": "ViewName"
+ "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": "@supabase/postgrest-js.default"
+ "name": "WebSocket"
}
}
}
- ]
- },
- "@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."
+ "shortText": "Returns the best available WebSocket constructor for the current runtime.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nconst WS = WebSocketFactory.getWebSocketConstructor()\\nconst socket = new WS('wss://realtime.supabase.co/socket')\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/supabase-js.SupabaseClient.removeAllChannels": {
- "name": "@supabase/supabase-js.SupabaseClient.removeAllChannels",
+ "@supabase/supabase-js.WebSocketFactory.isWebSocketSupported": {
+ "name": "@supabase/supabase-js.WebSocketFactory.isWebSocketSupported",
"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": "intrinsic",
+ "name": "boolean"
}
},
"comment": {
- "shortText": "Unsubscribes and removes all Realtime channels from Realtime client."
+ "shortText": "Detects whether the runtime can establish WebSocket connections.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nif (!WebSocketFactory.isWebSocketSupported()) {\\n console.warn('Falling back to long polling')\\n}\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/supabase-js.SupabaseClient.removeChannel": {
- "name": "@supabase/supabase-js.SupabaseClient.removeChannel",
+ "@supabase/supabase-js.WebSocketLike.addEventListener": {
+ "name": "@supabase/supabase-js.WebSocketLike.addEventListener",
"params": [
{
- "name": "channel",
+ "name": "type",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "listener",
"type": {
"type": "nameOnly",
- "name": "RealtimeChannel"
- },
- "comment": {
- "shortText": "The name of the Realtime channel."
+ "name": "EventListener"
}
}
],
"ret": {
"type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "error"
- },
- {
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
- }
- ]
- }
+ "type": "intrinsic",
+ "name": "void"
}
},
"comment": {
- "shortText": "Unsubscribes and removes Realtime channel from Realtime client."
+ "shortText": "Registers an event listener on the socket (compatible with browser WebSocket API)."
}
},
- "@supabase/supabase-js.SupabaseClient.rpc": {
- "name": "@supabase/supabase-js.SupabaseClient.rpc",
+ "@supabase/supabase-js.WebSocketLike.close": {
+ "name": "@supabase/supabase-js.WebSocketLike.close",
"params": [
{
- "name": "fn",
+ "name": "code",
"type": {
- "type": "nameOnly",
- "name": "FnName"
+ "type": "intrinsic",
+ "name": "number"
},
- "comment": {
- "shortText": "The function name to call"
- }
+ "isOptional": true
},
{
- "name": "args",
+ "name": "reason",
"type": {
- "type": "nameOnly",
- "name": "Args"
+ "type": "intrinsic",
+ "name": "string"
},
- "comment": {
- "shortText": "The arguments to pass to the function call"
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Closes the socket, optionally providing a close code and reason."
+ }
+ },
+ "@supabase/supabase-js.WebSocketLike.removeEventListener": {
+ "name": "@supabase/supabase-js.WebSocketLike.removeEventListener",
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "name": "options",
+ "name": "listener",
"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"
+ "type": "nameOnly",
+ "name": "EventListener"
}
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "@supabase/postgrest-js.default"
+ "type": "intrinsic",
+ "name": "void"
}
},
"comment": {
- "shortText": "Perform a function call."
+ "shortText": "Removes a previously registered event listener."
}
},
- "@supabase/supabase-js.SupabaseClient.schema": {
- "name": "@supabase/supabase-js.SupabaseClient.schema",
+ "@supabase/supabase-js.WebSocketLike.send": {
+ "name": "@supabase/supabase-js.WebSocketLike.send",
"params": [
{
- "name": "schema",
+ "name": "data",
"type": {
- "type": "nameOnly",
- "name": "DynamicSchema"
- },
- "comment": {
- "shortText": "The schema to query"
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "nameOnly",
+ "name": "ArrayBufferLike"
+ },
+ {
+ "type": "nameOnly",
+ "name": "ArrayBufferView"
+ },
+ {
+ "type": "nameOnly",
+ "name": "Blob"
+ }
+ ]
}
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "@supabase/postgrest-js.default"
+ "type": "intrinsic",
+ "name": "void"
}
},
"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": "Sends data through the socket using the underlying implementation."
}
},
- "@supabase/supabase-js.WebSocketFactory.createWebSocket": {
- "name": "@supabase/supabase-js.WebSocketFactory.createWebSocket",
+ "@supabase/supabase-js.WebSocketLikeConstructor.constructor": {
+ "name": "@supabase/supabase-js.WebSocketLikeConstructor.constructor",
"params": [
{
- "name": "url",
+ "name": "address",
"type": {
"type": "union",
"subTypes": [
@@ -38724,7 +39487,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
{
- "name": "protocols",
+ "name": "subprotocols",
"type": {
"type": "union",
"subTypes": [
@@ -38994,78 +39757,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
}
- },
- "comment": {
- "shortText": "Creates a WebSocket using the detected constructor."
- }
- },
- "@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"
- }
- }
- }
- },
- "comment": {
- "shortText": "Returns the best available WebSocket constructor for the current runtime."
- }
- },
- "@supabase/supabase-js.WebSocketFactory.isWebSocketSupported": {
- "name": "@supabase/supabase-js.WebSocketFactory.isWebSocketSupported",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- "comment": {
- "shortText": "Detects whether the runtime can establish WebSocket connections."
}
}
}
@@ -39660,11 +40351,18 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates an admin API client that can be used to manage users and OAuth clients."
+ "shortText": "Creates an admin API client that can be used to manage users and OAuth clients.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport { GoTrueAdminApi } from '@supabase/auth-js'\\n\\nconst admin = new GoTrueAdminApi({\\n url: 'https://xyzcompany.supabase.co/auth/v1',\\n headers: { Authorization: \`Bearer \${process.env.SUPABASE_SERVICE_ROLE_KEY}\` },\\n})\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/auth-js.GoTrueAdminApi.mfa.deleteFactor": {
- "name": "@supabase/auth-js.GoTrueAdminApi.mfa.deleteFactor",
+ "@supabase/auth-js.GoTrueAdminMFAApi.deleteFactor": {
+ "name": "@supabase/auth-js.GoTrueAdminMFAApi.deleteFactor",
"params": [
{
"name": "params",
@@ -39758,8 +40456,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/auth-js.GoTrueAdminMFAApi.listFactors": {
+ "name": "@supabase/auth-js.GoTrueAdminMFAApi.listFactors",
"params": [
{
"name": "params",
@@ -39903,8 +40601,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/auth-js.GoTrueAdminOAuthApi.createClient": {
+ "name": "@supabase/auth-js.GoTrueAdminOAuthApi.createClient",
"params": [
{
"name": "params",
@@ -40236,8 +40934,8 @@ 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/auth-js.GoTrueAdminOAuthApi.deleteClient": {
+ "name": "@supabase/auth-js.GoTrueAdminOAuthApi.deleteClient",
"params": [
{
"name": "clientId",
@@ -40285,8 +40983,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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",
+ "@supabase/auth-js.GoTrueAdminOAuthApi.getClient": {
+ "name": "@supabase/auth-js.GoTrueAdminOAuthApi.getClient",
"params": [
{
"name": "clientId",
@@ -40532,8 +41230,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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",
+ "@supabase/auth-js.GoTrueAdminOAuthApi.listClients": {
+ "name": "@supabase/auth-js.GoTrueAdminOAuthApi.listClients",
"params": [
{
"name": "params",
@@ -40622,8 +41320,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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",
+ "@supabase/auth-js.GoTrueAdminOAuthApi.regenerateClientSecret": {
+ "name": "@supabase/auth-js.GoTrueAdminOAuthApi.regenerateClientSecret",
"params": [
{
"name": "clientId",
@@ -40869,8 +41567,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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",
+ "@supabase/auth-js.GoTrueAdminOAuthApi.updateClient": {
+ "name": "@supabase/auth-js.GoTrueAdminOAuthApi.updateClient",
"params": [
{
"name": "clientId",
@@ -45557,11 +46255,18 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Create a new client for use in the browser."
+ "shortText": "Create a new client for use in the browser.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport { GoTrueClient } from '@supabase/auth-js'\\n\\nconst auth = new GoTrueClient({\\n url: 'https://xyzcompany.supabase.co/auth/v1',\\n headers: { apikey: 'public-anon-key' },\\n storageKey: 'supabase-auth',\\n})\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/auth-js.GoTrueClient.mfa.challenge": {
- "name": "@supabase/auth-js.GoTrueClient.mfa.challenge",
+ "@supabase/auth-js.GoTrueMFAApi.challenge": {
+ "name": "@supabase/auth-js.GoTrueMFAApi.challenge",
"params": [
{
"name": "params",
@@ -46142,8 +46847,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "@supabase/auth-js.GoTrueClient.mfa.challengeAndVerify": {
- "name": "@supabase/auth-js.GoTrueClient.mfa.challengeAndVerify",
+ "@supabase/auth-js.GoTrueMFAApi.challengeAndVerify": {
+ "name": "@supabase/auth-js.GoTrueMFAApi.challengeAndVerify",
"params": [
{
"name": "params",
@@ -46755,8 +47460,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/auth-js.GoTrueMFAApi.enroll": {
+ "name": "@supabase/auth-js.GoTrueMFAApi.enroll",
"params": [
{
"name": "params",
@@ -47176,8 +47881,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "@supabase/auth-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel": {
- "name": "@supabase/auth-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel",
+ "@supabase/auth-js.GoTrueMFAApi.getAuthenticatorAssuranceLevel": {
+ "name": "@supabase/auth-js.GoTrueMFAApi.getAuthenticatorAssuranceLevel",
"params": [],
"ret": {
"type": {
@@ -47331,8 +48036,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/auth-js.GoTrueMFAApi.listFactors": {
+ "name": "@supabase/auth-js.GoTrueMFAApi.listFactors",
"params": [],
"ret": {
"type": {
@@ -47380,8 +48085,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/auth-js.GoTrueMFAApi.unenroll": {
+ "name": "@supabase/auth-js.GoTrueMFAApi.unenroll",
"params": [
{
"name": "params",
@@ -47465,8 +48170,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/auth-js.GoTrueMFAApi.verify": {
+ "name": "@supabase/auth-js.GoTrueMFAApi.verify",
"params": [
{
"name": "params",
@@ -49923,8 +50628,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "@supabase/auth-js.GoTrueClient.oauth.approveAuthorization": {
- "name": "@supabase/auth-js.GoTrueClient.oauth.approveAuthorization",
+ "@supabase/auth-js.AuthOAuthServerApi.approveAuthorization": {
+ "name": "@supabase/auth-js.AuthOAuthServerApi.approveAuthorization",
"params": [
{
"name": "authorizationId",
@@ -50019,8 +50724,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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",
+ "@supabase/auth-js.AuthOAuthServerApi.denyAuthorization": {
+ "name": "@supabase/auth-js.AuthOAuthServerApi.denyAuthorization",
"params": [
{
"name": "authorizationId",
@@ -50112,30 +50817,199 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Denies an OAuth authorization request.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ "shortText": "Denies an OAuth authorization request.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ },
+ "@supabase/auth-js.AuthOAuthServerApi.getAuthorizationDetails": {
+ "name": "@supabase/auth-js.AuthOAuthServerApi.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": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the OAuth client (UUID)"
+ }
+ },
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Human-readable name of the OAuth client"
+ }
+ },
+ {
+ "name": "uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URI of the OAuth client's website"
+ }
+ }
+ ]
+ },
+ "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.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"
- }
- }
- ],
+ "@supabase/auth-js.AuthOAuthServerApi.listGrants": {
+ "name": "@supabase/auth-js.AuthOAuthServerApi.listGrants",
+ "params": [],
"ret": {
"type": {
"type": "promise",
"name": "Promise",
"awaited": {
"type": "union",
- "name": "AuthOAuthAuthorizationDetailsResponse",
+ "name": "AuthOAuthGrantsResponse",
"subTypes": [
{
"type": "object",
@@ -50143,124 +51017,89 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
{
"name": "data",
"type": {
+ "type": "array",
"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"
+ "elemType": {
+ "name": "OAuthGrant",
+ "type": "object",
+ "properties": [
+ {
+ "name": "client",
+ "type": {
+ "name": "OAuthAuthorizationClient",
+ "type": "object",
+ "properties": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the OAuth client (UUID)"
+ }
},
- "comment": {
- "shortText": "Human-readable name of the OAuth client"
- }
- },
- {
- "name": "client_uri",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
},
- "comment": {
- "shortText": "URI of the OAuth client's website"
- }
- },
- {
- "name": "logo_uri",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Human-readable name of the OAuth client"
+ }
},
- "comment": {
- "shortText": "URI of the OAuth client's logo"
+ {
+ "name": "uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URI of the OAuth client's website"
+ }
}
- }
- ]
- },
- "comment": {
- "shortText": "OAuth client requesting authorization"
- }
- },
- {
- "name": "redirect_uri",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ ]
+ },
+ "comment": {
+ "shortText": "OAuth client information"
+ }
},
- "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"
+ {
+ "name": "granted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Timestamp when the grant was created (ISO 8601 date-time)"
+ }
},
- "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)"
- }
+ {
+ "name": "scopes",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- },
- "comment": {
- "shortText": "User object associated with the authorization"
+ },
+ "comment": {
+ "shortText": "Array of scopes granted to this client"
+ }
}
- }
- ]
+ ]
+ }
}
},
{
@@ -50292,7 +51131,78 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"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."
+ "shortText": "Lists all OAuth grants that the authenticated user has authorized.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ },
+ "@supabase/auth-js.AuthOAuthServerApi.revokeGrant": {
+ "name": "@supabase/auth-js.AuthOAuthServerApi.revokeGrant",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "clientId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The OAuth client identifier (UUID) to revoke access for"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Revocation options"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthOAuthRevokeGrantResponse",
+ "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": "Revokes a user's OAuth grant for a specific client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nRevocation marks consent as revoked, deletes active sessions for that OAuth client,\\nand invalidates associated refresh tokens."
}
},
"@supabase/auth-js.GoTrueClient.exchangeCodeForSession": {
@@ -71336,7 +72246,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a builder configured for a specific PostgREST request."
+ "shortText": "Creates a builder configured for a specific PostgREST request.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport PostgrestQueryBuilder from '@supabase/postgrest-js'\\n\\nconst builder = new PostgrestQueryBuilder(\\n new URL('https://xyzcompany.supabase.co/rest/v1/users'),\\n { headers: new Headers({ apikey: 'public-anon-key' }) }\\n)\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/postgrest-js.PostgrestBuilder.overrideTypes": {
@@ -71349,7 +72266,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Override the type of the returned \`data\` field in the response."
+ "shortText": "Override the type of the returned \`data\` field in the response.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\n// Merge with existing types (default behavior)\\nconst query = supabase\\n .from('users')\\n .select()\\n .overrideTypes<{ custom_field: string }>()\\n\\n// Replace existing types completely\\nconst replaceQuery = supabase\\n .from('users')\\n .select()\\n .overrideTypes<{ id: number; name: string }, { merge: false }>()\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/postgrest-js.PostgrestBuilder.returns": {
@@ -71599,7 +72523,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a PostgREST client."
+ "shortText": "Creates a PostgREST client.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport PostgrestClient from '@supabase/postgrest-js'\\n\\nconst postgrest = new PostgrestClient('https://xyzcompany.supabase.co/rest/v1', {\\n headers: { apikey: 'public-anon-key' },\\n schema: 'public',\\n})\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/postgrest-js.PostgrestClient.from": {
@@ -71801,7 +72732,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": ""
+ "shortText": "",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport PostgrestError from '@supabase/postgrest-js'\\n\\nthrow new PostgrestError({\\n message: 'Row level security prevented the request',\\n details: 'RLS denied the insert',\\n hint: 'Check your policies',\\n code: 'PGRST301',\\n})\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/postgrest-js.PostgrestFilterBuilder.constructor": {
@@ -71951,7 +72889,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a builder configured for a specific PostgREST request."
+ "shortText": "Creates a builder configured for a specific PostgREST request.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport PostgrestQueryBuilder from '@supabase/postgrest-js'\\n\\nconst builder = new PostgrestQueryBuilder(\\n new URL('https://xyzcompany.supabase.co/rest/v1/users'),\\n { headers: new Headers({ apikey: 'public-anon-key' }) }\\n)\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/postgrest-js.PostgrestFilterBuilder.abortSignal": {
@@ -73709,7 +74654,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Override the type of the returned \`data\` field in the response."
+ "shortText": "Override the type of the returned \`data\` field in the response.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\n// Merge with existing types (default behavior)\\nconst query = supabase\\n .from('users')\\n .select()\\n .overrideTypes<{ custom_field: string }>()\\n\\n// Replace existing types completely\\nconst replaceQuery = supabase\\n .from('users')\\n .select()\\n .overrideTypes<{ id: number; name: string }, { merge: false }>()\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/postgrest-js.PostgrestFilterBuilder.range": {
@@ -74540,7 +75492,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a query builder scoped to a Postgres table or view."
+ "shortText": "Creates a query builder scoped to a Postgres table or view.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport PostgrestQueryBuilder from '@supabase/postgrest-js'\\n\\nconst query = new PostgrestQueryBuilder(\\n new URL('https://xyzcompany.supabase.co/rest/v1/users'),\\n { headers: { apikey: 'public-anon-key' } }\\n)\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/postgrest-js.PostgrestQueryBuilder.delete": {
@@ -75118,7 +76077,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a builder configured for a specific PostgREST request."
+ "shortText": "Creates a builder configured for a specific PostgREST request.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport PostgrestQueryBuilder from '@supabase/postgrest-js'\\n\\nconst builder = new PostgrestQueryBuilder(\\n new URL('https://xyzcompany.supabase.co/rest/v1/users'),\\n { headers: new Headers({ apikey: 'public-anon-key' }) }\\n)\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/postgrest-js.PostgrestTransformBuilder.abortSignal": {
@@ -75587,7 +76553,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Override the type of the returned \`data\` field in the response."
+ "shortText": "Override the type of the returned \`data\` field in the response.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\n// Merge with existing types (default behavior)\\nconst query = supabase\\n .from('users')\\n .select()\\n .overrideTypes<{ custom_field: string }>()\\n\\n// Replace existing types completely\\nconst replaceQuery = supabase\\n .from('users')\\n .select()\\n .overrideTypes<{ id: number; name: string }, { merge: false }>()\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/postgrest-js.PostgrestTransformBuilder.range": {
@@ -75894,77 +76867,471 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "union",
"subTypes": [
{
- "type": "literal",
- "value": null
+ "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.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": [
+ {
+ "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"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "socket",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeClient"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates a channel that can broadcast messages, sync presence, and listen to Postgres changes.\\n\\nThe topic determines which realtime stream you are subscribing to. Config options let you\\nenable acknowledgement for broadcasts, presence tracking, or private channels.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport RealtimeClient from '@supabase/realtime-js'\\n\\nconst client = new RealtimeClient('https://xyzcompany.supabase.co/realtime/v1', {\\n params: { apikey: 'public-anon-key' },\\n})\\nconst channel = new RealtimeChannel('realtime:public:messages', { config: {} }, client)\\n\`\`\`"
+ }
+ ]
+ }
+ },
+ "@supabase/realtime-js.RealtimePresence.constructor": {
+ "name": "@supabase/realtime-js.RealtimePresence.constructor",
+ "params": [
+ {
+ "name": "channel",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ },
+ "comment": {
+ "shortText": "The realtime channel to bind to."
+ }
+ },
+ {
+ "name": "opts",
+ "type": {
+ "type": "nameOnly",
+ "name": "PresenceOpts"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional custom event names, e.g. \`{ events: { state: 'state', diff: 'diff' } }\`."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimePresence"
+ }
+ },
+ "comment": {
+ "shortText": "Creates a Presence helper that keeps the local presence state in sync with the server.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nconst presence = new RealtimePresence(channel)\\n\\nchannel.on('presence', ({ event, key }) => {\\n console.log(\`Presence \${event} on \${key}\`)\\n})\\n\`\`\`"
+ }
+ ]
+ }
+ },
+ "@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": {
+ "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
},
{
- "type": "function",
- "params": [
- {
- "name": "reason",
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "TResult2"
- },
- {
- "type": "nameOnly",
- "name": "PromiseLike"
- }
- ]
- }
- }
+ "name": "timeout",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "transport",
+ "type": {
+ "type": "object",
+ "name": "WebSocketLikeConstructor",
+ "properties": []
+ },
+ "isOptional": true
+ },
+ {
+ "name": "vsn",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "worker",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "workerUrl",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
}
]
},
- "isOptional": true,
- "comment": {
- "shortText": "The callback to execute when the Promise is rejected."
- }
+ "isOptional": true
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PromiseLike"
+ "name": "RealtimeClient"
}
},
"comment": {
- "shortText": "Attaches callbacks for the resolution and/or rejection of the Promise."
+ "shortText": "Initializes the Socket.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport RealtimeClient from '@supabase/realtime-js'\\n\\nconst client = new RealtimeClient('https://xyzcompany.supabase.co/realtime/v1', {\\n params: { apikey: 'public-anon-key' },\\n})\\nclient.connect()\\n\`\`\`"
+ }
+ ]
}
},
- "@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/realtime-js.RealtimeClient.channel": {
+ "name": "@supabase/realtime-js.RealtimeClient.channel",
"params": [
{
"name": "topic",
"type": {
"type": "intrinsic",
"name": "string"
- },
- "comment": {
- "shortText": "Topic name can be any string."
}
},
{
@@ -76058,23 +77425,419 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
}
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates (or reuses) a RealtimeChannel for the provided topic.\\n\\nTopics are automatically prefixed with \`realtime:\` to match the Realtime service.\\nIf a channel with the same topic already exists it will be returned instead of creating\\na duplicate connection."
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.connect": {
+ "name": "@supabase/realtime-js.RealtimeClient.connect",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Connects the socket, unless already connected."
+ }
+ },
+ "@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": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A numeric status code to send on disconnect."
+ }
},
{
- "name": "socket",
+ "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/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": "RealtimeClient"
+ "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": "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": "nameOnly",
- "name": "RealtimeChannel"
+ "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",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "status",
+ "type": {
+ "type": "nameOnly",
+ "name": "HeartbeatStatus"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Sets a callback that receives lifecycle events for internal heartbeat messages.\\nUseful for instrumenting connection health (e.g. sent/ok/timeout/disconnected)."
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.push": {
+ "name": "@supabase/realtime-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/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"
+ }
+ }
+ ],
+ "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/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": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "intrinsic",
+ "name": "void"
+ }
}
},
"comment": {
- "shortText": "Creates a channel that can broadcast messages, sync presence, and listen to Postgres changes.\\n\\nThe topic determines which realtime stream you are subscribing to. Config options let you\\nenable acknowledgement for broadcasts, presence tracking, or private channels."
+ "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.RealtimeChannel.httpSend": {
@@ -77577,558 +79340,139 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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"
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Sends the supplied payload to the presence tracker so other subscribers can see that this\\nclient is online. Use \`untrack\` to stop broadcasting presence for the same key."
- }
- },
- "@supabase/realtime-js.RealtimeChannel.unsubscribe": {
- "name": "@supabase/realtime-js.RealtimeChannel.unsubscribe",
- "params": [
- {
- "name": "timeout",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- }
- ],
- "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/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"
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Removes the current presence state for this client."
- }
- },
- "@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"
- }
- },
- "comment": {
- "shortText": "Updates the payload that will be sent the next time the channel joins (reconnects).\\nUseful for rotating access tokens or updating config without re-creating the channel."
- }
- },
- "@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": {
- "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": "vsn",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "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/realtime-js.RealtimeClient.channel": {
- "name": "@supabase/realtime-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"
- }
- }
- ]
- }
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
- },
- "comment": {
- "shortText": "Creates (or reuses) a RealtimeChannel for the provided topic.\\n\\nTopics are automatically prefixed with \`realtime:\` to match the Realtime service.\\nIf a channel with the same topic already exists it will be returned instead of creating\\na duplicate connection."
- }
- },
- "@supabase/realtime-js.RealtimeClient.connect": {
- "name": "@supabase/realtime-js.RealtimeClient.connect",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
+ }
}
- },
- "comment": {
- "shortText": "Connects the socket, unless already connected."
- }
- },
- "@supabase/realtime-js.RealtimeClient.connectionState": {
- "name": "@supabase/realtime-js.RealtimeClient.connectionState",
- "params": [],
+ ],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "CONNECTION_STATE"
+ "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": "Returns the current state of the socket."
+ "shortText": "Sends the supplied payload to the presence tracker so other subscribers can see that this\\nclient is online. Use \`untrack\` to stop broadcasting presence for the same key."
}
},
- "@supabase/realtime-js.RealtimeClient.disconnect": {
- "name": "@supabase/realtime-js.RealtimeClient.disconnect",
+ "@supabase/realtime-js.RealtimeChannel.unsubscribe": {
+ "name": "@supabase/realtime-js.RealtimeChannel.unsubscribe",
"params": [
{
- "name": "code",
+ "name": "timeout",
"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"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Disconnects the socket."
+ "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/realtime-js.RealtimeClient.endpointURL": {
- "name": "@supabase/realtime-js.RealtimeClient.endpointURL",
- "params": [],
+ "@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": "intrinsic",
- "name": "string"
+ "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": "Returns the URL of the websocket."
+ "shortText": "Removes the current presence state for this client."
}
},
- "@supabase/realtime-js.RealtimeClient.flushSendBuffer": {
- "name": "@supabase/realtime-js.RealtimeClient.flushSendBuffer",
- "params": [],
+ "@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",
@@ -78136,53 +79480,376 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Flushes send buffer"
+ "shortText": "Updates the payload that will be sent the next time the channel joins (reconnects).\\nUseful for rotating access tokens or updating config without re-creating the channel."
}
},
- "@supabase/realtime-js.RealtimeClient.getChannels": {
- "name": "@supabase/realtime-js.RealtimeClient.getChannels",
- "params": [],
- "ret": {
- "type": {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
+ "@supabase/realtime-js.WebSocketFactory.createWebSocket": {
+ "name": "@supabase/realtime-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
}
- },
- "comment": {
- "shortText": "Returns all created channels"
- }
- },
- "@supabase/realtime-js.RealtimeClient.isConnected": {
- "name": "@supabase/realtime-js.RealtimeClient.isConnected",
- "params": [],
+ ],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "boolean"
+ "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"
+ }
+ }
+ ]
}
},
"comment": {
- "shortText": "Returns \`true\` is the connection is open."
+ "shortText": "Creates a WebSocket using the detected constructor.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nconst socket = WebSocketFactory.createWebSocket('wss://realtime.supabase.co/socket')\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/realtime-js.RealtimeClient.isConnecting": {
- "name": "@supabase/realtime-js.RealtimeClient.isConnecting",
+ "@supabase/realtime-js.WebSocketFactory.getWebSocketConstructor": {
+ "name": "@supabase/realtime-js.WebSocketFactory.getWebSocketConstructor",
"params": [],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "boolean"
+ "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"
+ }
+ }
}
},
"comment": {
- "shortText": "Returns \`true\` if the connection is currently connecting."
+ "shortText": "Returns the best available WebSocket constructor for the current runtime.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nconst WS = WebSocketFactory.getWebSocketConstructor()\\nconst socket = new WS('wss://realtime.supabase.co/socket')\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/realtime-js.RealtimeClient.isDisconnecting": {
- "name": "@supabase/realtime-js.RealtimeClient.isDisconnecting",
+ "@supabase/realtime-js.WebSocketFactory.isWebSocketSupported": {
+ "name": "@supabase/realtime-js.WebSocketFactory.isWebSocketSupported",
"params": [],
"ret": {
"type": {
@@ -78191,33 +79858,32 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Returns \`true\` if the connection is currently disconnecting."
+ "shortText": "Detects whether the runtime can establish WebSocket connections.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nif (!WebSocketFactory.isWebSocketSupported()) {\\n console.warn('Falling back to long polling')\\n}\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/realtime-js.RealtimeClient.log": {
- "name": "@supabase/realtime-js.RealtimeClient.log",
+ "@supabase/realtime-js.WebSocketLike.addEventListener": {
+ "name": "@supabase/realtime-js.WebSocketLike.addEventListener",
"params": [
{
- "name": "kind",
+ "name": "type",
"type": {
"type": "intrinsic",
"name": "string"
}
},
{
- "name": "msg",
+ "name": "listener",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "EventListener"
}
- },
- {
- "name": "data",
- "type": {
- "type": "intrinsic",
- "name": "any"
- },
- "isOptional": true
}
],
"ret": {
@@ -78227,32 +79893,27 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Logs the message.\\n\\nFor customized logging, \`this.logger\` can be overridden."
+ "shortText": "Registers an event listener on the socket (compatible with browser WebSocket API)."
}
},
- "@supabase/realtime-js.RealtimeClient.onHeartbeat": {
- "name": "@supabase/realtime-js.RealtimeClient.onHeartbeat",
+ "@supabase/realtime-js.WebSocketLike.close": {
+ "name": "@supabase/realtime-js.WebSocketLike.close",
"params": [
{
- "name": "callback",
+ "name": "code",
"type": {
- "type": "function",
- "params": [
- {
- "name": "status",
- "type": {
- "type": "nameOnly",
- "name": "HeartbeatStatus"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- }
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "reason",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
}
],
"ret": {
@@ -78262,55 +79923,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Sets a callback that receives lifecycle events for internal heartbeat messages.\\nUseful for instrumenting connection health (e.g. sent/ok/timeout/disconnected)."
+ "shortText": "Closes the socket, optionally providing a close code and reason."
}
},
- "@supabase/realtime-js.RealtimeClient.push": {
- "name": "@supabase/realtime-js.RealtimeClient.push",
+ "@supabase/realtime-js.WebSocketLike.removeEventListener": {
+ "name": "@supabase/realtime-js.WebSocketLike.removeEventListener",
"params": [
{
- "name": "data",
+ "name": "type",
"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"
- }
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "listener",
+ "type": {
+ "type": "nameOnly",
+ "name": "EventListener"
}
}
],
@@ -78321,179 +79951,52 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"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"
+ "shortText": "Removes a previously registered event listener."
}
},
- "@supabase/realtime-js.RealtimeClient.removeChannel": {
- "name": "@supabase/realtime-js.RealtimeClient.removeChannel",
+ "@supabase/realtime-js.WebSocketLike.send": {
+ "name": "@supabase/realtime-js.WebSocketLike.send",
"params": [
{
- "name": "channel",
+ "name": "data",
"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": "intrinsic",
+ "name": "string"
},
{
- "type": "literal",
- "value": "timed out"
+ "type": "nameOnly",
+ "name": "ArrayBufferLike"
},
{
- "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": "nameOnly",
+ "name": "Blob"
},
{
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "ArrayBufferView"
}
]
- },
- "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/realtime-js.RealtimePresence.constructor": {
- "name": "@supabase/realtime-js.RealtimePresence.constructor",
- "params": [
- {
- "name": "channel",
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- },
- "comment": {
- "shortText": "The realtime channel to bind to."
- }
- },
- {
- "name": "opts",
- "type": {
- "type": "nameOnly",
- "name": "PresenceOpts"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Optional custom event names, e.g. \`{ events: { state: 'state', diff: 'diff' } }\`."
}
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "RealtimePresence"
+ "type": "intrinsic",
+ "name": "void"
}
},
"comment": {
- "shortText": "Creates a Presence helper that keeps the local presence state in sync with the server."
+ "shortText": "Sends data through the socket using the underlying implementation."
}
},
- "@supabase/realtime-js.WebSocketFactory.createWebSocket": {
- "name": "@supabase/realtime-js.WebSocketFactory.createWebSocket",
+ "@supabase/realtime-js.WebSocketLikeConstructor.constructor": {
+ "name": "@supabase/realtime-js.WebSocketLikeConstructor.constructor",
"params": [
{
- "name": "url",
+ "name": "address",
"type": {
"type": "union",
"subTypes": [
@@ -78509,7 +80012,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
{
- "name": "protocols",
+ "name": "subprotocols",
"type": {
"type": "union",
"subTypes": [
@@ -78779,78 +80282,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
}
- },
- "comment": {
- "shortText": "Creates a WebSocket using the detected constructor."
- }
- },
- "@supabase/realtime-js.WebSocketFactory.getWebSocketConstructor": {
- "name": "@supabase/realtime-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"
- }
- }
- }
- },
- "comment": {
- "shortText": "Returns the best available WebSocket constructor for the current runtime."
- }
- },
- "@supabase/realtime-js.WebSocketFactory.isWebSocketSupported": {
- "name": "@supabase/realtime-js.WebSocketFactory.isWebSocketSupported",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- "comment": {
- "shortText": "Detects whether the runtime can establish WebSocket connections."
}
}
}
@@ -78858,8 +80289,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
{
"name": "@supabase/storage-js",
"methods": {
- "@supabase/storage-js.index.StorageApiError.constructor": {
- "name": "@supabase/storage-js.index.StorageApiError.constructor",
+ "@supabase/storage-js.StorageApiError.constructor": {
+ "name": "@supabase/storage-js.StorageApiError.constructor",
"params": [
{
"name": "message",
@@ -78890,8 +80321,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/storage-js.index.StorageApiError.toJSON": {
- "name": "@supabase/storage-js.index.StorageApiError.toJSON",
+ "@supabase/storage-js.StorageApiError.toJSON": {
+ "name": "@supabase/storage-js.StorageApiError.toJSON",
"params": [],
"ret": {
"type": {
@@ -78929,8 +80360,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/storage-js.index.StorageClient.constructor": {
- "name": "@supabase/storage-js.index.StorageClient.constructor",
+ "@supabase/storage-js.StorageClient.constructor": {
+ "name": "@supabase/storage-js.StorageClient.constructor",
"params": [
{
"name": "url",
@@ -79025,11 +80456,18 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a client for Storage buckets, files, analytics, and vectors."
+ "shortText": "Creates a client for Storage buckets, files, analytics, and vectors.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport { StorageClient } from '@supabase/storage-js'\\n\\nconst storage = new StorageClient('https://xyzcompany.supabase.co/storage/v1', {\\n apikey: 'public-anon-key',\\n})\\nconst avatars = storage.from('avatars')\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.StorageClient.createBucket": {
- "name": "@supabase/storage-js.index.StorageClient.createBucket",
+ "@supabase/storage-js.StorageClient.createBucket": {
+ "name": "@supabase/storage-js.StorageClient.createBucket",
"params": [
{
"name": "id",
@@ -79174,11 +80612,19 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new Storage bucket"
+ "shortText": "Creates a new Storage bucket",
+ "examples": [
+ {
+ "id": "create-bucket",
+ "name": "Create bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .createBucket('avatars', {\\n public: false,\\n allowedMimeTypes: ['image/png'],\\n fileSizeLimit: 1024\\n })\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"name\\": \\"avatars\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.StorageClient.deleteBucket": {
- "name": "@supabase/storage-js.index.StorageClient.deleteBucket",
+ "@supabase/storage-js.StorageClient.deleteBucket": {
+ "name": "@supabase/storage-js.StorageClient.deleteBucket",
"params": [
{
"name": "id",
@@ -79249,11 +80695,19 @@ 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 an existing bucket. A bucket can't be deleted with existing objects inside it.\\nYou must first \`empty()\` the bucket.",
+ "examples": [
+ {
+ "id": "delete-bucket",
+ "name": "Delete bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .deleteBucket('avatars')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"message\\": \\"Successfully deleted\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.StorageClient.emptyBucket": {
- "name": "@supabase/storage-js.index.StorageClient.emptyBucket",
+ "@supabase/storage-js.StorageClient.emptyBucket": {
+ "name": "@supabase/storage-js.StorageClient.emptyBucket",
"params": [
{
"name": "id",
@@ -79324,183 +80778,206 @@ 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."
- }
- },
- "@supabase/storage-js.index.StorageClient.getBucket": {
- "name": "@supabase/storage-js.index.StorageClient.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"
- }
- }
- ]
- }
- ]
+ "shortText": "Removes all objects inside a single bucket.",
+ "examples": [
+ {
+ "id": "empty-bucket",
+ "name": "Empty bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .emptyBucket('avatars')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"message\\": \\"Successfully emptied\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
+ }
+ },
+ "@supabase/storage-js.StorageClient.from": {
+ "name": "@supabase/storage-js.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.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst avatars = storage.from('avatars')\\n\`\`\`"
+ }
+ ]
+ }
+ },
+ "@supabase/storage-js.StorageClient.getBucket": {
+ "name": "@supabase/storage-js.StorageClient.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.",
+ "examples": [
+ {
+ "id": "get-bucket",
+ "name": "Get bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .getBucket('avatars')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"id\\": \\"avatars\\",\\n \\"name\\": \\"avatars\\",\\n \\"owner\\": \\"\\",\\n \\"public\\": false,\\n \\"file_size_limit\\": 1024,\\n \\"allowed_mime_types\\": [\\n \\"image/png\\"\\n ],\\n \\"created_at\\": \\"2024-05-22T22:26:05.100Z\\",\\n \\"updated_at\\": \\"2024-05-22T22:26:05.100Z\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
}
- }
- },
- "comment": {
- "shortText": "Retrieves the details of an existing Storage bucket."
+ ]
}
},
- "@supabase/storage-js.index.StorageClient.listBuckets": {
- "name": "@supabase/storage-js.index.StorageClient.listBuckets",
+ "@supabase/storage-js.StorageClient.listBuckets": {
+ "name": "@supabase/storage-js.StorageClient.listBuckets",
"params": [
{
"name": "options",
@@ -79576,7 +81053,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Query parameters for listing buckets"
+ }
}
],
"ret": {
@@ -79713,11 +81193,23 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Retrieves the details of all Storage buckets within an existing project."
+ "shortText": "Retrieves the details of all Storage buckets within an existing project.",
+ "examples": [
+ {
+ "id": "list-buckets",
+ "name": "List buckets",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .listBuckets()\\n\`\`\`"
+ },
+ {
+ "id": "list-buckets-with-options",
+ "name": "List buckets with options",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .listBuckets({\\n limit: 10,\\n offset: 0,\\n sortColumn: 'created_at',\\n sortOrder: 'desc',\\n search: 'prod'\\n })\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.StorageClient.throwOnError": {
- "name": "@supabase/storage-js.index.StorageClient.throwOnError",
+ "@supabase/storage-js.StorageClient.throwOnError": {
+ "name": "@supabase/storage-js.StorageClient.throwOnError",
"params": [],
"ret": {
"type": {
@@ -79729,8 +81221,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Enable throwing errors instead of returning them."
}
},
- "@supabase/storage-js.index.StorageClient.updateBucket": {
- "name": "@supabase/storage-js.index.StorageClient.updateBucket",
+ "@supabase/storage-js.StorageClient.updateBucket": {
+ "name": "@supabase/storage-js.StorageClient.updateBucket",
"params": [
{
"name": "id",
@@ -79866,11 +81358,19 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Updates a Storage bucket"
+ "shortText": "Updates a Storage bucket",
+ "examples": [
+ {
+ "id": "update-bucket",
+ "name": "Update bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .updateBucket('avatars', {\\n public: false,\\n allowedMimeTypes: ['image/png'],\\n fileSizeLimit: 1024\\n })\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"message\\": \\"Successfully updated\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.StorageError.constructor": {
- "name": "@supabase/storage-js.index.StorageError.constructor",
+ "@supabase/storage-js.StorageError.constructor": {
+ "name": "@supabase/storage-js.StorageError.constructor",
"params": [
{
"name": "message",
@@ -79887,8 +81387,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/storage-js.index.StorageUnknownError.constructor": {
- "name": "@supabase/storage-js.index.StorageUnknownError.constructor",
+ "@supabase/storage-js.StorageUnknownError.constructor": {
+ "name": "@supabase/storage-js.StorageUnknownError.constructor",
"params": [
{
"name": "message",
@@ -79912,8 +81412,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/storage-js.index.StorageVectorsApiError.constructor": {
- "name": "@supabase/storage-js.index.StorageVectorsApiError.constructor",
+ "@supabase/storage-js.StorageVectorsApiError.constructor": {
+ "name": "@supabase/storage-js.StorageVectorsApiError.constructor",
"params": [
{
"name": "message",
@@ -79944,8 +81444,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/storage-js.index.StorageVectorsApiError.toJSON": {
- "name": "@supabase/storage-js.index.StorageVectorsApiError.toJSON",
+ "@supabase/storage-js.StorageVectorsApiError.toJSON": {
+ "name": "@supabase/storage-js.StorageVectorsApiError.toJSON",
"params": [],
"ret": {
"type": {
@@ -79983,8 +81483,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/storage-js.index.StorageVectorsClient.constructor": {
- "name": "@supabase/storage-js.index.StorageVectorsClient.constructor",
+ "@supabase/storage-js.StorageVectorsClient.constructor": {
+ "name": "@supabase/storage-js.StorageVectorsClient.constructor",
"params": [
{
"name": "url",
@@ -80048,7 +81548,13 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
"isOptional": true,
"comment": {
- "shortText": "Custom fetch implementation (optional)\\nUseful for testing or custom request handling"
+ "shortText": "Custom fetch implementation (optional)\\nUseful for testing or custom request handling",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ]
}
},
{
@@ -80066,7 +81572,13 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
"isOptional": true,
"comment": {
- "shortText": "Custom headers to include in all requests"
+ "shortText": "Custom headers to include in all requests",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ]
}
}
]
@@ -80080,11 +81592,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a StorageVectorsClient that can manage buckets, indexes, and vectors.\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Creates a StorageVectorsClient that can manage buckets, indexes, and vectors.\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new StorageVectorsClient(url, options)\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.StorageVectorsClient.createBucket": {
- "name": "@supabase/storage-js.index.StorageVectorsClient.createBucket",
+ "@supabase/storage-js.StorageVectorsClient.createBucket": {
+ "name": "@supabase/storage-js.StorageVectorsClient.createBucket",
"params": [
{
"name": "vectorBucketName",
@@ -80162,11 +81687,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new vector bucket\\nVector buckets are containers for vector indexes and their data\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Creates a new vector bucket\\nVector buckets are containers for vector indexes and their data\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst { data, error } = await client.createBucket('embeddings-prod')\\nif (error) {\\n console.error('Failed to create bucket:', error.message)\\n}\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.StorageVectorsClient.deleteBucket": {
- "name": "@supabase/storage-js.index.StorageVectorsClient.deleteBucket",
+ "@supabase/storage-js.StorageVectorsClient.deleteBucket": {
+ "name": "@supabase/storage-js.StorageVectorsClient.deleteBucket",
"params": [
{
"name": "vectorBucketName",
@@ -80244,117 +81782,156 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Deletes a vector bucket\\nBucket must be empty before deletion (all indexes must be removed first)\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
- }
- },
- "@supabase/storage-js.index.StorageVectorsClient.from": {
- "name": "@supabase/storage-js.index.StorageVectorsClient.from",
- "params": [
- {
- "name": "vectorBucketName",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "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\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
- }
- },
- "@supabase/storage-js.index.StorageVectorsClient.getBucket": {
- "name": "@supabase/storage-js.index.StorageVectorsClient.getBucket",
- "params": [
- {
- "name": "vectorBucketName",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "Name of the vector bucket to retrieve"
+ "shortText": "Deletes a vector bucket\\nBucket must be empty before deletion (all indexes must be removed first)\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
+ }
+ },
+ "@supabase/storage-js.StorageVectorsClient.from": {
+ "name": "@supabase/storage-js.StorageVectorsClient.from",
+ "params": [
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "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\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
+ }
+ },
+ "@supabase/storage-js.StorageVectorsClient.getBucket": {
+ "name": "@supabase/storage-js.StorageVectorsClient.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": [
+ {
+ "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 bucket\\nReturns bucket configuration including encryption settings and creation time\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
}
- }
- ],
- "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"
- }
- }
- ]
- }
- ]
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
}
- }
- },
- "comment": {
- "shortText": "Retrieves metadata for a specific vector bucket\\nReturns bucket configuration including encryption settings and creation time\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ ]
}
},
- "@supabase/storage-js.index.StorageVectorsClient.listBuckets": {
- "name": "@supabase/storage-js.index.StorageVectorsClient.listBuckets",
+ "@supabase/storage-js.StorageVectorsClient.listBuckets": {
+ "name": "@supabase/storage-js.StorageVectorsClient.listBuckets",
"params": [
{
"name": "options",
@@ -80467,11 +82044,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Lists vector buckets with optional filtering and pagination\\nSupports prefix-based filtering and paginated results\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Lists vector buckets with optional filtering and pagination\\nSupports prefix-based filtering and paginated results\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.StorageVectorsClient.throwOnError": {
- "name": "@supabase/storage-js.index.StorageVectorsClient.throwOnError",
+ "@supabase/storage-js.StorageVectorsClient.throwOnError": {
+ "name": "@supabase/storage-js.StorageVectorsClient.throwOnError",
"params": [],
"ret": {
"type": {
@@ -80480,11 +82070,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new VectorBucketApi(url, headers)\\nclient.throwOnError()\\nconst { data } = await client.createBucket('my-bucket') // throws on error\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.StorageVectorsError.constructor": {
- "name": "@supabase/storage-js.index.StorageVectorsError.constructor",
+ "@supabase/storage-js.StorageVectorsError.constructor": {
+ "name": "@supabase/storage-js.StorageVectorsError.constructor",
"params": [
{
"name": "message",
@@ -80501,8 +82104,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/storage-js.index.StorageVectorsUnknownError.constructor": {
- "name": "@supabase/storage-js.index.StorageVectorsUnknownError.constructor",
+ "@supabase/storage-js.StorageVectorsUnknownError.constructor": {
+ "name": "@supabase/storage-js.StorageVectorsUnknownError.constructor",
"params": [
{
"name": "message",
@@ -80526,8 +82129,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/storage-js.index.VectorBucketApi.constructor": {
- "name": "@supabase/storage-js.index.VectorBucketApi.constructor",
+ "@supabase/storage-js.VectorBucketApi.constructor": {
+ "name": "@supabase/storage-js.VectorBucketApi.constructor",
"params": [
{
"name": "url",
@@ -80613,11 +82216,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new VectorBucketApi instance\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Creates a new VectorBucketApi instance\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new VectorBucketApi(url, headers)\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketApi.createBucket": {
- "name": "@supabase/storage-js.index.VectorBucketApi.createBucket",
+ "@supabase/storage-js.VectorBucketApi.createBucket": {
+ "name": "@supabase/storage-js.VectorBucketApi.createBucket",
"params": [
{
"name": "vectorBucketName",
@@ -80695,11 +82311,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new vector bucket\\nVector buckets are containers for vector indexes and their data\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Creates a new vector bucket\\nVector buckets are containers for vector indexes and their data\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst { data, error } = await client.createBucket('embeddings-prod')\\nif (error) {\\n console.error('Failed to create bucket:', error.message)\\n}\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketApi.deleteBucket": {
- "name": "@supabase/storage-js.index.VectorBucketApi.deleteBucket",
+ "@supabase/storage-js.VectorBucketApi.deleteBucket": {
+ "name": "@supabase/storage-js.VectorBucketApi.deleteBucket",
"params": [
{
"name": "vectorBucketName",
@@ -80777,11 +82406,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Deletes a vector bucket\\nBucket must be empty before deletion (all indexes must be removed first)\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Deletes a vector bucket\\nBucket must be empty before deletion (all indexes must be removed first)\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketApi.getBucket": {
- "name": "@supabase/storage-js.index.VectorBucketApi.getBucket",
+ "@supabase/storage-js.VectorBucketApi.getBucket": {
+ "name": "@supabase/storage-js.VectorBucketApi.getBucket",
"params": [
{
"name": "vectorBucketName",
@@ -80859,11 +82501,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Retrieves metadata for a specific vector bucket\\nReturns bucket configuration including encryption settings and creation time\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Retrieves metadata for a specific vector bucket\\nReturns bucket configuration including encryption settings and creation time\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketApi.listBuckets": {
- "name": "@supabase/storage-js.index.VectorBucketApi.listBuckets",
+ "@supabase/storage-js.VectorBucketApi.listBuckets": {
+ "name": "@supabase/storage-js.VectorBucketApi.listBuckets",
"params": [
{
"name": "options",
@@ -80976,11 +82631,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Lists vector buckets with optional filtering and pagination\\nSupports prefix-based filtering and paginated results\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Lists vector buckets with optional filtering and pagination\\nSupports prefix-based filtering and paginated results\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketApi.throwOnError": {
- "name": "@supabase/storage-js.index.VectorBucketApi.throwOnError",
+ "@supabase/storage-js.VectorBucketApi.throwOnError": {
+ "name": "@supabase/storage-js.VectorBucketApi.throwOnError",
"params": [],
"ret": {
"type": {
@@ -80989,11 +82657,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new VectorBucketApi(url, headers)\\nclient.throwOnError()\\nconst { data } = await client.createBucket('my-bucket') // throws on error\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketScope.constructor": {
- "name": "@supabase/storage-js.index.VectorBucketScope.constructor",
+ "@supabase/storage-js.VectorBucketScope.constructor": {
+ "name": "@supabase/storage-js.VectorBucketScope.constructor",
"params": [
{
"name": "url",
@@ -81077,11 +82758,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a helper that automatically scopes all index operations to the provided bucket.\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Creates a helper that automatically scopes all index operations to the provided bucket.\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst bucket = client.bucket('embeddings-prod')\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketScope.createIndex": {
- "name": "@supabase/storage-js.index.VectorBucketScope.createIndex",
+ "@supabase/storage-js.VectorBucketScope.createIndex": {
+ "name": "@supabase/storage-js.VectorBucketScope.createIndex",
"params": [
{
"name": "options",
@@ -81159,11 +82853,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new vector index in this bucket\\nConvenience method that automatically includes the bucket name\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Creates a new vector index in this bucket\\nConvenience method that automatically includes the bucket name\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketScope.deleteIndex": {
- "name": "@supabase/storage-js.index.VectorBucketScope.deleteIndex",
+ "@supabase/storage-js.VectorBucketScope.deleteIndex": {
+ "name": "@supabase/storage-js.VectorBucketScope.deleteIndex",
"params": [
{
"name": "indexName",
@@ -81241,11 +82948,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Deletes an index from this bucket\\nConvenience method that automatically includes the bucket name\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Deletes an index from this bucket\\nConvenience method that automatically includes the bucket name\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst bucket = client.bucket('embeddings-prod')\\nawait bucket.deleteIndex('old-index')\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketScope.getIndex": {
- "name": "@supabase/storage-js.index.VectorBucketScope.getIndex",
+ "@supabase/storage-js.VectorBucketScope.getIndex": {
+ "name": "@supabase/storage-js.VectorBucketScope.getIndex",
"params": [
{
"name": "indexName",
@@ -81323,11 +83043,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Retrieves metadata for a specific index in this bucket\\nConvenience method that automatically includes the bucket name\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Retrieves metadata for a specific index in this bucket\\nConvenience method that automatically includes the bucket name\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst bucket = client.bucket('embeddings-prod')\\nconst { data } = await bucket.getIndex('documents-openai')\\nconsole.log('Dimension:', data?.index.dimension)\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketScope.index": {
- "name": "@supabase/storage-js.index.VectorBucketScope.index",
+ "@supabase/storage-js.VectorBucketScope": {
+ "name": "@supabase/storage-js.VectorBucketScope",
"params": [
{
"name": "indexName",
@@ -81347,11 +83080,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Access operations for a specific index within this bucket\\nReturns a scoped client for vector data operations\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Access operations for a specific index within this bucket\\nReturns a scoped client for vector data operations\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketScope.listIndexes": {
- "name": "@supabase/storage-js.index.VectorBucketScope.listIndexes",
+ "@supabase/storage-js.VectorBucketScope.listIndexes": {
+ "name": "@supabase/storage-js.VectorBucketScope.listIndexes",
"params": [
{
"name": "options",
@@ -81429,11 +83175,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Lists indexes in this bucket\\nConvenience method that automatically includes the bucket name\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Lists indexes in this bucket\\nConvenience method that automatically includes the bucket name\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst bucket = client.bucket('embeddings-prod')\\nconst { data } = await bucket.listIndexes({ prefix: 'documents-' })\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorBucketScope.throwOnError": {
- "name": "@supabase/storage-js.index.VectorBucketScope.throwOnError",
+ "@supabase/storage-js.VectorBucketScope.throwOnError": {
+ "name": "@supabase/storage-js.VectorBucketScope.throwOnError",
"params": [],
"ret": {
"type": {
@@ -81442,11 +83201,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new VectorIndexApi(url, headers)\\nclient.throwOnError()\\nconst { data } = await client.createIndex(options) // throws on error\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorDataApi.constructor": {
- "name": "@supabase/storage-js.index.VectorDataApi.constructor",
+ "@supabase/storage-js.VectorDataApi.constructor": {
+ "name": "@supabase/storage-js.VectorDataApi.constructor",
"params": [
{
"name": "url",
@@ -81532,11 +83304,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a VectorDataApi bound to a Storage Vectors deployment.\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Creates a VectorDataApi bound to a Storage Vectors deployment.\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new VectorDataApi(url, headers)\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorDataApi.deleteVectors": {
- "name": "@supabase/storage-js.index.VectorDataApi.deleteVectors",
+ "@supabase/storage-js.VectorDataApi.deleteVectors": {
+ "name": "@supabase/storage-js.VectorDataApi.deleteVectors",
"params": [
{
"name": "options",
@@ -81649,11 +83434,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Deletes vectors by their keys in batch\\nAccepts 1-500 keys per request\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Deletes vectors by their keys in batch\\nAccepts 1-500 keys per request\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorDataApi.getVectors": {
- "name": "@supabase/storage-js.index.VectorDataApi.getVectors",
+ "@supabase/storage-js.VectorDataApi.getVectors": {
+ "name": "@supabase/storage-js.VectorDataApi.getVectors",
"params": [
{
"name": "options",
@@ -81788,11 +83586,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "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\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorDataApi.listVectors": {
- "name": "@supabase/storage-js.index.VectorDataApi.listVectors",
+ "@supabase/storage-js.VectorDataApi.listVectors": {
+ "name": "@supabase/storage-js.VectorDataApi.listVectors",
"params": [
{
"name": "options",
@@ -81958,11 +83769,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"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\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorDataApi.putVectors": {
- "name": "@supabase/storage-js.index.VectorDataApi.putVectors",
+ "@supabase/storage-js.VectorDataApi.putVectors": {
+ "name": "@supabase/storage-js.VectorDataApi.putVectors",
"params": [
{
"name": "options",
@@ -82131,11 +83955,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Inserts or updates vectors in batch (upsert operation)\\nAccepts 1-500 vectors per request. Larger batches should be split\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Inserts or updates vectors in batch (upsert operation)\\nAccepts 1-500 vectors per request. Larger batches should be split\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorDataApi.queryVectors": {
- "name": "@supabase/storage-js.index.VectorDataApi.queryVectors",
+ "@supabase/storage-js.VectorDataApi.queryVectors": {
+ "name": "@supabase/storage-js.VectorDataApi.queryVectors",
"params": [
{
"name": "options",
@@ -82312,11 +84149,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"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)\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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)\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorDataApi.throwOnError": {
- "name": "@supabase/storage-js.index.VectorDataApi.throwOnError",
+ "@supabase/storage-js.VectorDataApi.throwOnError": {
+ "name": "@supabase/storage-js.VectorDataApi.throwOnError",
"params": [],
"ret": {
"type": {
@@ -82325,11 +84175,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new VectorDataApi(url, headers)\\nclient.throwOnError()\\nconst { data } = await client.putVectors(options) // throws on error\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexApi.constructor": {
- "name": "@supabase/storage-js.index.VectorIndexApi.constructor",
+ "@supabase/storage-js.VectorIndexApi.constructor": {
+ "name": "@supabase/storage-js.VectorIndexApi.constructor",
"params": [
{
"name": "url",
@@ -82415,11 +84278,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates an API client for managing vector indexes.\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Creates an API client for managing vector indexes.\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new VectorIndexApi(url, headers)\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexApi.createIndex": {
- "name": "@supabase/storage-js.index.VectorIndexApi.createIndex",
+ "@supabase/storage-js.VectorIndexApi.createIndex": {
+ "name": "@supabase/storage-js.VectorIndexApi.createIndex",
"params": [
{
"name": "options",
@@ -82432,6 +84308,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "literal",
"value": "float32"
+ },
+ "comment": {
+ "shortText": "",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ]
}
},
{
@@ -82439,6 +84324,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "intrinsic",
"name": "number"
+ },
+ "comment": {
+ "shortText": "",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ]
}
},
{
@@ -82460,6 +84354,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"value": "dotproduct"
}
]
+ },
+ "comment": {
+ "shortText": "",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ]
}
},
{
@@ -82467,6 +84370,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": "",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ]
}
},
{
@@ -82491,13 +84403,31 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ]
+ }
},
{
"name": "vectorBucketName",
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": "",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ]
}
}
]
@@ -82572,11 +84502,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new vector index within a bucket\\nDefines the schema for vectors including dimensionality, distance metric, and metadata config\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Creates a new vector index within a bucket\\nDefines the schema for vectors including dimensionality, distance metric, and metadata config\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexApi.deleteIndex": {
- "name": "@supabase/storage-js.index.VectorIndexApi.deleteIndex",
+ "@supabase/storage-js.VectorIndexApi.deleteIndex": {
+ "name": "@supabase/storage-js.VectorIndexApi.deleteIndex",
"params": [
{
"name": "vectorBucketName",
@@ -82664,11 +84607,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Deletes a vector index and all its data\\nThis operation removes the index schema and all vectors stored in the index\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Deletes a vector index and all its data\\nThis operation removes the index schema and all vectors stored in the index\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexApi.getIndex": {
- "name": "@supabase/storage-js.index.VectorIndexApi.getIndex",
+ "@supabase/storage-js.VectorIndexApi.getIndex": {
+ "name": "@supabase/storage-js.VectorIndexApi.getIndex",
"params": [
{
"name": "vectorBucketName",
@@ -82756,11 +84712,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Retrieves metadata for a specific vector index\\nReturns index configuration including dimension, distance metric, and metadata settings\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Retrieves metadata for a specific vector index\\nReturns index configuration including dimension, distance metric, and metadata settings\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexApi.listIndexes": {
- "name": "@supabase/storage-js.index.VectorIndexApi.listIndexes",
+ "@supabase/storage-js.VectorIndexApi.listIndexes": {
+ "name": "@supabase/storage-js.VectorIndexApi.listIndexes",
"params": [
{
"name": "options",
@@ -82883,11 +84852,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Lists vector indexes within a bucket with optional filtering and pagination\\nSupports prefix-based filtering and paginated results\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Lists vector indexes within a bucket with optional filtering and pagination\\nSupports prefix-based filtering and paginated results\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexApi.throwOnError": {
- "name": "@supabase/storage-js.index.VectorIndexApi.throwOnError",
+ "@supabase/storage-js.VectorIndexApi.throwOnError": {
+ "name": "@supabase/storage-js.VectorIndexApi.throwOnError",
"params": [],
"ret": {
"type": {
@@ -82896,11 +84878,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new VectorIndexApi(url, headers)\\nclient.throwOnError()\\nconst { data } = await client.createIndex(options) // throws on error\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexScope.constructor": {
- "name": "@supabase/storage-js.index.VectorIndexScope.constructor",
+ "@supabase/storage-js.VectorIndexScope.constructor": {
+ "name": "@supabase/storage-js.VectorIndexScope.constructor",
"params": [
{
"name": "url",
@@ -82991,11 +84986,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a helper that automatically scopes all vector operations to the provided bucket/index names.\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Creates a helper that automatically scopes all vector operations to the provided bucket/index names.\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst index = client.bucket('embeddings-prod').index('documents-openai')\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexScope.deleteVectors": {
- "name": "@supabase/storage-js.index.VectorIndexScope.deleteVectors",
+ "@supabase/storage-js.VectorIndexScope.deleteVectors": {
+ "name": "@supabase/storage-js.VectorIndexScope.deleteVectors",
"params": [
{
"name": "options",
@@ -83073,11 +85081,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Deletes vectors by keys from this index\\nConvenience method that automatically includes bucket and index names\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Deletes vectors by keys from this index\\nConvenience method that automatically includes bucket and index names\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst index = client.bucket('embeddings-prod').index('documents-openai')\\nawait index.deleteVectors({\\n keys: ['doc-1', 'doc-2', 'doc-3']\\n})\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexScope.getVectors": {
- "name": "@supabase/storage-js.index.VectorIndexScope.getVectors",
+ "@supabase/storage-js.VectorIndexScope.getVectors": {
+ "name": "@supabase/storage-js.VectorIndexScope.getVectors",
"params": [
{
"name": "options",
@@ -83155,11 +85176,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Retrieves vectors by keys from this index\\nConvenience method that automatically includes bucket and index names\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Retrieves vectors by keys from this index\\nConvenience method that automatically includes bucket and index names\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexScope.listVectors": {
- "name": "@supabase/storage-js.index.VectorIndexScope.listVectors",
+ "@supabase/storage-js.VectorIndexScope.listVectors": {
+ "name": "@supabase/storage-js.VectorIndexScope.listVectors",
"params": [
{
"name": "options",
@@ -83237,11 +85271,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Lists vectors in this index with pagination\\nConvenience method that automatically includes bucket and index names\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Lists vectors in this index with pagination\\nConvenience method that automatically includes bucket and index names\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst index = client.bucket('embeddings-prod').index('documents-openai')\\nconst { data } = await index.listVectors({\\n maxResults: 500,\\n returnMetadata: true\\n})\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexScope.putVectors": {
- "name": "@supabase/storage-js.index.VectorIndexScope.putVectors",
+ "@supabase/storage-js.VectorIndexScope.putVectors": {
+ "name": "@supabase/storage-js.VectorIndexScope.putVectors",
"params": [
{
"name": "options",
@@ -83319,11 +85366,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Inserts or updates vectors in this index\\nConvenience method that automatically includes bucket and index names\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Inserts or updates vectors in this index\\nConvenience method that automatically includes bucket and index names\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexScope.queryVectors": {
- "name": "@supabase/storage-js.index.VectorIndexScope.queryVectors",
+ "@supabase/storage-js.VectorIndexScope.queryVectors": {
+ "name": "@supabase/storage-js.VectorIndexScope.queryVectors",
"params": [
{
"name": "options",
@@ -83401,11 +85461,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Queries for similar vectors in this index\\nConvenience method that automatically includes bucket and index names\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Queries for similar vectors in this index\\nConvenience method that automatically includes bucket and index names\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`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\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.index.VectorIndexScope.throwOnError": {
- "name": "@supabase/storage-js.index.VectorIndexScope.throwOnError",
+ "@supabase/storage-js.VectorIndexScope.throwOnError": {
+ "name": "@supabase/storage-js.VectorIndexScope.throwOnError",
"params": [],
"ret": {
"type": {
@@ -83414,7 +85487,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "tags": [
+ {
+ "tag": "alpha",
+ "text": ""
+ }
+ ],
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new VectorDataApi(url, headers)\\nclient.throwOnError()\\nconst { data } = await client.putVectors(options) // throws on error\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/BlobDownloadBuilder.default.constructor": {
@@ -83809,8 +85895,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"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",
+ "@supabase/storage-js.packages/StorageAnalyticsClient.default.constructor": {
+ "name": "@supabase/storage-js.packages/StorageAnalyticsClient.default.constructor",
"params": [
{
"name": "url",
@@ -83896,11 +85982,18 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new StorageAnalyticsApi instance"
+ "shortText": "Creates a new StorageAnalyticsClient instance\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`typescript\\nconst client = new StorageAnalyticsClient(url, headers)\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.packages/StorageAnalyticsApi.default.createBucket": {
- "name": "@supabase/storage-js.packages/StorageAnalyticsApi.default.createBucket",
+ "@supabase/storage-js.packages/StorageAnalyticsClient.default.createBucket": {
+ "name": "@supabase/storage-js.packages/StorageAnalyticsClient.default.createBucket",
"params": [
{
"name": "name",
@@ -83950,7 +86043,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
{
- "name": "id",
+ "name": "name",
"type": {
"type": "intrinsic",
"name": "string"
@@ -84015,14 +86108,22 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new analytics bucket using Iceberg tables\\nAnalytics buckets are optimized for analytical queries and data processing"
+ "shortText": "Creates a new analytics bucket using Iceberg tables\\nAnalytics buckets are optimized for analytical queries and data processing\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "examples": [
+ {
+ "id": "create-analytics-bucket",
+ "name": "Create analytics bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .analytics\\n .createBucket('analytics-data')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"name\\": \\"analytics-data\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.packages/StorageAnalyticsApi.default.deleteBucket": {
- "name": "@supabase/storage-js.packages/StorageAnalyticsApi.default.deleteBucket",
+ "@supabase/storage-js.packages/StorageAnalyticsClient.default.deleteBucket": {
+ "name": "@supabase/storage-js.packages/StorageAnalyticsClient.default.deleteBucket",
"params": [
{
- "name": "bucketId",
+ "name": "bucketName",
"type": {
"type": "intrinsic",
"name": "string"
@@ -84090,11 +86191,19 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "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"
+ "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\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "examples": [
+ {
+ "id": "delete-analytics-bucket",
+ "name": "Delete analytics bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .analytics\\n .deleteBucket('analytics-data')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"message\\": \\"Successfully deleted\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.packages/StorageAnalyticsApi.default.listBuckets": {
- "name": "@supabase/storage-js.packages/StorageAnalyticsApi.default.listBuckets",
+ "@supabase/storage-js.packages/StorageAnalyticsClient.default.listBuckets": {
+ "name": "@supabase/storage-js.packages/StorageAnalyticsClient.default.listBuckets",
"params": [
{
"name": "options",
@@ -84229,7 +86338,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
{
- "name": "id",
+ "name": "name",
"type": {
"type": "intrinsic",
"name": "string"
@@ -84295,11 +86404,19 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Retrieves the details of all Analytics Storage buckets within an existing project\\nOnly returns buckets of type 'ANALYTICS'"
+ "shortText": "Retrieves the details of all Analytics Storage buckets within an existing project\\nOnly returns buckets of type 'ANALYTICS'\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.",
+ "examples": [
+ {
+ "id": "list-analytics-buckets",
+ "name": "List analytics buckets",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .analytics\\n .listBuckets({\\n limit: 10,\\n offset: 0,\\n sortColumn: 'created_at',\\n sortOrder: 'desc'\\n })\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": [\\n {\\n \\"id\\": \\"analytics-data\\",\\n \\"name\\": \\"analytics-data\\",\\n \\"type\\": \\"ANALYTICS\\",\\n \\"created_at\\": \\"2024-05-22T22:26:05.100Z\\",\\n \\"updated_at\\": \\"2024-05-22T22:26:05.100Z\\"\\n }\\n ],\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
- "@supabase/storage-js.packages/StorageAnalyticsApi.default.throwOnError": {
- "name": "@supabase/storage-js.packages/StorageAnalyticsApi.default.throwOnError",
+ "@supabase/storage-js.packages/StorageAnalyticsClient.default.throwOnError": {
+ "name": "@supabase/storage-js.packages/StorageAnalyticsClient.default.throwOnError",
"params": [],
"ret": {
"type": {
@@ -84308,7 +86425,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }\\n\\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
},
"@supabase/storage-js.packages/StorageBucketApi.default.constructor": {
@@ -84553,7 +86670,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new Storage bucket"
+ "shortText": "Creates a new Storage bucket",
+ "examples": [
+ {
+ "id": "create-bucket",
+ "name": "Create bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .createBucket('avatars', {\\n public: false,\\n allowedMimeTypes: ['image/png'],\\n fileSizeLimit: 1024\\n })\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"name\\": \\"avatars\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageBucketApi.default.deleteBucket": {
@@ -84628,7 +86753,15 @@ 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 an existing bucket. A bucket can't be deleted with existing objects inside it.\\nYou must first \`empty()\` the bucket.",
+ "examples": [
+ {
+ "id": "delete-bucket",
+ "name": "Delete bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .deleteBucket('avatars')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"message\\": \\"Successfully deleted\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageBucketApi.default.emptyBucket": {
@@ -84703,7 +86836,15 @@ 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.",
+ "examples": [
+ {
+ "id": "empty-bucket",
+ "name": "Empty bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .emptyBucket('avatars')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"message\\": \\"Successfully emptied\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageBucketApi.default.getBucket": {
@@ -84851,7 +86992,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Retrieves the details of an existing Storage bucket."
+ "shortText": "Retrieves the details of an existing Storage bucket.",
+ "examples": [
+ {
+ "id": "get-bucket",
+ "name": "Get bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .getBucket('avatars')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"id\\": \\"avatars\\",\\n \\"name\\": \\"avatars\\",\\n \\"owner\\": \\"\\",\\n \\"public\\": false,\\n \\"file_size_limit\\": 1024,\\n \\"allowed_mime_types\\": [\\n \\"image/png\\"\\n ],\\n \\"created_at\\": \\"2024-05-22T22:26:05.100Z\\",\\n \\"updated_at\\": \\"2024-05-22T22:26:05.100Z\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageBucketApi.default.listBuckets": {
@@ -84931,7 +87080,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Query parameters for listing buckets"
+ }
}
],
"ret": {
@@ -85068,7 +87220,19 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Retrieves the details of all Storage buckets within an existing project."
+ "shortText": "Retrieves the details of all Storage buckets within an existing project.",
+ "examples": [
+ {
+ "id": "list-buckets",
+ "name": "List buckets",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .listBuckets()\\n\`\`\`"
+ },
+ {
+ "id": "list-buckets-with-options",
+ "name": "List buckets with options",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .listBuckets({\\n limit: 10,\\n offset: 0,\\n sortColumn: 'created_at',\\n sortOrder: 'desc',\\n search: 'prod'\\n })\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageBucketApi.default.throwOnError": {
@@ -85221,7 +87385,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Updates a Storage bucket"
+ "shortText": "Updates a Storage bucket",
+ "examples": [
+ {
+ "id": "update-bucket",
+ "name": "Update bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .updateBucket('avatars', {\\n public: false,\\n allowedMimeTypes: ['image/png'],\\n fileSizeLimit: 1024\\n })\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"message\\": \\"Successfully updated\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.constructor": {
@@ -85413,7 +87585,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Copies an existing file to a new path in the same bucket."
+ "shortText": "Copies an existing file to a new path in the same bucket.",
+ "examples": [
+ {
+ "id": "copy-file",
+ "name": "Copy file",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .copy('public/avatar1.png', 'private/avatar2.png')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"path\\": \\"avatars/private/avatar2.png\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.createSignedUploadUrl": {
@@ -85521,7 +87701,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a signed upload URL.\\nSigned upload URLs can be used to upload files to the bucket without further authentication.\\nThey are valid for 2 hours."
+ "shortText": "Creates a signed upload URL.\\nSigned upload URLs can be used to upload files to the bucket without further authentication.\\nThey are valid for 2 hours.",
+ "examples": [
+ {
+ "id": "create-signed-upload-url",
+ "name": "Create Signed Upload URL",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .createSignedUploadUrl('folder/cat.jpg')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"signedUrl\\": \\"https://example.supabase.co/storage/v1/object/upload/sign/avatars/folder/cat.jpg?token=\\",\\n \\"path\\": \\"folder/cat.jpg\\",\\n \\"token\\": \\"\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.createSignedUrl": {
@@ -85716,7 +87904,25 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a signed URL. Use a signed URL to share a file for a fixed amount of time."
+ "shortText": "Creates a signed URL. Use a signed URL to share a file for a fixed amount of time.",
+ "examples": [
+ {
+ "id": "create-signed-url",
+ "name": "Create Signed URL",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .createSignedUrl('folder/avatar1.png', 60)\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"signedUrl\\": \\"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar1.png?token=\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ },
+ {
+ "id": "create-a-signed-url-for-an-asset-with-transformations",
+ "name": "Create a signed URL for an asset with transformations",
+ "code": "\`\`\`js\\nconst { data } = await supabase\\n .storage\\n .from('avatars')\\n .createSignedUrl('folder/avatar1.png', 60, {\\n transform: {\\n width: 100,\\n height: 100,\\n }\\n })\\n\`\`\`"
+ },
+ {
+ "id": "create-a-signed-url-which-triggers-the-download-of-the-asset",
+ "name": "Create a signed URL which triggers the download of the asset",
+ "code": "\`\`\`js\\nconst { data } = await supabase\\n .storage\\n .from('avatars')\\n .createSignedUrl('folder/avatar1.png', 60, {\\n download: true,\\n })\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.createSignedUrls": {
@@ -85867,7 +88073,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates multiple signed URLs. Use a signed URL to share a file for a fixed amount of time."
+ "shortText": "Creates multiple signed URLs. Use a signed URL to share a file for a fixed amount of time.",
+ "examples": [
+ {
+ "id": "create-signed-urls",
+ "name": "Create Signed URLs",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .createSignedUrls(['folder/avatar1.png', 'folder/avatar2.png'], 60)\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": [\\n {\\n \\"error\\": null,\\n \\"path\\": \\"folder/avatar1.png\\",\\n \\"signedURL\\": \\"/object/sign/avatars/folder/avatar1.png?token=\\",\\n \\"signedUrl\\": \\"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar1.png?token=\\"\\n },\\n {\\n \\"error\\": null,\\n \\"path\\": \\"folder/avatar2.png\\",\\n \\"signedURL\\": \\"/object/sign/avatars/folder/avatar2.png?token=\\",\\n \\"signedUrl\\": \\"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar2.png?token=\\"\\n }\\n ],\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.download": {
@@ -85899,7 +88113,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Downloads a file from a private bucket. For public buckets, make a request to the URL returned from \`getPublicUrl\` instead."
+ "shortText": "Downloads a file from a private bucket. For public buckets, make a request to the URL returned from \`getPublicUrl\` instead.",
+ "examples": [
+ {
+ "id": "download-file",
+ "name": "Download file",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .download('folder/avatar1.png')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": ,\\n \\"error\\": null\\n}\\n\`\`\`"
+ },
+ {
+ "id": "download-file-with-transformations",
+ "name": "Download file with transformations",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .download('folder/avatar1.png', {\\n transform: {\\n width: 100,\\n height: 100,\\n quality: 80\\n }\\n })\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.exists": {
@@ -85910,6 +88137,9 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": "The file path, including the file name. For example \`folder/image.png\`."
}
}
],
@@ -85963,7 +88193,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Checks the existence of a file."
+ "shortText": "Checks the existence of a file.",
+ "examples": [
+ {
+ "id": "check-file-existence",
+ "name": "Check file existence",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .exists('folder/avatar1.png')\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.getPublicUrl": {
@@ -86113,7 +88350,25 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "A simple convenience function to get the URL for an asset in a public bucket. If you do not want to use this function, you can construct the public URL by concatenating the bucket URL with the path to the asset.\\nThis function does not verify if the bucket is public. If a public URL is created for a bucket which is not public, you will not be able to download the asset."
+ "shortText": "A simple convenience function to get the URL for an asset in a public bucket. If you do not want to use this function, you can construct the public URL by concatenating the bucket URL with the path to the asset.\\nThis function does not verify if the bucket is public. If a public URL is created for a bucket which is not public, you will not be able to download the asset.",
+ "examples": [
+ {
+ "id": "returns-the-url-for-an-asset-in-a-public-bucket",
+ "name": "Returns the URL for an asset in a public bucket",
+ "code": "\`\`\`js\\nconst { data } = supabase\\n .storage\\n .from('public-bucket')\\n .getPublicUrl('folder/avatar1.png')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"publicUrl\\": \\"https://example.supabase.co/storage/v1/object/public/public-bucket/folder/avatar1.png\\"\\n }\\n}\\n\`\`\`"
+ },
+ {
+ "id": "returns-the-url-for-an-asset-in-a-public-bucket-with-transformations",
+ "name": "Returns the URL for an asset in a public bucket with transformations",
+ "code": "\`\`\`js\\nconst { data } = supabase\\n .storage\\n .from('public-bucket')\\n .getPublicUrl('folder/avatar1.png', {\\n transform: {\\n width: 100,\\n height: 100,\\n }\\n })\\n\`\`\`"
+ },
+ {
+ "id": "returns-the-url-which-triggers-the-download-of-an-asset-in-a-public-bucket",
+ "name": "Returns the URL which triggers the download of an asset in a public bucket",
+ "code": "\`\`\`js\\nconst { data } = supabase\\n .storage\\n .from('public-bucket')\\n .getPublicUrl('folder/avatar1.png', {\\n download: true,\\n })\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.info": {
@@ -86124,6 +88379,9 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": "The file path, including the file name. For example \`folder/image.png\`."
}
}
],
@@ -86177,7 +88435,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Retrieves the details of an existing file."
+ "shortText": "Retrieves the details of an existing file.",
+ "examples": [
+ {
+ "id": "get-file-info",
+ "name": "Get file info",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .info('folder/avatar1.png')\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.list": {
@@ -86288,7 +88553,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional fetch parameters including signal for cancellation"
+ }
}
],
"ret": {
@@ -86501,7 +88769,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Lists all the files and folders within a path of the bucket."
+ "shortText": "Lists all the files and folders within a path of the bucket.",
+ "examples": [
+ {
+ "id": "list-files-in-a-bucket",
+ "name": "List files in a bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .list('folder', {\\n limit: 100,\\n offset: 0,\\n sortBy: { column: 'name', order: 'asc' },\\n })\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": [\\n {\\n \\"name\\": \\"avatar1.png\\",\\n \\"id\\": \\"e668cf7f-821b-4a2f-9dce-7dfa5dd1cfd2\\",\\n \\"updated_at\\": \\"2024-05-22T23:06:05.580Z\\",\\n \\"created_at\\": \\"2024-05-22T23:04:34.443Z\\",\\n \\"last_accessed_at\\": \\"2024-05-22T23:04:34.443Z\\",\\n \\"metadata\\": {\\n \\"eTag\\": \\"\\\\\\"c5e8c553235d9af30ef4f6e280790b92\\\\\\"\\",\\n \\"size\\": 32175,\\n \\"mimetype\\": \\"image/png\\",\\n \\"cacheControl\\": \\"max-age=3600\\",\\n \\"lastModified\\": \\"2024-05-22T23:06:05.574Z\\",\\n \\"contentLength\\": 32175,\\n \\"httpStatusCode\\": 200\\n }\\n }\\n ],\\n \\"error\\": null\\n}\\n\`\`\`"
+ },
+ {
+ "id": "search-files-in-a-bucket",
+ "name": "Search files in a bucket",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .list('folder', {\\n limit: 100,\\n offset: 0,\\n sortBy: { column: 'name', order: 'asc' },\\n search: 'jon'\\n })\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.listV2": {
@@ -86897,7 +89178,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Moves an existing file to a new path in the same bucket."
+ "shortText": "Moves an existing file to a new path in the same bucket.",
+ "examples": [
+ {
+ "id": "move-file",
+ "name": "Move file",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .move('public/avatar1.png', 'private/avatar2.png')\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"message\\": \\"Successfully moved\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.remove": {
@@ -87127,7 +89416,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Deletes files within the same bucket"
+ "shortText": "Deletes files within the same bucket",
+ "examples": [
+ {
+ "id": "delete-file",
+ "name": "Delete file",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .remove(['folder/avatar1.png'])\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": [],\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.throwOnError": {
@@ -87315,7 +89612,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional file upload options including cacheControl, contentType, upsert, and metadata."
+ }
}
],
"ret": {
@@ -87390,7 +89690,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Replaces an existing file at the specified path with a new one."
+ "shortText": "Replaces an existing file at the specified path with a new one.",
+ "examples": [
+ {
+ "id": "update-file",
+ "name": "Update file",
+ "code": "\`\`\`js\\nconst avatarFile = event.target.files[0]\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .update('public/avatar1.png', avatarFile, {\\n cacheControl: '3600',\\n upsert: true\\n })\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"path\\": \\"public/avatar1.png\\",\\n \\"fullPath\\": \\"avatars/public/avatar1.png\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ },
+ {
+ "id": "update-file-using-arraybuffer-from-base64-file-data",
+ "name": "Update file using \`ArrayBuffer\` from base64 file data",
+ "code": "\`\`\`js\\nimport {decode} from 'base64-arraybuffer'\\n\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .update('public/avatar1.png', decode('base64FileData'), {\\n contentType: 'image/png'\\n })\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.upload": {
@@ -87506,7 +89819,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional file upload options including cacheControl, contentType, upsert, and metadata."
+ }
}
],
"ret": {
@@ -87581,7 +89897,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Uploads a file to an existing bucket."
+ "shortText": "Uploads a file to an existing bucket.",
+ "examples": [
+ {
+ "id": "upload-file",
+ "name": "Upload file",
+ "code": "\`\`\`js\\nconst avatarFile = event.target.files[0]\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .upload('public/avatar1.png', avatarFile, {\\n cacheControl: '3600',\\n upsert: false\\n })\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"path\\": \\"public/avatar1.png\\",\\n \\"fullPath\\": \\"avatars/public/avatar1.png\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ },
+ {
+ "id": "upload-file-using-arraybuffer-from-base64-file-data",
+ "name": "Upload file using \`ArrayBuffer\` from base64 file data",
+ "code": "\`\`\`js\\nimport { decode } from 'base64-arraybuffer'\\n\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .upload('public/avatar1.png', decode('base64FileData'), {\\n contentType: 'image/png'\\n })\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StorageFileApi.default.uploadToSignedUrl": {
@@ -87707,7 +90036,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional file upload options including cacheControl and contentType."
+ }
}
],
"ret": {
@@ -87775,7 +90107,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Upload a file with a token generated from \`createSignedUploadUrl\`."
+ "shortText": "Upload a file with a token generated from \`createSignedUploadUrl\`.",
+ "examples": [
+ {
+ "id": "upload-to-a-signed-url",
+ "name": "Upload to a signed URL",
+ "code": "\`\`\`js\\nconst { data, error } = await supabase\\n .storage\\n .from('avatars')\\n .uploadToSignedUrl('folder/cat.jpg', 'token-from-createSignedUploadUrl', file)\\n\`\`\`",
+ "response": "\`\`\`json\\n{\\n \\"data\\": {\\n \\"path\\": \\"folder/cat.jpg\\",\\n \\"fullPath\\": \\"avatars/folder/cat.jpg\\"\\n },\\n \\"error\\": null\\n}\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/storage-js.packages/StreamDownloadBuilder.default.constructor": {
@@ -88066,7 +90406,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new Functions client bound to an Edge Functions URL."
+ "shortText": "Creates a new Functions client bound to an Edge Functions URL.",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nimport { FunctionsClient, FunctionRegion } from '@supabase/functions-js'\\n\\nconst functions = new FunctionsClient('https://xyzcompany.supabase.co/functions/v1', {\\n headers: { apikey: 'public-anon-key' },\\n region: FunctionRegion.UsEast1,\\n})\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/functions-js.FunctionsClient.invoke": {
@@ -88247,7 +90594,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Invokes a function"
+ "shortText": "Invokes a function",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nconst { data, error } = await functions.invoke('hello-world', {\\n body: { name: 'Ada' },\\n})\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/functions-js.FunctionsClient.setAuth": {
@@ -88271,7 +90625,14 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Updates the authorization header"
+ "shortText": "Updates the authorization header",
+ "examples": [
+ {
+ "id": "example-1",
+ "name": "Example 1",
+ "code": "\`\`\`ts\\nfunctions.setAuth(session.access_token)\\n\`\`\`"
+ }
+ ]
}
},
"@supabase/functions-js.FunctionsError.constructor": {
diff --git a/apps/docs/public/img/icons/refine-icon.svg b/apps/docs/public/img/icons/refine-icon.svg
index 7f2e1f8d82c55..1d3d2a7a933dc 100644
--- a/apps/docs/public/img/icons/refine-icon.svg
+++ b/apps/docs/public/img/icons/refine-icon.svg
@@ -1,12 +1 @@
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/apps/docs/public/img/refine-qs-welcome-page.png b/apps/docs/public/img/refine-qs-welcome-page.png
index 376740a35f780..4ae06c3ad3740 100644
Binary files a/apps/docs/public/img/refine-qs-welcome-page.png and b/apps/docs/public/img/refine-qs-welcome-page.png differ
diff --git a/apps/docs/spec/api_v1_openapi.json b/apps/docs/spec/api_v1_openapi.json
index e7fbe40ed9e67..e4494c810544c 100644
--- a/apps/docs/spec/api_v1_openapi.json
+++ b/apps/docs/spec/api_v1_openapi.json
@@ -5451,7 +5451,10 @@
{ "name": "Projects", "description": "Projects related endpoints" },
{ "name": "Rest", "description": "Rest related endpoints" },
{ "name": "Secrets", "description": "Secrets related endpoints" },
- { "name": "Storage", "description": "Storage related endpoints" }
+ {
+ "name": "Storage",
+ "description": "Visit [https://supabase.github.io/storage/](https://supabase.github.io/storage/) for complete documentation."
+ }
],
"servers": [],
"components": {
@@ -7318,12 +7321,24 @@
"max_worker_processes": { "type": "integer", "minimum": 0, "maximum": 262143 },
"session_replication_role": { "type": "string", "enum": ["origin", "replica", "local"] },
"shared_buffers": { "type": "string" },
- "statement_timeout": { "type": "string" },
+ "statement_timeout": {
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
+ },
"track_commit_timestamp": { "type": "boolean" },
"wal_keep_size": { "type": "string" },
- "wal_sender_timeout": { "type": "string" },
+ "wal_sender_timeout": {
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
+ },
"work_mem": { "type": "string" },
- "checkpoint_timeout": { "type": "integer", "minimum": 30, "maximum": 86400 },
+ "checkpoint_timeout": {
+ "type": "string",
+ "description": "Default unit: s",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
+ },
"hot_standby_feedback": { "type": "boolean" }
}
},
@@ -7348,12 +7363,24 @@
"max_worker_processes": { "type": "integer", "minimum": 0, "maximum": 262143 },
"session_replication_role": { "type": "string", "enum": ["origin", "replica", "local"] },
"shared_buffers": { "type": "string" },
- "statement_timeout": { "type": "string" },
+ "statement_timeout": {
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
+ },
"track_commit_timestamp": { "type": "boolean" },
"wal_keep_size": { "type": "string" },
- "wal_sender_timeout": { "type": "string" },
+ "wal_sender_timeout": {
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
+ },
"work_mem": { "type": "string" },
- "checkpoint_timeout": { "type": "integer", "minimum": 30, "maximum": 86400 },
+ "checkpoint_timeout": {
+ "type": "string",
+ "description": "Default unit: s",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
+ },
"hot_standby_feedback": { "type": "boolean" },
"restart_database": { "type": "boolean" }
},
diff --git a/apps/docs/spec/common-client-libs-sections.json b/apps/docs/spec/common-client-libs-sections.json
index 5822f2d7e799b..8fa1069307b01 100644
--- a/apps/docs/spec/common-client-libs-sections.json
+++ b/apps/docs/spec/common-client-libs-sections.json
@@ -881,130 +881,440 @@
"title": "Storage",
"items": [
{
- "id": "create-bucket",
- "title": "Create a bucket",
- "slug": "storage-createbucket",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "get-bucket",
- "title": "Retrieve a bucket",
- "slug": "storage-getbucket",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "list-buckets",
- "title": "List all buckets",
- "slug": "storage-listbuckets",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "update-bucket",
- "title": "Update a bucket",
- "slug": "storage-updatebucket",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "delete-bucket",
- "title": "Delete a bucket",
- "slug": "storage-deletebucket",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "empty-bucket",
- "title": "Empty a bucket",
- "slug": "storage-emptybucket",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "from-upload",
- "title": "Upload a file",
- "slug": "storage-from-upload",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "from-download",
- "title": "Download a file",
- "slug": "storage-from-download",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "from-list",
- "title": "List all files in a bucket",
- "slug": "storage-from-list",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "from-update",
- "title": "Replace an existing file",
- "slug": "storage-from-update",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "from-move",
- "title": "Move an existing file",
- "slug": "storage-from-move",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "from-copy",
- "title": "Copy an existing file",
- "slug": "storage-from-copy",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "from-remove",
- "title": "Delete files in a bucket",
- "slug": "storage-from-remove",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "from-create-signed-url",
- "title": "Create a signed URL",
- "slug": "storage-from-createsignedurl",
- "product": "storage",
- "type": "function"
- },
- {
- "id": "from-create-signed-urls",
- "title": "Create signed URLs",
- "slug": "storage-from-createsignedurls",
- "product": "storage",
- "type": "function"
+ "id": "storageclient-constructor",
+ "title": "Create a storage client",
+ "slug": "storageclient-constructor",
+ "type": "function",
+ "product": "storage"
},
{
- "id": "from-create-signed-upload-url",
- "title": "Create signed upload URL",
- "slug": "storage-from-createsigneduploadurl",
+ "id": "file-buckets",
+ "isFunc": false,
+ "title": "File Buckets",
+ "slug": "file-buckets",
"product": "storage",
- "type": "function"
+ "type": "function",
+ "items": [
+ {
+ "id": "storageclient-from",
+ "title": "Access a storage bucket",
+ "slug": "storageclient-from",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "list-buckets",
+ "title": "List all buckets",
+ "slug": "storage-listbuckets",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "get-bucket",
+ "title": "Retrieve a bucket",
+ "slug": "storage-getbucket",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "create-bucket",
+ "title": "Create a bucket",
+ "slug": "storage-createbucket",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "empty-bucket",
+ "title": "Empty a bucket",
+ "slug": "storage-emptybucket",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "update-bucket",
+ "title": "Update a bucket",
+ "slug": "storage-updatebucket",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "delete-bucket",
+ "title": "Delete a bucket",
+ "slug": "storage-deletebucket",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-upload",
+ "title": "Upload a file",
+ "slug": "storage-from-upload",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-update",
+ "title": "Replace an existing file",
+ "slug": "storage-from-update",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-move",
+ "title": "Move an existing file",
+ "slug": "storage-from-move",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-copy",
+ "title": "Copy an existing file",
+ "slug": "storage-from-copy",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-create-signed-url",
+ "title": "Create a signed URL",
+ "slug": "storage-from-createsignedurl",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-create-signed-urls",
+ "title": "Create signed URLs",
+ "slug": "storage-from-createsignedurls",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-create-signed-upload-url",
+ "title": "Create signed upload URL",
+ "slug": "storage-from-createsigneduploadurl",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-upload-to-signed-url",
+ "title": "Upload to a signed URL",
+ "slug": "storage-from-uploadtosignedurl",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-get-public-url",
+ "title": "Retrieve public URL",
+ "slug": "storage-from-getpublicurl",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-download",
+ "title": "Download a file",
+ "slug": "storage-from-download",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-remove",
+ "title": "Delete files in a bucket",
+ "slug": "storage-from-remove",
+ "product": "storage",
+ "type": "function"
+ },
+ {
+ "id": "from-list",
+ "title": "List all files in a bucket",
+ "slug": "storage-from-list",
+ "product": "storage",
+ "type": "function"
+ }
+ ]
},
{
- "id": "from-upload-to-signed-url",
- "title": "Upload to a signed URL",
- "slug": "storage-from-uploadtosignedurl",
+ "id": "analytics-buckets",
+ "isFunc": false,
+ "title": "Analytics Buckets",
+ "slug": "analytics-buckets",
"product": "storage",
- "type": "function"
+ "type": "function",
+ "items": [
+ {
+ "id": "storageanalyticsclient-createbucket",
+ "title": "Create a new analytics bucket",
+ "slug": "storageanalyticsclient-createbucket",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "storageanalyticsclient-listbuckets",
+ "title": "List analytics buckets",
+ "slug": "storageanalyticsclient-listbuckets",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "storageanalyticsclient-deletebucket",
+ "title": "Delete an analytics bucket",
+ "slug": "storageanalyticsclient-deletebucket",
+ "type": "function",
+ "product": "storage"
+ }
+ ]
},
{
- "id": "from-get-public-url",
- "title": "Retrieve public URL",
- "slug": "storage-from-getpublicurl",
+ "id": "vector-buckets",
+ "isFunc": false,
+ "title": "Vector Buckets",
+ "slug": "vector-buckets",
"product": "storage",
- "type": "function"
+ "type": "function",
+ "items": [
+ {
+ "id": "storagevectorsclient-constructor",
+ "title": "Create a vectors client",
+ "slug": "storagevectorsclient-constructor",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "storagevectorsclient-from",
+ "title": "Access a vector bucket",
+ "slug": "storagevectorsclient-from",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketapi-constructor",
+ "title": "Create a vector bucket API instance",
+ "slug": "vectorbucketapi-constructor",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketapi-createbucket",
+ "title": "Create a vector bucket",
+ "slug": "vectorbucketapi-createbucket",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketapi-deletebucket",
+ "title": "Delete a vector bucket",
+ "slug": "vectorbucketapi-deletebucket",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketapi-getbucket",
+ "title": "Retrieve a vector bucket",
+ "slug": "vectorbucketapi-getbucket",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketapi-listbuckets",
+ "title": "List all vector buckets",
+ "slug": "vectorbucketapi-listbuckets",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketapi-throwonerror",
+ "title": "Enable error throwing",
+ "slug": "vectorbucketapi-throwonerror",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketscope-constructor",
+ "title": "Create a vector bucket scope",
+ "slug": "vectorbucketscope-constructor",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketscope-createindex",
+ "title": "Create a vector index",
+ "slug": "vectorbucketscope-createindex",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketscope-deleteindex",
+ "title": "Delete a vector index",
+ "slug": "vectorbucketscope-deleteindex",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketscope-getindex",
+ "title": "Retrieve a vector index",
+ "slug": "vectorbucketscope-getindex",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorbucketscope-listindexes",
+ "title": "List all vector indexes",
+ "slug": "vectorbucketscope-listindexes",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vector-data",
+ "isFunc": false,
+ "title": "Vector Data",
+ "slug": "vector-data",
+ "product": "storage",
+ "type": "function",
+ "items": [
+ {
+ "id": "vectordataapi-constructor",
+ "title": "Create a vector data API instance",
+ "slug": "vectordataapi-constructor",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectordataapi-deletevectors",
+ "title": "Delete vectors",
+ "slug": "vectordataapi-deletevectors",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectordataapi-getvectors",
+ "title": "Retrieve vectors",
+ "slug": "vectordataapi-getvectors",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectordataapi-listvectors",
+ "title": "List all vectors",
+ "slug": "vectordataapi-listvectors",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectordataapi-putvectors",
+ "title": "Insert or update vectors",
+ "slug": "vectordataapi-putvectors",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectordataapi-queryvectors",
+ "title": "Query vectors",
+ "slug": "vectordataapi-queryvectors",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectordataapi-throwonerror",
+ "title": "Enable error throwing",
+ "slug": "vectordataapi-throwonerror",
+ "type": "function",
+ "product": "storage"
+ }
+ ]
+ },
+ {
+ "id": "vector-index",
+ "isFunc": false,
+ "title": "Vector Index",
+ "slug": "vector-index",
+ "product": "storage",
+ "type": "function",
+ "items": [
+ {
+ "id": "vectorindexapi-constructor",
+ "title": "Create a vector index API instance",
+ "slug": "vectorindexapi-constructor",
+ "type": "function",
+ "product": "storage"
+ },
+
+ {
+ "id": "vectorindexapi-createindex",
+ "title": "Create an index",
+ "slug": "vectorindexapi-createindex",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorindexapi-deleteindex",
+ "title": "Delete an index",
+ "slug": "vectorindexapi-deleteindex",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorindexapi-getindex",
+ "title": "Retrieve an index",
+ "slug": "vectorindexapi-getindex",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorindexapi-listindexes",
+ "title": "List all indexes",
+ "slug": "vectorindexapi-listindexes",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorindexapi-throwonerror",
+ "title": "Enable error throwing",
+ "slug": "vectorindexapi-throwonerror",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorindexscope-constructor",
+ "title": "Create a vector index scope",
+ "slug": "vectorindexscope-constructor",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorindexscope-deletevectors",
+ "title": "Delete vectors from index",
+ "slug": "vectorindexscope-deletevectors",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorindexscope-getvectors",
+ "title": "Retrieve vectors from index",
+ "slug": "vectorindexscope-getvectors",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorindexscope-listvectors",
+ "title": "List vectors in index",
+ "slug": "vectorindexscope-listvectors",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorindexscope-putvectors",
+ "title": "Add vectors to index",
+ "slug": "vectorindexscope-putvectors",
+ "type": "function",
+ "product": "storage"
+ },
+ {
+ "id": "vectorindexscope-queryvectors",
+ "title": "Search vectors in index",
+ "slug": "vectorindexscope-queryvectors",
+ "type": "function",
+ "product": "storage"
+ }
+ ]
+ }
+ ]
}
]
},
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/combined.json b/apps/docs/spec/enrichments/tsdoc_v2/combined.json
index 4a8ad9cc20fa2..906b07445671a 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/combined.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/combined.json
@@ -301,14 +301,14 @@
]
},
{
- "id": 2147,
+ "id": 2164,
"name": "REALTIME_LISTEN_TYPES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2148,
+ "id": 2165,
"name": "BROADCAST",
"variant": "declaration",
"kind": 16,
@@ -326,7 +326,7 @@
}
},
{
- "id": 2150,
+ "id": 2167,
"name": "POSTGRES_CHANGES",
"variant": "declaration",
"kind": 16,
@@ -344,7 +344,7 @@
}
},
{
- "id": 2149,
+ "id": 2166,
"name": "PRESENCE",
"variant": "declaration",
"kind": 16,
@@ -362,7 +362,7 @@
}
},
{
- "id": 2151,
+ "id": 2168,
"name": "SYSTEM",
"variant": "declaration",
"kind": 16,
@@ -383,7 +383,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2148, 2150, 2149, 2151]
+ "children": [2165, 2167, 2166, 2168]
}
],
"sources": [
@@ -395,14 +395,14 @@
]
},
{
- "id": 2152,
+ "id": 2169,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2153,
+ "id": 2170,
"name": "ALL",
"variant": "declaration",
"kind": 16,
@@ -420,7 +420,7 @@
}
},
{
- "id": 2156,
+ "id": 2173,
"name": "DELETE",
"variant": "declaration",
"kind": 16,
@@ -438,7 +438,7 @@
}
},
{
- "id": 2154,
+ "id": 2171,
"name": "INSERT",
"variant": "declaration",
"kind": 16,
@@ -456,7 +456,7 @@
}
},
{
- "id": 2155,
+ "id": 2172,
"name": "UPDATE",
"variant": "declaration",
"kind": 16,
@@ -477,7 +477,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2153, 2156, 2154, 2155]
+ "children": [2170, 2173, 2171, 2172]
}
],
"sources": [
@@ -489,14 +489,14 @@
]
},
{
- "id": 2157,
+ "id": 2174,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2159,
+ "id": 2176,
"name": "JOIN",
"variant": "declaration",
"kind": 16,
@@ -514,7 +514,7 @@
}
},
{
- "id": 2160,
+ "id": 2177,
"name": "LEAVE",
"variant": "declaration",
"kind": 16,
@@ -532,7 +532,7 @@
}
},
{
- "id": 2158,
+ "id": 2175,
"name": "SYNC",
"variant": "declaration",
"kind": 16,
@@ -553,7 +553,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2159, 2160, 2158]
+ "children": [2176, 2177, 2175]
}
],
"sources": [
@@ -565,14 +565,14 @@
]
},
{
- "id": 2161,
+ "id": 2178,
"name": "REALTIME_SUBSCRIBE_STATES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2165,
+ "id": 2182,
"name": "CHANNEL_ERROR",
"variant": "declaration",
"kind": 16,
@@ -590,7 +590,7 @@
}
},
{
- "id": 2164,
+ "id": 2181,
"name": "CLOSED",
"variant": "declaration",
"kind": 16,
@@ -608,7 +608,7 @@
}
},
{
- "id": 2162,
+ "id": 2179,
"name": "SUBSCRIBED",
"variant": "declaration",
"kind": 16,
@@ -626,7 +626,7 @@
}
},
{
- "id": 2163,
+ "id": 2180,
"name": "TIMED_OUT",
"variant": "declaration",
"kind": 16,
@@ -647,7 +647,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2165, 2164, 2162, 2163]
+ "children": [2182, 2181, 2179, 2180]
}
],
"sources": [
@@ -659,7 +659,7 @@
]
},
{
- "id": 1461,
+ "id": 1478,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -685,7 +685,7 @@
},
"children": [
{
- "id": 1462,
+ "id": 1479,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -699,7 +699,7 @@
],
"signatures": [
{
- "id": 1463,
+ "id": 1480,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -713,7 +713,7 @@
],
"parameters": [
{
- "id": 1464,
+ "id": 1481,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -724,7 +724,7 @@
}
},
{
- "id": 1465,
+ "id": 1482,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -735,7 +735,7 @@
}
},
{
- "id": 1466,
+ "id": 1483,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -757,25 +757,25 @@
],
"type": {
"type": "reference",
- "target": 1461,
+ "target": 1478,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1453,
+ "target": 1470,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1452,
+ "target": 1469,
"name": "AuthError.constructor"
}
},
{
- "id": 1470,
+ "id": 1487,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -796,12 +796,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1460,
+ "target": 1477,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1468,
+ "id": 1485,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -858,7 +858,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1469,
+ "id": 1486,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -871,12 +871,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1457,
+ "target": 1474,
"name": "AuthError.code"
}
},
{
- "id": 1467,
+ "id": 1484,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -902,7 +902,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1459,
+ "target": 1476,
"name": "AuthError.status"
}
}
@@ -910,11 +910,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1462]
+ "children": [1479]
},
{
"title": "Properties",
- "children": [1470, 1468, 1467]
+ "children": [1487, 1485, 1484]
}
],
"sources": [
@@ -927,14 +927,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1451,
+ "id": 1468,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -960,7 +960,7 @@
},
"children": [
{
- "id": 1452,
+ "id": 1469,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -974,7 +974,7 @@
],
"signatures": [
{
- "id": 1453,
+ "id": 1470,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -988,7 +988,7 @@
],
"parameters": [
{
- "id": 1454,
+ "id": 1471,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -999,7 +999,7 @@
}
},
{
- "id": 1455,
+ "id": 1472,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -1012,7 +1012,7 @@
}
},
{
- "id": 1456,
+ "id": 1473,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -1027,7 +1027,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -1045,7 +1045,7 @@
}
},
{
- "id": 1460,
+ "id": 1477,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1065,7 +1065,7 @@
}
},
{
- "id": 1457,
+ "id": 1474,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1120,7 +1120,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1458,
+ "id": 1475,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1133,7 +1133,7 @@
}
},
{
- "id": 1459,
+ "id": 1476,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1171,11 +1171,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1452]
+ "children": [1469]
},
{
"title": "Properties",
- "children": [1460, 1457, 1459]
+ "children": [1477, 1474, 1476]
}
],
"sources": [
@@ -1199,23 +1199,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1461,
+ "target": 1478,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1471,
+ "target": 1488,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError"
}
]
},
{
- "id": 1518,
+ "id": 1535,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -1241,7 +1241,7 @@
},
"children": [
{
- "id": 1519,
+ "id": 1536,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1255,7 +1255,7 @@
],
"signatures": [
{
- "id": 1520,
+ "id": 1537,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -1269,7 +1269,7 @@
],
"parameters": [
{
- "id": 1521,
+ "id": 1538,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1280,7 +1280,7 @@
}
},
{
- "id": 1522,
+ "id": 1539,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -1297,14 +1297,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1523,
+ "id": 1540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1525,
+ "id": 1542,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1322,7 +1322,7 @@
}
},
{
- "id": 1524,
+ "id": 1541,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1343,7 +1343,7 @@
"groups": [
{
"title": "Properties",
- "children": [1525, 1524]
+ "children": [1542, 1541]
}
],
"sources": [
@@ -1361,25 +1361,25 @@
],
"type": {
"type": "reference",
- "target": 1518,
+ "target": 1535,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1544,
+ "id": 1561,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1400,12 +1400,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1542,
+ "id": 1559,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1462,7 +1462,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1543,
+ "id": 1560,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1475,12 +1475,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1526,
+ "id": 1543,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1502,14 +1502,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1527,
+ "id": 1544,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1529,
+ "id": 1546,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1527,7 +1527,7 @@
}
},
{
- "id": 1528,
+ "id": 1545,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1548,7 +1548,7 @@
"groups": [
{
"title": "Properties",
- "children": [1529, 1528]
+ "children": [1546, 1545]
}
],
"sources": [
@@ -1564,7 +1564,7 @@
}
},
{
- "id": 1540,
+ "id": 1557,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1584,12 +1584,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1541,
+ "id": 1558,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1617,12 +1617,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
},
{
- "id": 1530,
+ "id": 1547,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -1636,7 +1636,7 @@
],
"signatures": [
{
- "id": 1531,
+ "id": 1548,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -1651,14 +1651,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1532,
+ "id": 1549,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1536,
+ "id": 1553,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1680,14 +1680,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1537,
+ "id": 1554,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1539,
+ "id": 1556,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1705,7 +1705,7 @@
}
},
{
- "id": 1538,
+ "id": 1555,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1726,7 +1726,7 @@
"groups": [
{
"title": "Properties",
- "children": [1539, 1538]
+ "children": [1556, 1555]
}
],
"sources": [
@@ -1742,7 +1742,7 @@
}
},
{
- "id": 1534,
+ "id": 1551,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -1760,7 +1760,7 @@
}
},
{
- "id": 1533,
+ "id": 1550,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1778,7 +1778,7 @@
}
},
{
- "id": 1535,
+ "id": 1552,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1799,7 +1799,7 @@
"groups": [
{
"title": "Properties",
- "children": [1536, 1534, 1533, 1535]
+ "children": [1553, 1551, 1550, 1552]
}
],
"sources": [
@@ -1818,15 +1818,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1519]
+ "children": [1536]
},
{
"title": "Properties",
- "children": [1544, 1542, 1526, 1540, 1541]
+ "children": [1561, 1559, 1543, 1557, 1558]
},
{
"title": "Methods",
- "children": [1530]
+ "children": [1547]
}
],
"sources": [
@@ -1839,14 +1839,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1509,
+ "id": 1526,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -1872,7 +1872,7 @@
},
"children": [
{
- "id": 1510,
+ "id": 1527,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1886,7 +1886,7 @@
],
"signatures": [
{
- "id": 1511,
+ "id": 1528,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -1900,7 +1900,7 @@
],
"parameters": [
{
- "id": 1512,
+ "id": 1529,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1913,25 +1913,25 @@
],
"type": {
"type": "reference",
- "target": 1509,
+ "target": 1526,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1517,
+ "id": 1534,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1952,12 +1952,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1515,
+ "id": 1532,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2014,7 +2014,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1516,
+ "id": 1533,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2027,12 +2027,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1513,
+ "id": 1530,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2052,12 +2052,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1514,
+ "id": 1531,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2085,7 +2085,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -2093,11 +2093,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1510]
+ "children": [1527]
},
{
"title": "Properties",
- "children": [1517, 1515, 1513, 1514]
+ "children": [1534, 1532, 1530, 1531]
}
],
"sources": [
@@ -2110,14 +2110,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1594,
+ "id": 1611,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -2143,7 +2143,7 @@
},
"children": [
{
- "id": 1595,
+ "id": 1612,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2157,7 +2157,7 @@
],
"signatures": [
{
- "id": 1596,
+ "id": 1613,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -2171,7 +2171,7 @@
],
"parameters": [
{
- "id": 1597,
+ "id": 1614,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2184,25 +2184,25 @@
],
"type": {
"type": "reference",
- "target": 1594,
+ "target": 1611,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1602,
+ "id": 1619,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2223,12 +2223,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1600,
+ "id": 1617,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2285,7 +2285,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1601,
+ "id": 1618,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2298,12 +2298,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1598,
+ "id": 1615,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2323,12 +2323,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1599,
+ "id": 1616,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2356,7 +2356,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -2364,11 +2364,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1595]
+ "children": [1612]
},
{
"title": "Properties",
- "children": [1602, 1600, 1598, 1599]
+ "children": [1619, 1617, 1615, 1616]
}
],
"sources": [
@@ -2381,14 +2381,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1501,
+ "id": 1518,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -2414,7 +2414,7 @@
},
"children": [
{
- "id": 1502,
+ "id": 1519,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2428,7 +2428,7 @@
],
"signatures": [
{
- "id": 1503,
+ "id": 1520,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -2442,25 +2442,25 @@
],
"type": {
"type": "reference",
- "target": 1501,
+ "target": 1518,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1508,
+ "id": 1525,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2481,12 +2481,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1506,
+ "id": 1523,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2543,7 +2543,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1507,
+ "id": 1524,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2556,12 +2556,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1504,
+ "id": 1521,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2581,12 +2581,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1505,
+ "id": 1522,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2614,7 +2614,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -2622,11 +2622,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1502]
+ "children": [1519]
},
{
"title": "Properties",
- "children": [1508, 1506, 1504, 1505]
+ "children": [1525, 1523, 1521, 1522]
}
],
"sources": [
@@ -2639,14 +2639,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1545,
+ "id": 1562,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -2672,7 +2672,7 @@
},
"children": [
{
- "id": 1546,
+ "id": 1563,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2686,7 +2686,7 @@
],
"signatures": [
{
- "id": 1547,
+ "id": 1564,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -2700,7 +2700,7 @@
],
"parameters": [
{
- "id": 1548,
+ "id": 1565,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2711,7 +2711,7 @@
}
},
{
- "id": 1549,
+ "id": 1566,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -2728,14 +2728,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1550,
+ "id": 1567,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1552,
+ "id": 1569,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2753,7 +2753,7 @@
}
},
{
- "id": 1551,
+ "id": 1568,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2774,7 +2774,7 @@
"groups": [
{
"title": "Properties",
- "children": [1552, 1551]
+ "children": [1569, 1568]
}
],
"sources": [
@@ -2792,25 +2792,25 @@
],
"type": {
"type": "reference",
- "target": 1545,
+ "target": 1562,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1571,
+ "id": 1588,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2831,12 +2831,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1569,
+ "id": 1586,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2893,7 +2893,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1570,
+ "id": 1587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2906,12 +2906,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1553,
+ "id": 1570,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2933,14 +2933,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1554,
+ "id": 1571,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1556,
+ "id": 1573,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2958,7 +2958,7 @@
}
},
{
- "id": 1555,
+ "id": 1572,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2979,7 +2979,7 @@
"groups": [
{
"title": "Properties",
- "children": [1556, 1555]
+ "children": [1573, 1572]
}
],
"sources": [
@@ -2995,7 +2995,7 @@
}
},
{
- "id": 1567,
+ "id": 1584,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3015,12 +3015,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1568,
+ "id": 1585,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3048,12 +3048,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
},
{
- "id": 1557,
+ "id": 1574,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -3067,7 +3067,7 @@
],
"signatures": [
{
- "id": 1558,
+ "id": 1575,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -3082,14 +3082,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1559,
+ "id": 1576,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1563,
+ "id": 1580,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -3111,14 +3111,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1564,
+ "id": 1581,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1566,
+ "id": 1583,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3136,7 +3136,7 @@
}
},
{
- "id": 1565,
+ "id": 1582,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3157,7 +3157,7 @@
"groups": [
{
"title": "Properties",
- "children": [1566, 1565]
+ "children": [1583, 1582]
}
],
"sources": [
@@ -3173,7 +3173,7 @@
}
},
{
- "id": 1561,
+ "id": 1578,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -3191,7 +3191,7 @@
}
},
{
- "id": 1560,
+ "id": 1577,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3209,7 +3209,7 @@
}
},
{
- "id": 1562,
+ "id": 1579,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3230,7 +3230,7 @@
"groups": [
{
"title": "Properties",
- "children": [1563, 1561, 1560, 1562]
+ "children": [1580, 1578, 1577, 1579]
}
],
"sources": [
@@ -3249,15 +3249,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1546]
+ "children": [1563]
},
{
"title": "Properties",
- "children": [1571, 1569, 1553, 1567, 1568]
+ "children": [1588, 1586, 1570, 1584, 1585]
},
{
"title": "Methods",
- "children": [1557]
+ "children": [1574]
}
],
"sources": [
@@ -3270,14 +3270,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1572,
+ "id": 1589,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -3303,7 +3303,7 @@
},
"children": [
{
- "id": 1573,
+ "id": 1590,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3317,7 +3317,7 @@
],
"signatures": [
{
- "id": 1574,
+ "id": 1591,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -3331,7 +3331,7 @@
],
"parameters": [
{
- "id": 1575,
+ "id": 1592,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3342,7 +3342,7 @@
}
},
{
- "id": 1576,
+ "id": 1593,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3355,25 +3355,25 @@
],
"type": {
"type": "reference",
- "target": 1572,
+ "target": 1589,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1581,
+ "id": 1598,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3394,12 +3394,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1579,
+ "id": 1596,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3456,7 +3456,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1580,
+ "id": 1597,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3469,12 +3469,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1577,
+ "id": 1594,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3494,12 +3494,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1578,
+ "id": 1595,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3527,7 +3527,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -3535,11 +3535,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1573]
+ "children": [1590]
},
{
"title": "Properties",
- "children": [1581, 1579, 1577, 1578]
+ "children": [1598, 1596, 1594, 1595]
}
],
"sources": [
@@ -3552,14 +3552,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1493,
+ "id": 1510,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -3585,7 +3585,7 @@
},
"children": [
{
- "id": 1494,
+ "id": 1511,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3599,7 +3599,7 @@
],
"signatures": [
{
- "id": 1495,
+ "id": 1512,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -3613,25 +3613,25 @@
],
"type": {
"type": "reference",
- "target": 1493,
+ "target": 1510,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1500,
+ "id": 1517,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3652,12 +3652,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1498,
+ "id": 1515,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3714,7 +3714,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1499,
+ "id": 1516,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3727,12 +3727,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1496,
+ "id": 1513,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3752,12 +3752,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1497,
+ "id": 1514,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3785,7 +3785,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -3793,11 +3793,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1494]
+ "children": [1511]
},
{
"title": "Properties",
- "children": [1500, 1498, 1496, 1497]
+ "children": [1517, 1515, 1513, 1514]
}
],
"sources": [
@@ -3810,14 +3810,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1471,
+ "id": 1488,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -3843,7 +3843,7 @@
},
"children": [
{
- "id": 1472,
+ "id": 1489,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3857,7 +3857,7 @@
],
"signatures": [
{
- "id": 1473,
+ "id": 1490,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -3871,7 +3871,7 @@
],
"parameters": [
{
- "id": 1474,
+ "id": 1491,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3882,7 +3882,7 @@
}
},
{
- "id": 1475,
+ "id": 1492,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -3895,25 +3895,25 @@
],
"type": {
"type": "reference",
- "target": 1471,
+ "target": 1488,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1453,
+ "target": 1470,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1452,
+ "target": 1469,
"name": "AuthError.constructor"
}
},
{
- "id": 1480,
+ "id": 1497,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3934,12 +3934,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1460,
+ "target": 1477,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1477,
+ "id": 1494,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3996,7 +3996,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1478,
+ "id": 1495,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4009,12 +4009,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1457,
+ "target": 1474,
"name": "AuthError.code"
}
},
{
- "id": 1476,
+ "id": 1493,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -4032,7 +4032,7 @@
}
},
{
- "id": 1479,
+ "id": 1496,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4069,7 +4069,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1459,
+ "target": 1476,
"name": "AuthError.status"
}
}
@@ -4077,11 +4077,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1472]
+ "children": [1489]
},
{
"title": "Properties",
- "children": [1480, 1477, 1476, 1479]
+ "children": [1497, 1494, 1493, 1496]
}
],
"sources": [
@@ -4094,14 +4094,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1582,
+ "id": 1599,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -4127,7 +4127,7 @@
},
"children": [
{
- "id": 1583,
+ "id": 1600,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4141,7 +4141,7 @@
],
"signatures": [
{
- "id": 1584,
+ "id": 1601,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -4155,7 +4155,7 @@
],
"parameters": [
{
- "id": 1585,
+ "id": 1602,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4166,7 +4166,7 @@
}
},
{
- "id": 1586,
+ "id": 1603,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4177,7 +4177,7 @@
}
},
{
- "id": 1587,
+ "id": 1604,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -4206,25 +4206,25 @@
],
"type": {
"type": "reference",
- "target": 1582,
+ "target": 1599,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1593,
+ "id": 1610,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4245,12 +4245,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1591,
+ "id": 1608,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4307,7 +4307,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1592,
+ "id": 1609,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4320,12 +4320,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1589,
+ "id": 1606,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4345,12 +4345,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1588,
+ "id": 1605,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -4392,7 +4392,7 @@
}
},
{
- "id": 1590,
+ "id": 1607,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4420,7 +4420,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -4428,11 +4428,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1583]
+ "children": [1600]
},
{
"title": "Properties",
- "children": [1593, 1591, 1589, 1588, 1590]
+ "children": [1610, 1608, 1606, 1605, 1607]
}
],
"sources": [
@@ -4445,14 +4445,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1481,
+ "id": 1498,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -4478,7 +4478,7 @@
},
"children": [
{
- "id": 1482,
+ "id": 1499,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4492,7 +4492,7 @@
],
"signatures": [
{
- "id": 1483,
+ "id": 1500,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -4506,7 +4506,7 @@
],
"parameters": [
{
- "id": 1484,
+ "id": 1501,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4517,7 +4517,7 @@
}
},
{
- "id": 1485,
+ "id": 1502,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -4528,7 +4528,7 @@
}
},
{
- "id": 1486,
+ "id": 1503,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4539,7 +4539,7 @@
}
},
{
- "id": 1487,
+ "id": 1504,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -4561,25 +4561,25 @@
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1453,
+ "target": 1470,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1452,
+ "target": 1469,
"name": "AuthError.constructor"
}
},
{
- "id": 1492,
+ "id": 1509,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4600,12 +4600,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1460,
+ "target": 1477,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1490,
+ "id": 1507,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4662,7 +4662,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1491,
+ "id": 1508,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4675,12 +4675,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1457,
+ "target": 1474,
"name": "AuthError.code"
}
},
{
- "id": 1488,
+ "id": 1505,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4703,7 +4703,7 @@
}
},
{
- "id": 1489,
+ "id": 1506,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4729,7 +4729,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1459,
+ "target": 1476,
"name": "AuthError.status"
}
}
@@ -4737,11 +4737,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1482]
+ "children": [1499]
},
{
"title": "Properties",
- "children": [1492, 1490, 1488, 1489]
+ "children": [1509, 1507, 1505, 1506]
}
],
"sources": [
@@ -4754,7 +4754,7 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -4762,42 +4762,42 @@
"extendedBy": [
{
"type": "reference",
- "target": 1493,
+ "target": 1510,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1501,
+ "target": 1518,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1509,
+ "target": 1526,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1518,
+ "target": 1535,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1545,
+ "target": 1562,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1572,
+ "target": 1589,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1582,
+ "target": 1599,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1594,
+ "target": 1611,
"name": "AuthInvalidJwtError"
}
]
@@ -6115,7 +6115,7 @@
],
"type": {
"type": "reference",
- "target": 1248,
+ "target": 1250,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -6143,7 +6143,7 @@
],
"type": {
"type": "reference",
- "target": 1374,
+ "target": 1376,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -6220,7 +6220,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 848,
+ "target": 850,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -6235,7 +6235,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6348,7 +6348,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6403,7 +6403,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1058,
+ "target": 1060,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -6418,7 +6418,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1059,
+ "target": 1061,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -6502,7 +6502,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6684,7 +6684,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6773,7 +6773,7 @@
},
"type": {
"type": "reference",
- "target": 1269,
+ "target": 1271,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -6882,7 +6882,7 @@
},
{
"type": "reference",
- "target": 1262,
+ "target": 1264,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -7003,7 +7003,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7179,7 +7179,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7280,7 +7280,7 @@
},
"type": {
"type": "reference",
- "target": 848,
+ "target": 850,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -7295,7 +7295,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7391,7 +7391,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 712,
+ "target": 714,
"name": "GoTrueClientOptions",
"package": "@supabase/auth-js"
}
@@ -7798,7 +7798,7 @@
],
"type": {
"type": "reference",
- "target": 907,
+ "target": 909,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -7936,7 +7936,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1258,
+ "target": 1260,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -7964,7 +7964,7 @@
],
"type": {
"type": "reference",
- "target": 703,
+ "target": 705,
"name": "LockFunc",
"package": "@supabase/auth-js"
}
@@ -8189,7 +8189,7 @@
],
"type": {
"type": "reference",
- "target": 1118,
+ "target": 1120,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -8217,7 +8217,7 @@
],
"type": {
"type": "reference",
- "target": 1417,
+ "target": 1427,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -8307,7 +8307,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1261,
+ "target": 1263,
"name": "CallRefreshTokenResult",
"package": "@supabase/auth-js"
}
@@ -8355,7 +8355,7 @@
},
{
"type": "reference",
- "target": 861,
+ "target": 863,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -8381,7 +8381,7 @@
],
"type": {
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -8502,7 +8502,7 @@
},
{
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -8649,7 +8649,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -8718,7 +8718,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -8910,7 +8910,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9029,7 +9029,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9080,7 +9080,7 @@
},
"type": {
"type": "reference",
- "target": 1273,
+ "target": 1275,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -9124,7 +9124,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9192,7 +9192,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 842,
+ "target": 844,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -9261,7 +9261,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -9329,7 +9329,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 776,
+ "target": 778,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -9341,7 +9341,7 @@
]
},
{
- "id": 651,
+ "id": 653,
"name": "getClaims",
"variant": "declaration",
"kind": 2048,
@@ -9349,13 +9349,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 572,
+ "line": 582,
"character": 4
}
],
"signatures": [
{
- "id": 652,
+ "id": 654,
"name": "getClaims",
"variant": "signature",
"kind": 4096,
@@ -9397,13 +9397,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 572,
+ "line": 582,
"character": 4
}
],
"parameters": [
{
- "id": 653,
+ "id": 655,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -9433,7 +9433,7 @@
}
},
{
- "id": 654,
+ "id": 656,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -9451,14 +9451,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 655,
+ "id": 657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 657,
+ "id": 659,
"name": "allowExpired",
"variant": "declaration",
"kind": 1024,
@@ -9492,7 +9492,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 578,
+ "line": 588,
"character": 8
}
],
@@ -9502,7 +9502,7 @@
}
},
{
- "id": 658,
+ "id": 660,
"name": "jwks",
"variant": "declaration",
"kind": 1024,
@@ -9520,21 +9520,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 580,
+ "line": 590,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 659,
+ "id": 661,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 660,
+ "id": 662,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -9542,7 +9542,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 581,
+ "line": 591,
"character": 12
}
],
@@ -9550,7 +9550,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9560,13 +9560,13 @@
"groups": [
{
"title": "Properties",
- "children": [660]
+ "children": [662]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 580,
+ "line": 590,
"character": 15
}
]
@@ -9574,7 +9574,7 @@
}
},
{
- "id": 656,
+ "id": 658,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -9598,7 +9598,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 576,
+ "line": 586,
"character": 8
}
],
@@ -9606,7 +9606,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9616,13 +9616,13 @@
"groups": [
{
"title": "Properties",
- "children": [657, 658, 656]
+ "children": [659, 660, 658]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 572,
+ "line": 582,
"character": 38
}
]
@@ -9643,14 +9643,14 @@
{
"type": "reflection",
"declaration": {
- "id": 661,
+ "id": 663,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 662,
+ "id": 664,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -9658,21 +9658,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 584,
+ "line": 594,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 663,
+ "id": 665,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 664,
+ "id": 666,
"name": "claims",
"variant": "declaration",
"kind": 1024,
@@ -9680,19 +9680,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 585,
+ "line": 595,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 1297,
+ "target": 1299,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
},
{
- "id": 665,
+ "id": 667,
"name": "header",
"variant": "declaration",
"kind": 1024,
@@ -9700,19 +9700,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 586,
+ "line": 596,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 1282,
+ "target": 1284,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
},
{
- "id": 666,
+ "id": 668,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -9720,7 +9720,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 587,
+ "line": 597,
"character": 12
}
],
@@ -9738,13 +9738,13 @@
"groups": [
{
"title": "Properties",
- "children": [664, 665, 666]
+ "children": [666, 667, 668]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 584,
+ "line": 594,
"character": 14
}
]
@@ -9752,7 +9752,7 @@
}
},
{
- "id": 667,
+ "id": 669,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -9760,7 +9760,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 589,
+ "line": 599,
"character": 8
}
],
@@ -9773,13 +9773,13 @@
"groups": [
{
"title": "Properties",
- "children": [662, 667]
+ "children": [664, 669]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 583,
+ "line": 593,
"character": 16
}
]
@@ -9788,14 +9788,14 @@
{
"type": "reflection",
"declaration": {
- "id": 668,
+ "id": 670,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 669,
+ "id": 671,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -9803,7 +9803,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 591,
+ "line": 601,
"character": 8
}
],
@@ -9813,7 +9813,7 @@
}
},
{
- "id": 670,
+ "id": 672,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -9821,13 +9821,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 592,
+ "line": 602,
"character": 8
}
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9836,13 +9836,13 @@
"groups": [
{
"title": "Properties",
- "children": [669, 670]
+ "children": [671, 672]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 590,
+ "line": 600,
"character": 8
}
]
@@ -9851,14 +9851,14 @@
{
"type": "reflection",
"declaration": {
- "id": 671,
+ "id": 673,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 672,
+ "id": 674,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -9866,7 +9866,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 594,
+ "line": 604,
"character": 8
}
],
@@ -9876,7 +9876,7 @@
}
},
{
- "id": 673,
+ "id": 675,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -9884,7 +9884,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 595,
+ "line": 605,
"character": 8
}
],
@@ -9897,13 +9897,13 @@
"groups": [
{
"title": "Properties",
- "children": [672, 673]
+ "children": [674, 675]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 593,
+ "line": 603,
"character": 8
}
]
@@ -10155,7 +10155,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10352,7 +10352,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10456,7 +10456,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 810,
+ "target": 812,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -10555,7 +10555,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10629,7 +10629,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1258,
+ "target": 1260,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -10731,7 +10731,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 908,
+ "target": 910,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -10746,7 +10746,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 785,
+ "target": 787,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -10785,7 +10785,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 920,
+ "target": 922,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -10800,7 +10800,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 776,
+ "target": 778,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -10904,7 +10904,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 702,
+ "target": 704,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -10988,7 +10988,7 @@
],
"type": {
"type": "reference",
- "target": 861,
+ "target": 863,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11120,7 +11120,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 702,
+ "target": 704,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -11215,7 +11215,7 @@
],
"type": {
"type": "reference",
- "target": 861,
+ "target": 863,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11300,7 +11300,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -11417,7 +11417,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -11472,7 +11472,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1004,
+ "target": 1006,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -11487,7 +11487,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 771,
+ "target": 773,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -11763,7 +11763,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11915,7 +11915,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -11983,7 +11983,7 @@
},
"type": {
"type": "reference",
- "target": 871,
+ "target": 873,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -11998,7 +11998,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12053,7 +12053,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 920,
+ "target": 922,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -12068,7 +12068,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 776,
+ "target": 778,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -12123,7 +12123,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 908,
+ "target": 910,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -12138,7 +12138,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 785,
+ "target": 787,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -12209,7 +12209,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 890,
+ "target": 892,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -12224,7 +12224,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 771,
+ "target": 773,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -12279,7 +12279,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 885,
+ "target": 887,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -12294,7 +12294,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 780,
+ "target": 782,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -12349,7 +12349,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1018,
+ "target": 1020,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -12364,7 +12364,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 800,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -12430,7 +12430,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 981,
+ "target": 983,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -12667,7 +12667,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12783,7 +12783,7 @@
},
"type": {
"type": "reference",
- "target": 1273,
+ "target": 1275,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -12827,7 +12827,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12921,7 +12921,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 877,
+ "target": 879,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -12936,7 +12936,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12977,7 +12977,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueClientOptions#autoRefreshToken",
- "target": 721
+ "target": 723
},
{
"kind": "text",
@@ -13121,7 +13121,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 810,
+ "target": 812,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -13246,7 +13246,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13320,7 +13320,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 842,
+ "target": 844,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -13389,7 +13389,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -13444,7 +13444,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 982,
+ "target": 984,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -13459,7 +13459,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -13490,7 +13490,7 @@
{
"title": "Methods",
"children": [
- 540, 529, 553, 517, 448, 651, 487, 507, 594, 433, 428, 604, 558, 481, 535, 484, 580,
+ 540, 529, 553, 517, 448, 653, 487, 507, 594, 433, 428, 604, 558, 481, 535, 484, 580,
523, 436, 469, 445, 472, 442, 478, 451, 548, 439, 632, 634, 611, 511, 475
]
}
@@ -13504,7 +13504,7 @@
]
},
{
- "id": 684,
+ "id": 686,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "declaration",
"kind": 128,
@@ -13530,7 +13530,7 @@
},
"children": [
{
- "id": 685,
+ "id": 687,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -13544,7 +13544,7 @@
],
"signatures": [
{
- "id": 686,
+ "id": 688,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "signature",
"kind": 16384,
@@ -13558,7 +13558,7 @@
],
"parameters": [
{
- "id": 687,
+ "id": 689,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -13571,7 +13571,7 @@
],
"type": {
"type": "reference",
- "target": 684,
+ "target": 686,
"name": "NavigatorLockAcquireTimeoutError",
"package": "@supabase/auth-js"
},
@@ -13589,7 +13589,7 @@
}
},
{
- "id": 688,
+ "id": 690,
"name": "isAcquireTimeout",
"variant": "declaration",
"kind": 1024,
@@ -13619,11 +13619,11 @@
"groups": [
{
"title": "Constructors",
- "children": [685]
+ "children": [687]
},
{
"title": "Properties",
- "children": [688]
+ "children": [690]
}
],
"sources": [
@@ -13918,7 +13918,7 @@
]
},
{
- "id": 1620,
+ "id": 1637,
"name": "RealtimeChannel",
"variant": "declaration",
"kind": 128,
@@ -13933,7 +13933,7 @@
},
"children": [
{
- "id": 1621,
+ "id": 1638,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -13947,7 +13947,7 @@
],
"signatures": [
{
- "id": 1622,
+ "id": 1639,
"name": "RealtimeChannel",
"variant": "signature",
"kind": 16384,
@@ -13980,7 +13980,7 @@
],
"parameters": [
{
- "id": 1623,
+ "id": 1640,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -13999,7 +13999,7 @@
}
},
{
- "id": 1624,
+ "id": 1641,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14013,7 +14013,7 @@
},
{
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -14021,14 +14021,14 @@
}
},
{
- "id": 1625,
+ "id": 1642,
"name": "socket",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14037,7 +14037,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14046,7 +14046,7 @@
]
},
{
- "id": 1629,
+ "id": 1646,
"name": "bindings",
"variant": "declaration",
"kind": 1024,
@@ -14061,7 +14061,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1630,
+ "id": 1647,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14075,7 +14075,7 @@
],
"indexSignatures": [
{
- "id": 1631,
+ "id": 1648,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14089,7 +14089,7 @@
],
"parameters": [
{
- "id": 1632,
+ "id": 1649,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14105,14 +14105,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 1633,
+ "id": 1650,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1639,
+ "id": 1656,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -14135,7 +14135,7 @@
}
},
{
- "id": 1635,
+ "id": 1652,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -14150,7 +14150,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1636,
+ "id": 1653,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14164,7 +14164,7 @@
],
"indexSignatures": [
{
- "id": 1637,
+ "id": 1654,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14178,7 +14178,7 @@
],
"parameters": [
{
- "id": 1638,
+ "id": 1655,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14199,7 +14199,7 @@
}
},
{
- "id": 1640,
+ "id": 1657,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -14219,7 +14219,7 @@
}
},
{
- "id": 1634,
+ "id": 1651,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -14240,7 +14240,7 @@
"groups": [
{
"title": "Properties",
- "children": [1639, 1635, 1640, 1634]
+ "children": [1656, 1652, 1657, 1651]
}
],
"sources": [
@@ -14259,7 +14259,7 @@
}
},
{
- "id": 1648,
+ "id": 1665,
"name": "broadcastEndpointURL",
"variant": "declaration",
"kind": 1024,
@@ -14277,7 +14277,7 @@
}
},
{
- "id": 1643,
+ "id": 1660,
"name": "joinedOnce",
"variant": "declaration",
"kind": 1024,
@@ -14295,7 +14295,7 @@
}
},
{
- "id": 1644,
+ "id": 1661,
"name": "joinPush",
"variant": "declaration",
"kind": 1024,
@@ -14319,7 +14319,7 @@
}
},
{
- "id": 1627,
+ "id": 1644,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -14333,13 +14333,13 @@
],
"type": {
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1647,
+ "id": 1664,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -14353,14 +14353,14 @@
],
"type": {
"type": "reference",
- "target": 1603,
+ "target": 1620,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1650,
+ "id": 1667,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -14378,7 +14378,7 @@
}
},
{
- "id": 1646,
+ "id": 1663,
"name": "pushBuffer",
"variant": "declaration",
"kind": 1024,
@@ -14405,7 +14405,7 @@
}
},
{
- "id": 1645,
+ "id": 1662,
"name": "rejoinTimer",
"variant": "declaration",
"kind": 1024,
@@ -14429,7 +14429,7 @@
}
},
{
- "id": 1628,
+ "id": 1645,
"name": "socket",
"variant": "declaration",
"kind": 1024,
@@ -14443,14 +14443,14 @@
],
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1642,
+ "id": 1659,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -14473,7 +14473,7 @@
}
},
{
- "id": 1649,
+ "id": 1666,
"name": "subTopic",
"variant": "declaration",
"kind": 1024,
@@ -14491,7 +14491,7 @@
}
},
{
- "id": 1641,
+ "id": 1658,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -14509,7 +14509,7 @@
}
},
{
- "id": 1626,
+ "id": 1643,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -14535,7 +14535,7 @@
}
},
{
- "id": 1877,
+ "id": 1894,
"name": "httpSend",
"variant": "declaration",
"kind": 2048,
@@ -14549,7 +14549,7 @@
],
"signatures": [
{
- "id": 1878,
+ "id": 1895,
"name": "httpSend",
"variant": "signature",
"kind": 4096,
@@ -14582,7 +14582,7 @@
],
"parameters": [
{
- "id": 1879,
+ "id": 1896,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -14601,7 +14601,7 @@
}
},
{
- "id": 1880,
+ "id": 1897,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -14620,7 +14620,7 @@
}
},
{
- "id": 1881,
+ "id": 1898,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -14638,14 +14638,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1882,
+ "id": 1899,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1883,
+ "id": 1900,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -14668,7 +14668,7 @@
"groups": [
{
"title": "Properties",
- "children": [1883]
+ "children": [1900]
}
],
"sources": [
@@ -14695,14 +14695,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1884,
+ "id": 1901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1885,
+ "id": 1902,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -14723,7 +14723,7 @@
"groups": [
{
"title": "Properties",
- "children": [1885]
+ "children": [1902]
}
],
"sources": [
@@ -14738,14 +14738,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1886,
+ "id": 1903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1889,
+ "id": 1906,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -14763,7 +14763,7 @@
}
},
{
- "id": 1888,
+ "id": 1905,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -14781,7 +14781,7 @@
}
},
{
- "id": 1887,
+ "id": 1904,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -14802,7 +14802,7 @@
"groups": [
{
"title": "Properties",
- "children": [1889, 1888, 1887]
+ "children": [1906, 1905, 1904]
}
],
"sources": [
@@ -14824,7 +14824,7 @@
]
},
{
- "id": 1682,
+ "id": 1699,
"name": "on",
"variant": "declaration",
"kind": 2048,
@@ -14903,7 +14903,7 @@
],
"signatures": [
{
- "id": 1683,
+ "id": 1700,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -14925,7 +14925,7 @@
],
"parameters": [
{
- "id": 1684,
+ "id": 1701,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -14936,7 +14936,7 @@
}
},
{
- "id": 1685,
+ "id": 1702,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -14944,14 +14944,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1686,
+ "id": 1703,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1687,
+ "id": 1704,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -14972,7 +14972,7 @@
"groups": [
{
"title": "Properties",
- "children": [1687]
+ "children": [1704]
}
],
"sources": [
@@ -14986,7 +14986,7 @@
}
},
{
- "id": 1688,
+ "id": 1705,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -14994,7 +14994,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1689,
+ "id": 1706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15008,7 +15008,7 @@
],
"signatures": [
{
- "id": 1690,
+ "id": 1707,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15032,14 +15032,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1691,
+ "id": 1708,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15061,7 +15061,7 @@
],
"typeParameters": [
{
- "id": 1692,
+ "id": 1709,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15069,7 +15069,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1693,
+ "id": 1710,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15083,7 +15083,7 @@
],
"indexSignatures": [
{
- "id": 1694,
+ "id": 1711,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15097,7 +15097,7 @@
],
"parameters": [
{
- "id": 1695,
+ "id": 1712,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15120,7 +15120,7 @@
],
"parameters": [
{
- "id": 1696,
+ "id": 1713,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15131,7 +15131,7 @@
}
},
{
- "id": 1697,
+ "id": 1714,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15139,14 +15139,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1698,
+ "id": 1715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1699,
+ "id": 1716,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15167,7 +15167,7 @@
"groups": [
{
"title": "Properties",
- "children": [1699]
+ "children": [1716]
}
],
"sources": [
@@ -15181,7 +15181,7 @@
}
},
{
- "id": 1700,
+ "id": 1717,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15189,7 +15189,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1701,
+ "id": 1718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15203,7 +15203,7 @@
],
"signatures": [
{
- "id": 1702,
+ "id": 1719,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15217,18 +15217,18 @@
],
"parameters": [
{
- "id": 1703,
+ "id": 1720,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2117,
+ "target": 2134,
"typeArguments": [
{
"type": "reference",
- "target": 1692,
+ "target": 1709,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15251,14 +15251,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1704,
+ "id": 1721,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15280,7 +15280,7 @@
],
"typeParameters": [
{
- "id": 1705,
+ "id": 1722,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15288,7 +15288,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1706,
+ "id": 1723,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15302,7 +15302,7 @@
],
"indexSignatures": [
{
- "id": 1707,
+ "id": 1724,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15316,7 +15316,7 @@
],
"parameters": [
{
- "id": 1708,
+ "id": 1725,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15339,7 +15339,7 @@
],
"parameters": [
{
- "id": 1709,
+ "id": 1726,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15350,7 +15350,7 @@
}
},
{
- "id": 1710,
+ "id": 1727,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15358,14 +15358,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1711,
+ "id": 1728,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1712,
+ "id": 1729,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15386,7 +15386,7 @@
"groups": [
{
"title": "Properties",
- "children": [1712]
+ "children": [1729]
}
],
"sources": [
@@ -15400,7 +15400,7 @@
}
},
{
- "id": 1713,
+ "id": 1730,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15408,7 +15408,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1714,
+ "id": 1731,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15422,7 +15422,7 @@
],
"signatures": [
{
- "id": 1715,
+ "id": 1732,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15436,18 +15436,18 @@
],
"parameters": [
{
- "id": 1716,
+ "id": 1733,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2127,
+ "target": 2144,
"typeArguments": [
{
"type": "reference",
- "target": 1705,
+ "target": 1722,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15470,14 +15470,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1717,
+ "id": 1734,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15499,7 +15499,7 @@
],
"typeParameters": [
{
- "id": 1718,
+ "id": 1735,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15507,7 +15507,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1719,
+ "id": 1736,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15521,7 +15521,7 @@
],
"indexSignatures": [
{
- "id": 1720,
+ "id": 1737,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15535,7 +15535,7 @@
],
"parameters": [
{
- "id": 1721,
+ "id": 1738,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15558,7 +15558,7 @@
],
"parameters": [
{
- "id": 1722,
+ "id": 1739,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15569,14 +15569,14 @@
}
},
{
- "id": 1723,
+ "id": 1740,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -15588,7 +15588,7 @@
}
},
{
- "id": 1724,
+ "id": 1741,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15596,7 +15596,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1725,
+ "id": 1742,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15610,7 +15610,7 @@
],
"signatures": [
{
- "id": 1726,
+ "id": 1743,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15624,18 +15624,18 @@
],
"parameters": [
{
- "id": 1727,
+ "id": 1744,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2083,
+ "target": 2100,
"typeArguments": [
{
"type": "reference",
- "target": 1718,
+ "target": 1735,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15658,14 +15658,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1728,
+ "id": 1745,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15687,7 +15687,7 @@
],
"typeParameters": [
{
- "id": 1729,
+ "id": 1746,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15695,7 +15695,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1730,
+ "id": 1747,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15709,7 +15709,7 @@
],
"indexSignatures": [
{
- "id": 1731,
+ "id": 1748,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15723,7 +15723,7 @@
],
"parameters": [
{
- "id": 1732,
+ "id": 1749,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15746,7 +15746,7 @@
],
"parameters": [
{
- "id": 1733,
+ "id": 1750,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15757,14 +15757,14 @@
}
},
{
- "id": 1734,
+ "id": 1751,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -15776,7 +15776,7 @@
}
},
{
- "id": 1735,
+ "id": 1752,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15784,7 +15784,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1736,
+ "id": 1753,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15798,7 +15798,7 @@
],
"signatures": [
{
- "id": 1737,
+ "id": 1754,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15812,18 +15812,18 @@
],
"parameters": [
{
- "id": 1738,
+ "id": 1755,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2088,
+ "target": 2105,
"typeArguments": [
{
"type": "reference",
- "target": 1729,
+ "target": 1746,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15846,14 +15846,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1739,
+ "id": 1756,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15875,7 +15875,7 @@
],
"typeParameters": [
{
- "id": 1740,
+ "id": 1757,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15883,7 +15883,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1741,
+ "id": 1758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15897,7 +15897,7 @@
],
"indexSignatures": [
{
- "id": 1742,
+ "id": 1759,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15911,7 +15911,7 @@
],
"parameters": [
{
- "id": 1743,
+ "id": 1760,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15934,7 +15934,7 @@
],
"parameters": [
{
- "id": 1744,
+ "id": 1761,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15945,14 +15945,14 @@
}
},
{
- "id": 1745,
+ "id": 1762,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -15964,7 +15964,7 @@
}
},
{
- "id": 1746,
+ "id": 1763,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15972,7 +15972,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1747,
+ "id": 1764,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15986,7 +15986,7 @@
],
"signatures": [
{
- "id": 1748,
+ "id": 1765,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16000,18 +16000,18 @@
],
"parameters": [
{
- "id": 1749,
+ "id": 1766,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2098,
+ "target": 2115,
"typeArguments": [
{
"type": "reference",
- "target": 1740,
+ "target": 1757,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16034,14 +16034,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1750,
+ "id": 1767,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16063,7 +16063,7 @@
],
"typeParameters": [
{
- "id": 1751,
+ "id": 1768,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16071,7 +16071,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1752,
+ "id": 1769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16085,7 +16085,7 @@
],
"indexSignatures": [
{
- "id": 1753,
+ "id": 1770,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16099,7 +16099,7 @@
],
"parameters": [
{
- "id": 1754,
+ "id": 1771,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16122,7 +16122,7 @@
],
"parameters": [
{
- "id": 1755,
+ "id": 1772,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16133,14 +16133,14 @@
}
},
{
- "id": 1756,
+ "id": 1773,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -16152,7 +16152,7 @@
}
},
{
- "id": 1757,
+ "id": 1774,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16160,7 +16160,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1758,
+ "id": 1775,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16174,7 +16174,7 @@
],
"signatures": [
{
- "id": 1759,
+ "id": 1776,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16188,18 +16188,18 @@
],
"parameters": [
{
- "id": 1760,
+ "id": 1777,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2107,
+ "target": 2124,
"typeArguments": [
{
"type": "reference",
- "target": 1751,
+ "target": 1768,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16222,14 +16222,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1761,
+ "id": 1778,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16251,7 +16251,7 @@
],
"parameters": [
{
- "id": 1762,
+ "id": 1779,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16270,7 +16270,7 @@
}
},
{
- "id": 1763,
+ "id": 1780,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -16286,14 +16286,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1764,
+ "id": 1781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1765,
+ "id": 1782,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16314,7 +16314,7 @@
"groups": [
{
"title": "Properties",
- "children": [1765]
+ "children": [1782]
}
],
"sources": [
@@ -16328,7 +16328,7 @@
}
},
{
- "id": 1766,
+ "id": 1783,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16344,7 +16344,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1767,
+ "id": 1784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16358,7 +16358,7 @@
],
"signatures": [
{
- "id": 1768,
+ "id": 1785,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16372,7 +16372,7 @@
],
"parameters": [
{
- "id": 1769,
+ "id": 1786,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -16380,14 +16380,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1770,
+ "id": 1787,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1772,
+ "id": 1789,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16405,7 +16405,7 @@
}
},
{
- "id": 1773,
+ "id": 1790,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -16422,14 +16422,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1774,
+ "id": 1791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1776,
+ "id": 1793,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16447,7 +16447,7 @@
}
},
{
- "id": 1775,
+ "id": 1792,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -16470,7 +16470,7 @@
"groups": [
{
"title": "Properties",
- "children": [1776, 1775]
+ "children": [1793, 1792]
}
],
"sources": [
@@ -16484,7 +16484,7 @@
}
},
{
- "id": 1771,
+ "id": 1788,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -16505,7 +16505,7 @@
"groups": [
{
"title": "Properties",
- "children": [1772, 1773, 1771]
+ "children": [1789, 1790, 1788]
}
],
"sources": [
@@ -16517,7 +16517,7 @@
],
"indexSignatures": [
{
- "id": 1777,
+ "id": 1794,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16531,7 +16531,7 @@
],
"parameters": [
{
- "id": 1778,
+ "id": 1795,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16564,14 +16564,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1779,
+ "id": 1796,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16593,7 +16593,7 @@
],
"typeParameters": [
{
- "id": 1780,
+ "id": 1797,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16601,7 +16601,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1781,
+ "id": 1798,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16615,7 +16615,7 @@
],
"indexSignatures": [
{
- "id": 1782,
+ "id": 1799,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16629,7 +16629,7 @@
],
"parameters": [
{
- "id": 1783,
+ "id": 1800,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16652,7 +16652,7 @@
],
"parameters": [
{
- "id": 1784,
+ "id": 1801,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16663,7 +16663,7 @@
}
},
{
- "id": 1785,
+ "id": 1802,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -16671,14 +16671,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1786,
+ "id": 1803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1787,
+ "id": 1804,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16699,7 +16699,7 @@
"groups": [
{
"title": "Properties",
- "children": [1787]
+ "children": [1804]
}
],
"sources": [
@@ -16713,7 +16713,7 @@
}
},
{
- "id": 1788,
+ "id": 1805,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16721,7 +16721,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1789,
+ "id": 1806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16735,7 +16735,7 @@
],
"signatures": [
{
- "id": 1790,
+ "id": 1807,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16749,7 +16749,7 @@
],
"parameters": [
{
- "id": 1791,
+ "id": 1808,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -16757,14 +16757,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1792,
+ "id": 1809,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1794,
+ "id": 1811,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16782,7 +16782,7 @@
}
},
{
- "id": 1795,
+ "id": 1812,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -16799,14 +16799,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1796,
+ "id": 1813,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1798,
+ "id": 1815,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16824,7 +16824,7 @@
}
},
{
- "id": 1797,
+ "id": 1814,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -16847,7 +16847,7 @@
"groups": [
{
"title": "Properties",
- "children": [1798, 1797]
+ "children": [1815, 1814]
}
],
"sources": [
@@ -16861,7 +16861,7 @@
}
},
{
- "id": 1799,
+ "id": 1816,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -16875,14 +16875,14 @@
],
"type": {
"type": "reference",
- "target": 1780,
+ "target": 1797,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 1793,
+ "id": 1810,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -16903,7 +16903,7 @@
"groups": [
{
"title": "Properties",
- "children": [1794, 1795, 1799, 1793]
+ "children": [1811, 1812, 1816, 1810]
}
],
"sources": [
@@ -16929,14 +16929,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1800,
+ "id": 1817,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16958,7 +16958,7 @@
],
"typeParameters": [
{
- "id": 1801,
+ "id": 1818,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16986,7 +16986,7 @@
],
"parameters": [
{
- "id": 1802,
+ "id": 1819,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16997,7 +16997,7 @@
}
},
{
- "id": 1803,
+ "id": 1820,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17005,14 +17005,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1804,
+ "id": 1821,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1805,
+ "id": 1822,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17026,7 +17026,7 @@
],
"type": {
"type": "reference",
- "target": 2153,
+ "target": 2170,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
@@ -17036,7 +17036,7 @@
"groups": [
{
"title": "Properties",
- "children": [1805]
+ "children": [1822]
}
],
"sources": [
@@ -17050,7 +17050,7 @@
}
},
{
- "id": 1806,
+ "id": 1823,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17058,7 +17058,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1807,
+ "id": 1824,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17072,7 +17072,7 @@
],
"signatures": [
{
- "id": 1808,
+ "id": 1825,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17086,7 +17086,7 @@
],
"parameters": [
{
- "id": 1809,
+ "id": 1826,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17094,14 +17094,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1810,
+ "id": 1827,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1812,
+ "id": 1829,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17115,14 +17115,14 @@
],
"type": {
"type": "reference",
- "target": 2153,
+ "target": 2170,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
}
},
{
- "id": 1813,
+ "id": 1830,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17143,7 +17143,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1801,
+ "target": 1818,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17154,7 +17154,7 @@
}
},
{
- "id": 1811,
+ "id": 1828,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17175,7 +17175,7 @@
"groups": [
{
"title": "Properties",
- "children": [1812, 1813, 1811]
+ "children": [1829, 1830, 1828]
}
],
"sources": [
@@ -17201,14 +17201,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1814,
+ "id": 1831,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17230,7 +17230,7 @@
],
"typeParameters": [
{
- "id": 1815,
+ "id": 1832,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17238,7 +17238,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1816,
+ "id": 1833,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17252,7 +17252,7 @@
],
"indexSignatures": [
{
- "id": 1817,
+ "id": 1834,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17266,7 +17266,7 @@
],
"parameters": [
{
- "id": 1818,
+ "id": 1835,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17289,7 +17289,7 @@
],
"parameters": [
{
- "id": 1819,
+ "id": 1836,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17300,7 +17300,7 @@
}
},
{
- "id": 1820,
+ "id": 1837,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17308,14 +17308,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1821,
+ "id": 1838,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1822,
+ "id": 1839,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17329,7 +17329,7 @@
],
"type": {
"type": "reference",
- "target": 2154,
+ "target": 2171,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
@@ -17339,7 +17339,7 @@
"groups": [
{
"title": "Properties",
- "children": [1822]
+ "children": [1839]
}
],
"sources": [
@@ -17353,7 +17353,7 @@
}
},
{
- "id": 1823,
+ "id": 1840,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17361,7 +17361,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1824,
+ "id": 1841,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17375,7 +17375,7 @@
],
"signatures": [
{
- "id": 1825,
+ "id": 1842,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17389,7 +17389,7 @@
],
"parameters": [
{
- "id": 1826,
+ "id": 1843,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17397,14 +17397,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1827,
+ "id": 1844,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1829,
+ "id": 1846,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17418,14 +17418,14 @@
],
"type": {
"type": "reference",
- "target": 2154,
+ "target": 2171,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
}
},
{
- "id": 1830,
+ "id": 1847,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17446,7 +17446,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1815,
+ "target": 1832,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17457,7 +17457,7 @@
}
},
{
- "id": 1828,
+ "id": 1845,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17478,7 +17478,7 @@
"groups": [
{
"title": "Properties",
- "children": [1829, 1830, 1828]
+ "children": [1846, 1847, 1845]
}
],
"sources": [
@@ -17504,14 +17504,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1831,
+ "id": 1848,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17533,7 +17533,7 @@
],
"typeParameters": [
{
- "id": 1832,
+ "id": 1849,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17541,7 +17541,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1833,
+ "id": 1850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17555,7 +17555,7 @@
],
"indexSignatures": [
{
- "id": 1834,
+ "id": 1851,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17569,7 +17569,7 @@
],
"parameters": [
{
- "id": 1835,
+ "id": 1852,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17592,7 +17592,7 @@
],
"parameters": [
{
- "id": 1836,
+ "id": 1853,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17603,7 +17603,7 @@
}
},
{
- "id": 1837,
+ "id": 1854,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17611,14 +17611,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1838,
+ "id": 1855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1839,
+ "id": 1856,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17632,7 +17632,7 @@
],
"type": {
"type": "reference",
- "target": 2155,
+ "target": 2172,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
@@ -17642,7 +17642,7 @@
"groups": [
{
"title": "Properties",
- "children": [1839]
+ "children": [1856]
}
],
"sources": [
@@ -17656,7 +17656,7 @@
}
},
{
- "id": 1840,
+ "id": 1857,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17664,7 +17664,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1841,
+ "id": 1858,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17678,7 +17678,7 @@
],
"signatures": [
{
- "id": 1842,
+ "id": 1859,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17692,7 +17692,7 @@
],
"parameters": [
{
- "id": 1843,
+ "id": 1860,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17700,14 +17700,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1844,
+ "id": 1861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1846,
+ "id": 1863,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17721,14 +17721,14 @@
],
"type": {
"type": "reference",
- "target": 2155,
+ "target": 2172,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
}
},
{
- "id": 1847,
+ "id": 1864,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17749,7 +17749,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1832,
+ "target": 1849,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17760,7 +17760,7 @@
}
},
{
- "id": 1845,
+ "id": 1862,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17781,7 +17781,7 @@
"groups": [
{
"title": "Properties",
- "children": [1846, 1847, 1845]
+ "children": [1863, 1864, 1862]
}
],
"sources": [
@@ -17807,14 +17807,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1848,
+ "id": 1865,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17836,7 +17836,7 @@
],
"typeParameters": [
{
- "id": 1849,
+ "id": 1866,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17844,7 +17844,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1850,
+ "id": 1867,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17858,7 +17858,7 @@
],
"indexSignatures": [
{
- "id": 1851,
+ "id": 1868,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17872,7 +17872,7 @@
],
"parameters": [
{
- "id": 1852,
+ "id": 1869,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17895,7 +17895,7 @@
],
"parameters": [
{
- "id": 1853,
+ "id": 1870,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17906,7 +17906,7 @@
}
},
{
- "id": 1854,
+ "id": 1871,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17914,14 +17914,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1855,
+ "id": 1872,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1856,
+ "id": 1873,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17935,7 +17935,7 @@
],
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2173,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
@@ -17945,7 +17945,7 @@
"groups": [
{
"title": "Properties",
- "children": [1856]
+ "children": [1873]
}
],
"sources": [
@@ -17959,7 +17959,7 @@
}
},
{
- "id": 1857,
+ "id": 1874,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17967,7 +17967,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1858,
+ "id": 1875,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17981,7 +17981,7 @@
],
"signatures": [
{
- "id": 1859,
+ "id": 1876,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17995,7 +17995,7 @@
],
"parameters": [
{
- "id": 1860,
+ "id": 1877,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18003,14 +18003,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1861,
+ "id": 1878,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1863,
+ "id": 1880,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18024,14 +18024,14 @@
],
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2173,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
}
},
{
- "id": 1864,
+ "id": 1881,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18052,7 +18052,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1849,
+ "target": 1866,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18063,7 +18063,7 @@
}
},
{
- "id": 1862,
+ "id": 1879,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18084,7 +18084,7 @@
"groups": [
{
"title": "Properties",
- "children": [1863, 1864, 1862]
+ "children": [1880, 1881, 1879]
}
],
"sources": [
@@ -18110,14 +18110,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1865,
+ "id": 1882,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18139,7 +18139,7 @@
],
"typeParameters": [
{
- "id": 1866,
+ "id": 1883,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18147,7 +18147,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1867,
+ "id": 1884,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18161,7 +18161,7 @@
],
"indexSignatures": [
{
- "id": 1868,
+ "id": 1885,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18175,7 +18175,7 @@
],
"parameters": [
{
- "id": 1869,
+ "id": 1886,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18198,7 +18198,7 @@
],
"parameters": [
{
- "id": 1870,
+ "id": 1887,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18209,7 +18209,7 @@
}
},
{
- "id": 1871,
+ "id": 1888,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18217,7 +18217,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1872,
+ "id": 1889,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18226,7 +18226,7 @@
}
},
{
- "id": 1873,
+ "id": 1890,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18234,7 +18234,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1874,
+ "id": 1891,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18248,7 +18248,7 @@
],
"signatures": [
{
- "id": 1875,
+ "id": 1892,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18262,7 +18262,7 @@
],
"parameters": [
{
- "id": 1876,
+ "id": 1893,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18285,7 +18285,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -18294,7 +18294,7 @@
]
},
{
- "id": 1659,
+ "id": 1676,
"name": "presenceState",
"variant": "declaration",
"kind": 2048,
@@ -18308,7 +18308,7 @@
],
"signatures": [
{
- "id": 1660,
+ "id": 1677,
"name": "presenceState",
"variant": "signature",
"kind": 4096,
@@ -18330,7 +18330,7 @@
],
"typeParameters": [
{
- "id": 1661,
+ "id": 1678,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18338,7 +18338,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1662,
+ "id": 1679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18352,7 +18352,7 @@
],
"indexSignatures": [
{
- "id": 1663,
+ "id": 1680,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18366,7 +18366,7 @@
],
"parameters": [
{
- "id": 1664,
+ "id": 1681,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18388,7 +18388,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 1665,
+ "id": 1682,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18399,11 +18399,11 @@
],
"type": {
"type": "reference",
- "target": 2137,
+ "target": 2154,
"typeArguments": [
{
"type": "reference",
- "target": 1661,
+ "target": 1678,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18416,7 +18416,7 @@
]
},
{
- "id": 1890,
+ "id": 1907,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -18430,7 +18430,7 @@
],
"signatures": [
{
- "id": 1891,
+ "id": 1908,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -18452,7 +18452,7 @@
],
"parameters": [
{
- "id": 1892,
+ "id": 1909,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -18468,14 +18468,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1893,
+ "id": 1910,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1895,
+ "id": 1912,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18501,7 +18501,7 @@
}
},
{
- "id": 1896,
+ "id": 1913,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18529,7 +18529,7 @@
}
},
{
- "id": 1894,
+ "id": 1911,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18571,7 +18571,7 @@
"groups": [
{
"title": "Properties",
- "children": [1895, 1896, 1894]
+ "children": [1912, 1913, 1911]
}
],
"sources": [
@@ -18583,7 +18583,7 @@
],
"indexSignatures": [
{
- "id": 1897,
+ "id": 1914,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18597,7 +18597,7 @@
],
"parameters": [
{
- "id": 1898,
+ "id": 1915,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18618,7 +18618,7 @@
}
},
{
- "id": 1899,
+ "id": 1916,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -18636,7 +18636,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1900,
+ "id": 1917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18650,7 +18650,7 @@
],
"indexSignatures": [
{
- "id": 1901,
+ "id": 1918,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18664,7 +18664,7 @@
],
"parameters": [
{
- "id": 1902,
+ "id": 1919,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18694,7 +18694,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1928,
+ "target": 1945,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -18706,7 +18706,7 @@
]
},
{
- "id": 1651,
+ "id": 1668,
"name": "subscribe",
"variant": "declaration",
"kind": 2048,
@@ -18720,7 +18720,7 @@
],
"signatures": [
{
- "id": 1652,
+ "id": 1669,
"name": "subscribe",
"variant": "signature",
"kind": 4096,
@@ -18742,7 +18742,7 @@
],
"parameters": [
{
- "id": 1653,
+ "id": 1670,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18752,7 +18752,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1654,
+ "id": 1671,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18766,7 +18766,7 @@
],
"signatures": [
{
- "id": 1655,
+ "id": 1672,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18780,20 +18780,20 @@
],
"parameters": [
{
- "id": 1656,
+ "id": 1673,
"name": "status",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2161,
+ "target": 2178,
"name": "REALTIME_SUBSCRIBE_STATES",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1657,
+ "id": 1674,
"name": "err",
"variant": "param",
"kind": 32768,
@@ -18821,7 +18821,7 @@
}
},
{
- "id": 1658,
+ "id": 1675,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -18836,7 +18836,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -18845,7 +18845,7 @@
]
},
{
- "id": 1912,
+ "id": 1929,
"name": "teardown",
"variant": "declaration",
"kind": 2048,
@@ -18859,7 +18859,7 @@
],
"signatures": [
{
- "id": 1913,
+ "id": 1930,
"name": "teardown",
"variant": "signature",
"kind": 4096,
@@ -18887,7 +18887,7 @@
]
},
{
- "id": 1666,
+ "id": 1683,
"name": "track",
"variant": "declaration",
"kind": 2048,
@@ -18901,7 +18901,7 @@
],
"signatures": [
{
- "id": 1667,
+ "id": 1684,
"name": "track",
"variant": "signature",
"kind": 4096,
@@ -18931,7 +18931,7 @@
],
"parameters": [
{
- "id": 1668,
+ "id": 1685,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18939,7 +18939,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1669,
+ "id": 1686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18953,7 +18953,7 @@
],
"indexSignatures": [
{
- "id": 1670,
+ "id": 1687,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18967,7 +18967,7 @@
],
"parameters": [
{
- "id": 1671,
+ "id": 1688,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18988,7 +18988,7 @@
}
},
{
- "id": 1672,
+ "id": 1689,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -18998,7 +18998,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1673,
+ "id": 1690,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19012,7 +19012,7 @@
],
"indexSignatures": [
{
- "id": 1674,
+ "id": 1691,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19026,7 +19026,7 @@
],
"parameters": [
{
- "id": 1675,
+ "id": 1692,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19056,7 +19056,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1928,
+ "target": 1945,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19068,7 +19068,7 @@
]
},
{
- "id": 1909,
+ "id": 1926,
"name": "unsubscribe",
"variant": "declaration",
"kind": 2048,
@@ -19082,7 +19082,7 @@
],
"signatures": [
{
- "id": 1910,
+ "id": 1927,
"name": "unsubscribe",
"variant": "signature",
"kind": 4096,
@@ -19112,7 +19112,7 @@
],
"parameters": [
{
- "id": 1911,
+ "id": 1928,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -19157,7 +19157,7 @@
]
},
{
- "id": 1676,
+ "id": 1693,
"name": "untrack",
"variant": "declaration",
"kind": 2048,
@@ -19171,7 +19171,7 @@
],
"signatures": [
{
- "id": 1677,
+ "id": 1694,
"name": "untrack",
"variant": "signature",
"kind": 4096,
@@ -19193,7 +19193,7 @@
],
"parameters": [
{
- "id": 1678,
+ "id": 1695,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -19203,7 +19203,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1679,
+ "id": 1696,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19217,7 +19217,7 @@
],
"indexSignatures": [
{
- "id": 1680,
+ "id": 1697,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19231,7 +19231,7 @@
],
"parameters": [
{
- "id": 1681,
+ "id": 1698,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19261,7 +19261,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1928,
+ "target": 1945,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19273,7 +19273,7 @@
]
},
{
- "id": 1903,
+ "id": 1920,
"name": "updateJoinPayload",
"variant": "declaration",
"kind": 2048,
@@ -19287,7 +19287,7 @@
],
"signatures": [
{
- "id": 1904,
+ "id": 1921,
"name": "updateJoinPayload",
"variant": "signature",
"kind": 4096,
@@ -19309,7 +19309,7 @@
],
"parameters": [
{
- "id": 1905,
+ "id": 1922,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -19317,7 +19317,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1906,
+ "id": 1923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19331,7 +19331,7 @@
],
"indexSignatures": [
{
- "id": 1907,
+ "id": 1924,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19345,7 +19345,7 @@
],
"parameters": [
{
- "id": 1908,
+ "id": 1925,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19377,17 +19377,17 @@
"groups": [
{
"title": "Constructors",
- "children": [1621]
+ "children": [1638]
},
{
"title": "Properties",
"children": [
- 1629, 1648, 1643, 1644, 1627, 1647, 1650, 1646, 1645, 1628, 1642, 1649, 1641, 1626
+ 1646, 1665, 1660, 1661, 1644, 1664, 1667, 1663, 1662, 1645, 1659, 1666, 1658, 1643
]
},
{
"title": "Methods",
- "children": [1877, 1682, 1659, 1890, 1651, 1912, 1666, 1909, 1676, 1903]
+ "children": [1894, 1699, 1676, 1907, 1668, 1929, 1683, 1926, 1693, 1920]
}
],
"sources": [
@@ -19399,14 +19399,14 @@
]
},
{
- "id": 1929,
+ "id": 1946,
"name": "RealtimeClient",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1930,
+ "id": 1947,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -19420,7 +19420,7 @@
],
"signatures": [
{
- "id": 1931,
+ "id": 1948,
"name": "RealtimeClient",
"variant": "signature",
"kind": 16384,
@@ -19453,7 +19453,7 @@
],
"parameters": [
{
- "id": 1932,
+ "id": 1949,
"name": "endPoint",
"variant": "param",
"kind": 32768,
@@ -19472,7 +19472,7 @@
}
},
{
- "id": 1933,
+ "id": 1950,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -19481,7 +19481,7 @@
},
"type": {
"type": "reference",
- "target": 2039,
+ "target": 2056,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js",
"highlightedProperties": {
@@ -19577,7 +19577,7 @@
],
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19586,7 +19586,7 @@
]
},
{
- "id": 1981,
+ "id": 1998,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -19608,7 +19608,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1982,
+ "id": 1999,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19622,7 +19622,7 @@
],
"signatures": [
{
- "id": 1983,
+ "id": 2000,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19666,7 +19666,7 @@
}
},
{
- "id": 1934,
+ "id": 1951,
"name": "accessTokenValue",
"variant": "declaration",
"kind": 1024,
@@ -19693,7 +19693,7 @@
}
},
{
- "id": 1935,
+ "id": 1952,
"name": "apiKey",
"variant": "declaration",
"kind": 1024,
@@ -19720,7 +19720,7 @@
}
},
{
- "id": 1936,
+ "id": 1953,
"name": "channels",
"variant": "declaration",
"kind": 1024,
@@ -19736,7 +19736,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19744,7 +19744,7 @@
}
},
{
- "id": 1964,
+ "id": 1981,
"name": "conn",
"variant": "declaration",
"kind": 1024,
@@ -19765,7 +19765,7 @@
},
{
"type": "reference",
- "target": 2183,
+ "target": 2200,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -19773,7 +19773,7 @@
}
},
{
- "id": 1962,
+ "id": 1979,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -19796,7 +19796,7 @@
}
},
{
- "id": 1961,
+ "id": 1978,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -19819,7 +19819,7 @@
}
},
{
- "id": 1937,
+ "id": 1954,
"name": "endPoint",
"variant": "declaration",
"kind": 1024,
@@ -19837,7 +19837,7 @@
}
},
{
- "id": 1973,
+ "id": 1990,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -19852,7 +19852,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1974,
+ "id": 1991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19871,7 +19871,7 @@
],
"signatures": [
{
- "id": 1975,
+ "id": 1992,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19893,7 +19893,7 @@
],
"parameters": [
{
- "id": 1976,
+ "id": 1993,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -19923,7 +19923,7 @@
}
},
{
- "id": 1977,
+ "id": 1994,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -19963,7 +19963,7 @@
}
},
{
- "id": 1978,
+ "id": 1995,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19985,7 +19985,7 @@
],
"parameters": [
{
- "id": 1979,
+ "id": 1996,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -20019,7 +20019,7 @@
}
},
{
- "id": 1980,
+ "id": 1997,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -20063,7 +20063,7 @@
}
},
{
- "id": 1939,
+ "id": 1956,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -20094,7 +20094,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1940,
+ "id": 1957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20108,7 +20108,7 @@
],
"indexSignatures": [
{
- "id": 1941,
+ "id": 1958,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20122,7 +20122,7 @@
],
"parameters": [
{
- "id": 1942,
+ "id": 1959,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20143,7 +20143,7 @@
}
},
{
- "id": 1952,
+ "id": 1969,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -20158,7 +20158,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1953,
+ "id": 1970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20172,7 +20172,7 @@
],
"signatures": [
{
- "id": 1954,
+ "id": 1971,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20186,7 +20186,7 @@
],
"parameters": [
{
- "id": 1955,
+ "id": 1972,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -20212,7 +20212,7 @@
}
},
{
- "id": 1949,
+ "id": 1966,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -20230,7 +20230,7 @@
}
},
{
- "id": 1950,
+ "id": 1967,
"name": "heartbeatTimer",
"variant": "declaration",
"kind": 1024,
@@ -20263,7 +20263,7 @@
}
},
{
- "id": 1938,
+ "id": 1955,
"name": "httpEndpoint",
"variant": "declaration",
"kind": 1024,
@@ -20281,7 +20281,7 @@
}
},
{
- "id": 1959,
+ "id": 1976,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -20304,7 +20304,7 @@
}
},
{
- "id": 1960,
+ "id": 1977,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -20329,7 +20329,7 @@
}
},
{
- "id": 1943,
+ "id": 1960,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -20346,7 +20346,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1944,
+ "id": 1961,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20360,7 +20360,7 @@
],
"indexSignatures": [
{
- "id": 1945,
+ "id": 1962,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20374,7 +20374,7 @@
],
"parameters": [
{
- "id": 1946,
+ "id": 1963,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20395,7 +20395,7 @@
}
},
{
- "id": 1951,
+ "id": 1968,
"name": "pendingHeartbeatRef",
"variant": "declaration",
"kind": 1024,
@@ -20422,7 +20422,7 @@
}
},
{
- "id": 1963,
+ "id": 1980,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -20445,7 +20445,7 @@
}
},
{
- "id": 1957,
+ "id": 1974,
"name": "reconnectTimer",
"variant": "declaration",
"kind": 1024,
@@ -20478,7 +20478,7 @@
}
},
{
- "id": 1956,
+ "id": 1973,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -20496,7 +20496,7 @@
}
},
{
- "id": 1965,
+ "id": 1982,
"name": "sendBuffer",
"variant": "declaration",
"kind": 1024,
@@ -20522,7 +20522,7 @@
}
},
{
- "id": 1966,
+ "id": 1983,
"name": "serializer",
"variant": "declaration",
"kind": 1024,
@@ -20546,7 +20546,7 @@
}
},
{
- "id": 1967,
+ "id": 1984,
"name": "stateChangeCallbacks",
"variant": "declaration",
"kind": 1024,
@@ -20561,14 +20561,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1968,
+ "id": 1985,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1970,
+ "id": 1987,
"name": "close",
"variant": "declaration",
"kind": 1024,
@@ -20594,7 +20594,7 @@
}
},
{
- "id": 1971,
+ "id": 1988,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -20620,7 +20620,7 @@
}
},
{
- "id": 1972,
+ "id": 1989,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -20646,7 +20646,7 @@
}
},
{
- "id": 1969,
+ "id": 1986,
"name": "open",
"variant": "declaration",
"kind": 1024,
@@ -20675,7 +20675,7 @@
"groups": [
{
"title": "Properties",
- "children": [1970, 1971, 1972, 1969]
+ "children": [1987, 1988, 1989, 1986]
}
],
"sources": [
@@ -20689,7 +20689,7 @@
}
},
{
- "id": 1947,
+ "id": 1964,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -20707,7 +20707,7 @@
}
},
{
- "id": 1948,
+ "id": 1965,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -20728,7 +20728,7 @@
},
{
"type": "reference",
- "target": 2233,
+ "target": 2250,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
@@ -20736,7 +20736,7 @@
}
},
{
- "id": 1958,
+ "id": 1975,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -20754,7 +20754,7 @@
}
},
{
- "id": 1984,
+ "id": 2001,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -20774,7 +20774,7 @@
}
},
{
- "id": 1986,
+ "id": 2003,
"name": "workerRef",
"variant": "declaration",
"kind": 1024,
@@ -20799,7 +20799,7 @@
}
},
{
- "id": 1985,
+ "id": 2002,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -20819,7 +20819,7 @@
}
},
{
- "id": 2018,
+ "id": 2035,
"name": "channel",
"variant": "declaration",
"kind": 2048,
@@ -20833,7 +20833,7 @@
],
"signatures": [
{
- "id": 2019,
+ "id": 2036,
"name": "channel",
"variant": "signature",
"kind": 4096,
@@ -20848,7 +20848,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "RealtimeChannel",
- "target": 1620
+ "target": 1637
},
{
"kind": "text",
@@ -20873,7 +20873,7 @@
],
"parameters": [
{
- "id": 2020,
+ "id": 2037,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -20884,7 +20884,7 @@
}
},
{
- "id": 2021,
+ "id": 2038,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -20893,7 +20893,7 @@
},
"type": {
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -20901,7 +20901,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -20910,7 +20910,7 @@
]
},
{
- "id": 1990,
+ "id": 2007,
"name": "connect",
"variant": "declaration",
"kind": 2048,
@@ -20924,7 +20924,7 @@
],
"signatures": [
{
- "id": 1991,
+ "id": 2008,
"name": "connect",
"variant": "signature",
"kind": 4096,
@@ -20952,7 +20952,7 @@
]
},
{
- "id": 2010,
+ "id": 2027,
"name": "connectionState",
"variant": "declaration",
"kind": 2048,
@@ -20966,7 +20966,7 @@
],
"signatures": [
{
- "id": 2011,
+ "id": 2028,
"name": "connectionState",
"variant": "signature",
"kind": 4096,
@@ -20999,7 +20999,7 @@
]
},
{
- "id": 1994,
+ "id": 2011,
"name": "disconnect",
"variant": "declaration",
"kind": 2048,
@@ -21013,7 +21013,7 @@
],
"signatures": [
{
- "id": 1995,
+ "id": 2012,
"name": "disconnect",
"variant": "signature",
"kind": 4096,
@@ -21035,7 +21035,7 @@
],
"parameters": [
{
- "id": 1996,
+ "id": 2013,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -21056,7 +21056,7 @@
}
},
{
- "id": 1997,
+ "id": 2014,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -21085,7 +21085,7 @@
]
},
{
- "id": 1992,
+ "id": 2009,
"name": "endpointURL",
"variant": "declaration",
"kind": 2048,
@@ -21099,7 +21099,7 @@
],
"signatures": [
{
- "id": 1993,
+ "id": 2010,
"name": "endpointURL",
"variant": "signature",
"kind": 4096,
@@ -21138,7 +21138,7 @@
]
},
{
- "id": 2036,
+ "id": 2053,
"name": "flushSendBuffer",
"variant": "declaration",
"kind": 2048,
@@ -21152,7 +21152,7 @@
],
"signatures": [
{
- "id": 2037,
+ "id": 2054,
"name": "flushSendBuffer",
"variant": "signature",
"kind": 4096,
@@ -21180,7 +21180,7 @@
]
},
{
- "id": 1998,
+ "id": 2015,
"name": "getChannels",
"variant": "declaration",
"kind": 2048,
@@ -21194,7 +21194,7 @@
],
"signatures": [
{
- "id": 1999,
+ "id": 2016,
"name": "getChannels",
"variant": "signature",
"kind": 4096,
@@ -21218,7 +21218,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -21228,7 +21228,7 @@
]
},
{
- "id": 2012,
+ "id": 2029,
"name": "isConnected",
"variant": "declaration",
"kind": 2048,
@@ -21242,7 +21242,7 @@
],
"signatures": [
{
- "id": 2013,
+ "id": 2030,
"name": "isConnected",
"variant": "signature",
"kind": 4096,
@@ -21278,7 +21278,7 @@
]
},
{
- "id": 2014,
+ "id": 2031,
"name": "isConnecting",
"variant": "declaration",
"kind": 2048,
@@ -21292,7 +21292,7 @@
],
"signatures": [
{
- "id": 2015,
+ "id": 2032,
"name": "isConnecting",
"variant": "signature",
"kind": 4096,
@@ -21328,7 +21328,7 @@
]
},
{
- "id": 2016,
+ "id": 2033,
"name": "isDisconnecting",
"variant": "declaration",
"kind": 2048,
@@ -21342,7 +21342,7 @@
],
"signatures": [
{
- "id": 2017,
+ "id": 2034,
"name": "isDisconnecting",
"variant": "signature",
"kind": 4096,
@@ -21378,7 +21378,7 @@
]
},
{
- "id": 2005,
+ "id": 2022,
"name": "log",
"variant": "declaration",
"kind": 2048,
@@ -21392,7 +21392,7 @@
],
"signatures": [
{
- "id": 2006,
+ "id": 2023,
"name": "log",
"variant": "signature",
"kind": 4096,
@@ -21422,7 +21422,7 @@
],
"parameters": [
{
- "id": 2007,
+ "id": 2024,
"name": "kind",
"variant": "param",
"kind": 32768,
@@ -21433,7 +21433,7 @@
}
},
{
- "id": 2008,
+ "id": 2025,
"name": "msg",
"variant": "param",
"kind": 32768,
@@ -21444,7 +21444,7 @@
}
},
{
- "id": 2009,
+ "id": 2026,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -21465,7 +21465,7 @@
]
},
{
- "id": 2030,
+ "id": 2047,
"name": "onHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -21479,7 +21479,7 @@
],
"signatures": [
{
- "id": 2031,
+ "id": 2048,
"name": "onHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -21501,7 +21501,7 @@
],
"parameters": [
{
- "id": 2032,
+ "id": 2049,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -21509,7 +21509,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2033,
+ "id": 2050,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21523,7 +21523,7 @@
],
"signatures": [
{
- "id": 2034,
+ "id": 2051,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -21537,7 +21537,7 @@
],
"parameters": [
{
- "id": 2035,
+ "id": 2052,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -21571,7 +21571,7 @@
]
},
{
- "id": 2022,
+ "id": 2039,
"name": "push",
"variant": "declaration",
"kind": 2048,
@@ -21585,7 +21585,7 @@
],
"signatures": [
{
- "id": 2023,
+ "id": 2040,
"name": "push",
"variant": "signature",
"kind": 4096,
@@ -21607,14 +21607,14 @@
],
"parameters": [
{
- "id": 2024,
+ "id": 2041,
"name": "data",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2069,
+ "target": 2086,
"name": "RealtimeMessage",
"package": "@supabase/realtime-js"
}
@@ -21628,7 +21628,7 @@
]
},
{
- "id": 2003,
+ "id": 2020,
"name": "removeAllChannels",
"variant": "declaration",
"kind": 2048,
@@ -21642,7 +21642,7 @@
],
"signatures": [
{
- "id": 2004,
+ "id": 2021,
"name": "removeAllChannels",
"variant": "signature",
"kind": 4096,
@@ -21673,7 +21673,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 2146,
+ "target": 2163,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -21686,7 +21686,7 @@
]
},
{
- "id": 2000,
+ "id": 2017,
"name": "removeChannel",
"variant": "declaration",
"kind": 2048,
@@ -21700,7 +21700,7 @@
],
"signatures": [
{
- "id": 2001,
+ "id": 2018,
"name": "removeChannel",
"variant": "signature",
"kind": 4096,
@@ -21722,7 +21722,7 @@
],
"parameters": [
{
- "id": 2002,
+ "id": 2019,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -21737,7 +21737,7 @@
},
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -21753,7 +21753,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2146,
+ "target": 2163,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -21765,7 +21765,7 @@
]
},
{
- "id": 2028,
+ "id": 2045,
"name": "sendHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -21779,7 +21779,7 @@
],
"signatures": [
{
- "id": 2029,
+ "id": 2046,
"name": "sendHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -21818,7 +21818,7 @@
]
},
{
- "id": 2025,
+ "id": 2042,
"name": "setAuth",
"variant": "declaration",
"kind": 2048,
@@ -21832,7 +21832,7 @@
],
"signatures": [
{
- "id": 2026,
+ "id": 2043,
"name": "setAuth",
"variant": "signature",
"kind": 4096,
@@ -21862,7 +21862,7 @@
],
"parameters": [
{
- "id": 2027,
+ "id": 2044,
"name": "token",
"variant": "param",
"kind": 32768,
@@ -21914,21 +21914,21 @@
"groups": [
{
"title": "Constructors",
- "children": [1930]
+ "children": [1947]
},
{
"title": "Properties",
"children": [
- 1981, 1934, 1935, 1936, 1964, 1962, 1961, 1937, 1973, 1939, 1952, 1949, 1950, 1938,
- 1959, 1960, 1943, 1951, 1963, 1957, 1956, 1965, 1966, 1967, 1947, 1948, 1958, 1984,
- 1986, 1985
+ 1998, 1951, 1952, 1953, 1981, 1979, 1978, 1954, 1990, 1956, 1969, 1966, 1967, 1955,
+ 1976, 1977, 1960, 1968, 1980, 1974, 1973, 1982, 1983, 1984, 1964, 1965, 1975, 2001,
+ 2003, 2002
]
},
{
"title": "Methods",
"children": [
- 2018, 1990, 2010, 1994, 1992, 2036, 1998, 2012, 2014, 2016, 2005, 2030, 2022, 2003,
- 2000, 2028, 2025
+ 2035, 2007, 2027, 2011, 2009, 2053, 2015, 2029, 2031, 2033, 2022, 2047, 2039, 2020,
+ 2017, 2045, 2042
]
}
],
@@ -21941,14 +21941,14 @@
]
},
{
- "id": 1603,
+ "id": 1620,
"name": "RealtimePresence",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1604,
+ "id": 1621,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -21962,7 +21962,7 @@
],
"signatures": [
{
- "id": 1605,
+ "id": 1622,
"name": "RealtimePresence",
"variant": "signature",
"kind": 16384,
@@ -21995,7 +21995,7 @@
],
"parameters": [
{
- "id": 1606,
+ "id": 1623,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -22010,14 +22010,14 @@
},
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1607,
+ "id": 1624,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -22053,7 +22053,7 @@
],
"type": {
"type": "reference",
- "target": 1603,
+ "target": 1620,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22062,7 +22062,7 @@
]
},
{
- "id": 1613,
+ "id": 1630,
"name": "caller",
"variant": "declaration",
"kind": 1024,
@@ -22077,14 +22077,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1614,
+ "id": 1631,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1615,
+ "id": 1632,
"name": "onJoin",
"variant": "declaration",
"kind": 1024,
@@ -22107,7 +22107,7 @@
}
},
{
- "id": 1616,
+ "id": 1633,
"name": "onLeave",
"variant": "declaration",
"kind": 1024,
@@ -22130,7 +22130,7 @@
}
},
{
- "id": 1617,
+ "id": 1634,
"name": "onSync",
"variant": "declaration",
"kind": 1024,
@@ -22145,7 +22145,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1618,
+ "id": 1635,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -22159,7 +22159,7 @@
],
"signatures": [
{
- "id": 1619,
+ "id": 1636,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -22184,7 +22184,7 @@
"groups": [
{
"title": "Properties",
- "children": [1615, 1616, 1617]
+ "children": [1632, 1633, 1634]
}
],
"sources": [
@@ -22198,7 +22198,7 @@
}
},
{
- "id": 1608,
+ "id": 1625,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -22212,14 +22212,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1612,
+ "id": 1629,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -22237,7 +22237,7 @@
}
},
{
- "id": 1611,
+ "id": 1628,
"name": "joinRef",
"variant": "declaration",
"kind": 1024,
@@ -22264,7 +22264,7 @@
}
},
{
- "id": 1610,
+ "id": 1627,
"name": "pendingDiffs",
"variant": "declaration",
"kind": 1024,
@@ -22290,7 +22290,7 @@
}
},
{
- "id": 1609,
+ "id": 1626,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -22304,7 +22304,7 @@
],
"type": {
"type": "reference",
- "target": 2137,
+ "target": 2154,
"name": "RealtimePresenceState",
"package": "@supabase/realtime-js"
}
@@ -22313,11 +22313,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1604]
+ "children": [1621]
},
{
"title": "Properties",
- "children": [1613, 1608, 1612, 1611, 1610, 1609]
+ "children": [1630, 1625, 1629, 1628, 1627, 1626]
}
],
"sources": [
@@ -22354,7 +22354,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"signatures": [
@@ -22388,7 +22388,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"typeParameters": [
@@ -22436,7 +22436,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -22456,7 +22456,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -22806,7 +22806,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -22826,7 +22826,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -22907,7 +22907,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -22930,7 +22930,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -22950,7 +22950,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -22968,7 +22968,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -23018,7 +23018,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -23038,7 +23038,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -23074,7 +23074,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -23094,7 +23094,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -23270,7 +23270,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -23286,7 +23286,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"signatures": [
@@ -23301,7 +23301,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -23352,7 +23352,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L73"
}
],
"type": {
@@ -23378,7 +23378,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 81,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L81"
}
],
"type": {
@@ -23405,7 +23405,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L87"
}
],
"type": {
@@ -23427,7 +23427,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 86,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L86"
}
],
"type": {
@@ -23656,7 +23656,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 83,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L83"
}
],
"type": {
@@ -23682,7 +23682,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 90,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L90"
}
],
"type": {
@@ -23716,12 +23716,12 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L74"
}
],
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -23740,7 +23740,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L80"
}
],
"type": {
@@ -23766,7 +23766,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L84"
}
],
"type": {
@@ -23825,7 +23825,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L78"
}
],
"type": {
@@ -23851,7 +23851,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 85,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L85"
}
],
"type": {
@@ -23872,7 +23872,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 82,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L82"
}
],
"type": {
@@ -23906,7 +23906,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 114,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L114"
}
],
"type": {
@@ -23935,7 +23935,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 113,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L113"
}
],
"type": {
@@ -23954,7 +23954,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 194,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194"
}
],
"getSignature": {
@@ -23976,7 +23976,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 194,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194"
}
],
"type": {
@@ -24001,7 +24001,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 308,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308"
}
],
"signatures": [
@@ -24024,7 +24024,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 308,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308"
}
],
"parameters": [
@@ -24063,7 +24063,7 @@
},
"type": {
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
},
@@ -24072,7 +24072,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24111,19 +24111,19 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 214,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L214"
}
],
"signatures": [
@@ -24138,7 +24138,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202"
}
],
"typeParameters": [
@@ -24240,7 +24240,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206"
}
],
"typeParameters": [
@@ -24344,7 +24344,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 315,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315"
}
],
"signatures": [
@@ -24367,14 +24367,14 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 315,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24394,7 +24394,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 332,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332"
}
],
"signatures": [
@@ -24417,7 +24417,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 332,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332"
}
],
"type": {
@@ -24465,7 +24465,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 325,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L325"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325"
}
],
"signatures": [
@@ -24488,7 +24488,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 325,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L325"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325"
}
],
"parameters": [
@@ -24508,7 +24508,7 @@
},
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24557,7 +24557,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261"
}
],
"signatures": [
@@ -24580,7 +24580,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261"
}
],
"typeParameters": [
@@ -24806,7 +24806,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 275,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L275"
}
],
"type": {
@@ -24856,7 +24856,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 274,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L274"
}
],
"type": {
@@ -24901,7 +24901,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 273,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L273"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L273"
}
],
"type": {
@@ -24921,7 +24921,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 272,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L272"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L272"
}
]
}
@@ -25031,7 +25031,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 226,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226"
}
],
"signatures": [
@@ -25054,7 +25054,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 226,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226"
}
],
"typeParameters": [
@@ -25203,7 +25203,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 37,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L37"
}
],
"typeParameters": [
@@ -25283,7 +25283,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -25303,7 +25303,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -25773,7 +25773,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -25793,7 +25793,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -25874,7 +25874,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -25897,7 +25897,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -25917,7 +25917,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -25935,7 +25935,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -25975,7 +25975,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -25995,7 +25995,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -26031,7 +26031,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -26051,7 +26051,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -26074,7 +26074,7 @@
]
},
{
- "id": 2167,
+ "id": 2184,
"name": "WebSocketFactory",
"variant": "declaration",
"kind": 128,
@@ -26089,7 +26089,7 @@
},
"children": [
{
- "id": 2175,
+ "id": 2192,
"name": "createWebSocket",
"variant": "declaration",
"kind": 2048,
@@ -26105,7 +26105,7 @@
],
"signatures": [
{
- "id": 2176,
+ "id": 2193,
"name": "createWebSocket",
"variant": "signature",
"kind": 4096,
@@ -26138,7 +26138,7 @@
],
"parameters": [
{
- "id": 2177,
+ "id": 2194,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -26163,7 +26163,7 @@
}
},
{
- "id": 2178,
+ "id": 2195,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -26190,7 +26190,7 @@
],
"type": {
"type": "reference",
- "target": 2183,
+ "target": 2200,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -26198,7 +26198,7 @@
]
},
{
- "id": 2169,
+ "id": 2186,
"name": "getWebSocketConstructor",
"variant": "declaration",
"kind": 2048,
@@ -26214,7 +26214,7 @@
],
"signatures": [
{
- "id": 2170,
+ "id": 2187,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 4096,
@@ -26248,7 +26248,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2171,
+ "id": 2188,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -26262,7 +26262,7 @@
],
"signatures": [
{
- "id": 2172,
+ "id": 2189,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 16384,
@@ -26276,7 +26276,7 @@
],
"parameters": [
{
- "id": 2173,
+ "id": 2190,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -26301,7 +26301,7 @@
}
},
{
- "id": 2174,
+ "id": 2191,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -26343,7 +26343,7 @@
]
},
{
- "id": 2179,
+ "id": 2196,
"name": "isWebSocketSupported",
"variant": "declaration",
"kind": 2048,
@@ -26359,7 +26359,7 @@
],
"signatures": [
{
- "id": 2180,
+ "id": 2197,
"name": "isWebSocketSupported",
"variant": "signature",
"kind": 4096,
@@ -26401,7 +26401,7 @@
"groups": [
{
"title": "Methods",
- "children": [2175, 2169, 2179]
+ "children": [2192, 2186, 2196]
}
],
"sources": [
@@ -26413,14 +26413,14 @@
]
},
{
- "id": 848,
+ "id": 850,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 850,
+ "id": 852,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -26464,7 +26464,7 @@
}
},
{
- "id": 853,
+ "id": 855,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -26492,7 +26492,7 @@
}
},
{
- "id": 858,
+ "id": 860,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -26526,7 +26526,7 @@
}
},
{
- "id": 851,
+ "id": 853,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -26554,7 +26554,7 @@
}
},
{
- "id": 856,
+ "id": 858,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -26598,7 +26598,7 @@
}
},
{
- "id": 857,
+ "id": 859,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -26632,7 +26632,7 @@
}
},
{
- "id": 859,
+ "id": 861,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -26666,7 +26666,7 @@
}
},
{
- "id": 855,
+ "id": 857,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -26702,7 +26702,7 @@
}
},
{
- "id": 860,
+ "id": 862,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -26736,7 +26736,7 @@
}
},
{
- "id": 852,
+ "id": 854,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -26764,7 +26764,7 @@
}
},
{
- "id": 854,
+ "id": 856,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -26824,7 +26824,7 @@
}
},
{
- "id": 849,
+ "id": 851,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -26871,7 +26871,7 @@
"groups": [
{
"title": "Properties",
- "children": [850, 853, 858, 851, 856, 857, 859, 855, 860, 852, 854, 849]
+ "children": [852, 855, 860, 853, 858, 859, 861, 857, 862, 854, 856, 851]
}
],
"sources": [
@@ -26891,7 +26891,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 842,
+ "target": 844,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -26906,7 +26906,7 @@
]
},
{
- "id": 807,
+ "id": 809,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -26926,7 +26926,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1232
+ "target": 1234
},
{
"kind": "text",
@@ -26938,7 +26938,7 @@
},
"children": [
{
- "id": 808,
+ "id": 810,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -26960,13 +26960,13 @@
],
"type": {
"type": "reference",
- "target": 805,
+ "target": 807,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 809,
+ "id": 811,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -26995,7 +26995,7 @@
"groups": [
{
"title": "Properties",
- "children": [808, 809]
+ "children": [810, 811]
}
],
"sources": [
@@ -27007,7 +27007,7 @@
]
},
{
- "id": 1417,
+ "id": 1427,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -27022,7 +27022,7 @@
},
"children": [
{
- "id": 1421,
+ "id": 1431,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -27030,13 +27030,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1409,
+ "line": 1431,
"character": 4
}
],
"signatures": [
{
- "id": 1422,
+ "id": 1432,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -27063,13 +27063,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1409,
+ "line": 1431,
"character": 4
}
],
"parameters": [
{
- "id": 1423,
+ "id": 1433,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -27088,7 +27088,7 @@
}
},
{
- "id": 1424,
+ "id": 1434,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -27106,14 +27106,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1425,
+ "id": 1435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1426,
+ "id": 1436,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -27123,7 +27123,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1410,
+ "line": 1432,
"character": 8
}
],
@@ -27136,13 +27136,13 @@
"groups": [
{
"title": "Properties",
- "children": [1426]
+ "children": [1436]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1409,
+ "line": 1431,
"character": 60
}
]
@@ -27159,7 +27159,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1414,
+ "target": 1416,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -27171,7 +27171,7 @@
]
},
{
- "id": 1427,
+ "id": 1437,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -27179,13 +27179,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1420,
+ "line": 1442,
"character": 4
}
],
"signatures": [
{
- "id": 1428,
+ "id": 1438,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -27212,13 +27212,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1420,
+ "line": 1442,
"character": 4
}
],
"parameters": [
{
- "id": 1429,
+ "id": 1439,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -27237,7 +27237,7 @@
}
},
{
- "id": 1430,
+ "id": 1440,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -27255,14 +27255,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1431,
+ "id": 1441,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1432,
+ "id": 1442,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -27272,7 +27272,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1421,
+ "line": 1443,
"character": 8
}
],
@@ -27285,13 +27285,13 @@
"groups": [
{
"title": "Properties",
- "children": [1432]
+ "children": [1442]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1420,
+ "line": 1442,
"character": 57
}
]
@@ -27308,7 +27308,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1414,
+ "target": 1416,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -27320,7 +27320,7 @@
]
},
{
- "id": 1418,
+ "id": 1428,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -27328,13 +27328,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1400,
+ "line": 1422,
"character": 4
}
],
"signatures": [
{
- "id": 1419,
+ "id": 1429,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -27361,13 +27361,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1400,
+ "line": 1422,
"character": 4
}
],
"parameters": [
{
- "id": 1420,
+ "id": 1430,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -27395,7 +27395,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1413,
+ "target": 1415,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -27405,18 +27405,218 @@
}
}
]
+ },
+ {
+ "id": 1443,
+ "name": "listGrants",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1451,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1444,
+ "name": "listGrants",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists all OAuth grants that the authenticated user has authorized.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Response with array of OAuth grants with client information and granted scopes"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1451,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthOAuthGrantsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1445,
+ "name": "revokeGrant",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1463,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1446,
+ "name": "revokeGrant",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Revokes a user's OAuth grant for a specific client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nRevocation marks consent as revoked, deletes active sessions for that OAuth client,\nand invalidates associated refresh tokens."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Empty response on successful revocation"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1463,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1447,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Revocation options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1448,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1449,
+ "name": "clientId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The OAuth client identifier (UUID) to revoke access for"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1464,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1449]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1463,
+ "character": 25
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1425,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
}
],
"groups": [
{
"title": "Methods",
- "children": [1421, 1427, 1418]
+ "children": [1431, 1437, 1428, 1443, 1445]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1387,
+ "line": 1409,
"character": 17
}
]
@@ -27711,7 +27911,7 @@
],
"type": {
"type": "reference",
- "target": 833,
+ "target": 835,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
@@ -27894,7 +28094,7 @@
"types": [
{
"type": "reference",
- "target": 823,
+ "target": 825,
"typeArguments": [
{
"type": "union",
@@ -27923,7 +28123,7 @@
},
{
"type": "reference",
- "target": 823,
+ "target": 825,
"typeArguments": [
{
"type": "union",
@@ -27991,7 +28191,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 810,
+ "target": 812,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -28232,7 +28432,7 @@
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 840,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -28256,14 +28456,14 @@
]
},
{
- "id": 1055,
+ "id": 1057,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1056,
+ "id": 1058,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28307,7 +28507,7 @@
}
},
{
- "id": 1057,
+ "id": 1059,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -28338,7 +28538,7 @@
"groups": [
{
"title": "Properties",
- "children": [1056, 1057]
+ "children": [1058, 1059]
}
],
"sources": [
@@ -28350,7 +28550,7 @@
]
},
{
- "id": 1248,
+ "id": 1250,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -28371,7 +28571,7 @@
},
"children": [
{
- "id": 1252,
+ "id": 1254,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -28385,7 +28585,7 @@
],
"signatures": [
{
- "id": 1253,
+ "id": 1255,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -28405,7 +28605,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1221
+ "target": 1223
}
]
},
@@ -28424,14 +28624,14 @@
],
"parameters": [
{
- "id": 1254,
+ "id": 1256,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1238,
+ "target": 1240,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -28446,7 +28646,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1235,
+ "target": 1237,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -28458,7 +28658,7 @@
]
},
{
- "id": 1249,
+ "id": 1251,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -28472,7 +28672,7 @@
],
"signatures": [
{
- "id": 1250,
+ "id": 1252,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -28494,14 +28694,14 @@
],
"parameters": [
{
- "id": 1251,
+ "id": 1253,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1245,
+ "target": 1247,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -28516,7 +28716,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1242,
+ "target": 1244,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -28531,7 +28731,7 @@
"groups": [
{
"title": "Methods",
- "children": [1252, 1249]
+ "children": [1254, 1251]
}
],
"sources": [
@@ -28543,7 +28743,7 @@
]
},
{
- "id": 1374,
+ "id": 1376,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -28558,7 +28758,7 @@
},
"children": [
{
- "id": 1378,
+ "id": 1380,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -28572,7 +28772,7 @@
],
"signatures": [
{
- "id": 1379,
+ "id": 1381,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -28602,14 +28802,14 @@
],
"parameters": [
{
- "id": 1380,
+ "id": 1382,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1346,
+ "target": 1348,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -28624,7 +28824,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -28636,7 +28836,7 @@
]
},
{
- "id": 1388,
+ "id": 1390,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -28650,7 +28850,7 @@
],
"signatures": [
{
- "id": 1389,
+ "id": 1391,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -28680,7 +28880,7 @@
],
"parameters": [
{
- "id": 1390,
+ "id": 1392,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -28701,14 +28901,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1391,
+ "id": 1393,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1392,
+ "id": 1394,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28726,7 +28926,7 @@
}
},
{
- "id": 1393,
+ "id": 1395,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -28747,7 +28947,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -28758,7 +28958,7 @@
"groups": [
{
"title": "Properties",
- "children": [1392, 1393]
+ "children": [1394, 1395]
}
],
"sources": [
@@ -28778,7 +28978,7 @@
]
},
{
- "id": 1381,
+ "id": 1383,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -28792,7 +28992,7 @@
],
"signatures": [
{
- "id": 1382,
+ "id": 1384,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -28822,7 +29022,7 @@
],
"parameters": [
{
- "id": 1383,
+ "id": 1385,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -28842,7 +29042,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -28854,7 +29054,7 @@
]
},
{
- "id": 1375,
+ "id": 1377,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -28868,7 +29068,7 @@
],
"signatures": [
{
- "id": 1376,
+ "id": 1378,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -28898,7 +29098,7 @@
],
"parameters": [
{
- "id": 1377,
+ "id": 1379,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -28907,7 +29107,7 @@
},
"type": {
"type": "reference",
- "target": 1269,
+ "target": 1271,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -28922,7 +29122,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1362,
+ "target": 1364,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -28934,7 +29134,7 @@
]
},
{
- "id": 1394,
+ "id": 1396,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -28948,7 +29148,7 @@
],
"signatures": [
{
- "id": 1395,
+ "id": 1397,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -28978,7 +29178,7 @@
],
"parameters": [
{
- "id": 1396,
+ "id": 1398,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -28998,7 +29198,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -29010,7 +29210,7 @@
]
},
{
- "id": 1384,
+ "id": 1386,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -29024,7 +29224,7 @@
],
"signatures": [
{
- "id": 1385,
+ "id": 1387,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -29054,7 +29254,7 @@
],
"parameters": [
{
- "id": 1386,
+ "id": 1388,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -29065,14 +29265,14 @@
}
},
{
- "id": 1387,
+ "id": 1389,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1354,
+ "target": 1356,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -29087,7 +29287,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -29102,7 +29302,7 @@
"groups": [
{
"title": "Methods",
- "children": [1378, 1388, 1381, 1375, 1394, 1384]
+ "children": [1380, 1390, 1383, 1377, 1396, 1386]
}
],
"sources": [
@@ -29114,7 +29314,7 @@
]
},
{
- "id": 1118,
+ "id": 1120,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -29129,7 +29329,7 @@
},
"children": [
{
- "id": 1234,
+ "id": 1236,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -29152,7 +29352,7 @@
}
},
{
- "id": 1139,
+ "id": 1141,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -29181,7 +29381,7 @@
],
"signatures": [
{
- "id": 1140,
+ "id": 1142,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -29203,7 +29403,7 @@
],
"parameters": [
{
- "id": 1141,
+ "id": 1143,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -29211,14 +29411,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1142,
+ "id": 1144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1143,
+ "id": 1145,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -29247,7 +29447,7 @@
"groups": [
{
"title": "Properties",
- "children": [1143]
+ "children": [1145]
}
],
"sources": [
@@ -29274,14 +29474,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1144,
+ "id": 1146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1145,
+ "id": 1147,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29299,7 +29499,7 @@
}
},
{
- "id": 1146,
+ "id": 1148,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29313,7 +29513,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -29322,7 +29522,7 @@
"groups": [
{
"title": "Properties",
- "children": [1145, 1146]
+ "children": [1147, 1148]
}
],
"sources": [
@@ -29337,14 +29537,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1147,
+ "id": 1149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1148,
+ "id": 1150,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29359,14 +29559,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1149,
+ "id": 1151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1152,
+ "id": 1154,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -29392,7 +29592,7 @@
}
},
{
- "id": 1150,
+ "id": 1152,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -29418,7 +29618,7 @@
}
},
{
- "id": 1151,
+ "id": 1153,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -29447,7 +29647,7 @@
"groups": [
{
"title": "Properties",
- "children": [1152, 1150, 1151]
+ "children": [1154, 1152, 1153]
}
],
"sources": [
@@ -29461,7 +29661,7 @@
}
},
{
- "id": 1153,
+ "id": 1155,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29482,7 +29682,7 @@
"groups": [
{
"title": "Properties",
- "children": [1148, 1153]
+ "children": [1150, 1155]
}
],
"sources": [
@@ -29502,7 +29702,7 @@
}
},
{
- "id": 1154,
+ "id": 1156,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -29516,7 +29716,7 @@
],
"parameters": [
{
- "id": 1155,
+ "id": 1157,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -29524,14 +29724,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1156,
+ "id": 1158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1158,
+ "id": 1160,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -29566,7 +29766,7 @@
}
},
{
- "id": 1157,
+ "id": 1159,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -29595,7 +29795,7 @@
"groups": [
{
"title": "Properties",
- "children": [1158, 1157]
+ "children": [1160, 1159]
}
],
"sources": [
@@ -29622,14 +29822,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1159,
+ "id": 1161,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1160,
+ "id": 1162,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29647,7 +29847,7 @@
}
},
{
- "id": 1161,
+ "id": 1163,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29661,7 +29861,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -29670,7 +29870,7 @@
"groups": [
{
"title": "Properties",
- "children": [1160, 1161]
+ "children": [1162, 1163]
}
],
"sources": [
@@ -29685,14 +29885,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1162,
+ "id": 1164,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1163,
+ "id": 1165,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29707,14 +29907,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1164,
+ "id": 1166,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1167,
+ "id": 1169,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -29740,7 +29940,7 @@
}
},
{
- "id": 1165,
+ "id": 1167,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -29766,7 +29966,7 @@
}
},
{
- "id": 1166,
+ "id": 1168,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -29795,7 +29995,7 @@
"groups": [
{
"title": "Properties",
- "children": [1167, 1165, 1166]
+ "children": [1169, 1167, 1168]
}
],
"sources": [
@@ -29809,7 +30009,7 @@
}
},
{
- "id": 1168,
+ "id": 1170,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29830,7 +30030,7 @@
"groups": [
{
"title": "Properties",
- "children": [1163, 1168]
+ "children": [1165, 1170]
}
],
"sources": [
@@ -29850,7 +30050,7 @@
}
},
{
- "id": 1169,
+ "id": 1171,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -29864,7 +30064,7 @@
],
"parameters": [
{
- "id": 1170,
+ "id": 1172,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -29872,14 +30072,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1171,
+ "id": 1173,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1172,
+ "id": 1174,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -29905,7 +30105,7 @@
}
},
{
- "id": 1173,
+ "id": 1175,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -29920,14 +30120,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1174,
+ "id": 1176,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1175,
+ "id": 1177,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -29953,7 +30153,7 @@
}
},
{
- "id": 1176,
+ "id": 1178,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -29987,7 +30187,7 @@
"groups": [
{
"title": "Properties",
- "children": [1175, 1176]
+ "children": [1177, 1178]
}
],
"sources": [
@@ -30004,7 +30204,7 @@
"groups": [
{
"title": "Properties",
- "children": [1172, 1173]
+ "children": [1174, 1175]
}
],
"sources": [
@@ -30031,14 +30231,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1177,
+ "id": 1179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1178,
+ "id": 1180,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30056,7 +30256,7 @@
}
},
{
- "id": 1179,
+ "id": 1181,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30070,7 +30270,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30079,7 +30279,7 @@
"groups": [
{
"title": "Properties",
- "children": [1178, 1179]
+ "children": [1180, 1181]
}
],
"sources": [
@@ -30094,14 +30294,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1180,
+ "id": 1182,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1181,
+ "id": 1183,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30116,14 +30316,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1182,
+ "id": 1184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1185,
+ "id": 1187,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -30149,7 +30349,7 @@
}
},
{
- "id": 1183,
+ "id": 1185,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -30175,7 +30375,7 @@
}
},
{
- "id": 1184,
+ "id": 1186,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30201,7 +30401,7 @@
}
},
{
- "id": 1186,
+ "id": 1188,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -30219,14 +30419,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1187,
+ "id": 1189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1189,
+ "id": 1191,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -30241,14 +30441,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1190,
+ "id": 1192,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1191,
+ "id": 1193,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -30274,7 +30474,7 @@
"groups": [
{
"title": "Properties",
- "children": [1191]
+ "children": [1193]
}
],
"sources": [
@@ -30288,7 +30488,7 @@
}
},
{
- "id": 1188,
+ "id": 1190,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30309,7 +30509,7 @@
"groups": [
{
"title": "Properties",
- "children": [1189, 1188]
+ "children": [1191, 1190]
}
],
"sources": [
@@ -30324,14 +30524,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1192,
+ "id": 1194,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1194,
+ "id": 1196,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -30346,14 +30546,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1195,
+ "id": 1197,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1196,
+ "id": 1198,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -30379,7 +30579,7 @@
"groups": [
{
"title": "Properties",
- "children": [1196]
+ "children": [1198]
}
],
"sources": [
@@ -30393,7 +30593,7 @@
}
},
{
- "id": 1193,
+ "id": 1195,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30414,7 +30614,7 @@
"groups": [
{
"title": "Properties",
- "children": [1194, 1193]
+ "children": [1196, 1195]
}
],
"sources": [
@@ -30433,7 +30633,7 @@
"groups": [
{
"title": "Properties",
- "children": [1185, 1183, 1184, 1186]
+ "children": [1187, 1185, 1186, 1188]
}
],
"sources": [
@@ -30447,7 +30647,7 @@
}
},
{
- "id": 1197,
+ "id": 1199,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30468,7 +30668,7 @@
"groups": [
{
"title": "Properties",
- "children": [1181, 1197]
+ "children": [1183, 1199]
}
],
"sources": [
@@ -30488,7 +30688,7 @@
}
},
{
- "id": 1198,
+ "id": 1200,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -30502,14 +30702,14 @@
],
"parameters": [
{
- "id": 1199,
+ "id": 1201,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1088,
+ "target": 1090,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -30524,7 +30724,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1107,
+ "target": 1109,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -30536,7 +30736,7 @@
]
},
{
- "id": 1224,
+ "id": 1226,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -30550,7 +30750,7 @@
],
"signatures": [
{
- "id": 1225,
+ "id": 1227,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -30572,7 +30772,7 @@
],
"parameters": [
{
- "id": 1226,
+ "id": 1228,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30580,14 +30780,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1227,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1229,
+ "id": 1231,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -30613,7 +30813,7 @@
}
},
{
- "id": 1228,
+ "id": 1230,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -30642,7 +30842,7 @@
"groups": [
{
"title": "Properties",
- "children": [1229, 1228]
+ "children": [1231, 1230]
}
],
"sources": [
@@ -30665,7 +30865,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -30677,7 +30877,7 @@
]
},
{
- "id": 1119,
+ "id": 1121,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -30706,7 +30906,7 @@
],
"signatures": [
{
- "id": 1120,
+ "id": 1122,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -30744,7 +30944,7 @@
],
"parameters": [
{
- "id": 1121,
+ "id": 1123,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30752,14 +30952,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1122,
+ "id": 1124,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1123,
+ "id": 1125,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -30785,7 +30985,7 @@
}
},
{
- "id": 1124,
+ "id": 1126,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -30813,7 +31013,7 @@
}
},
{
- "id": 1125,
+ "id": 1127,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -30844,7 +31044,7 @@
"groups": [
{
"title": "Properties",
- "children": [1123, 1124, 1125]
+ "children": [1125, 1126, 1127]
}
],
"sources": [
@@ -30867,7 +31067,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1279,
+ "target": 1281,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -30877,7 +31077,7 @@
}
},
{
- "id": 1126,
+ "id": 1128,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -30891,7 +31091,7 @@
],
"parameters": [
{
- "id": 1127,
+ "id": 1129,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30899,14 +31099,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1128,
+ "id": 1130,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1129,
+ "id": 1131,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -30932,7 +31132,7 @@
}
},
{
- "id": 1130,
+ "id": 1132,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -30960,7 +31160,7 @@
}
},
{
- "id": 1131,
+ "id": 1133,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -30989,7 +31189,7 @@
"groups": [
{
"title": "Properties",
- "children": [1129, 1130, 1131]
+ "children": [1131, 1132, 1133]
}
],
"sources": [
@@ -31012,7 +31212,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1280,
+ "target": 1282,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -31022,7 +31222,7 @@
}
},
{
- "id": 1132,
+ "id": 1134,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -31036,7 +31236,7 @@
],
"parameters": [
{
- "id": 1133,
+ "id": 1135,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31044,14 +31244,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1134,
+ "id": 1136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1135,
+ "id": 1137,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -31077,7 +31277,7 @@
}
},
{
- "id": 1136,
+ "id": 1138,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -31108,7 +31308,7 @@
"groups": [
{
"title": "Properties",
- "children": [1135, 1136]
+ "children": [1137, 1138]
}
],
"sources": [
@@ -31131,7 +31331,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1281,
+ "target": 1283,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -31141,7 +31341,7 @@
}
},
{
- "id": 1137,
+ "id": 1139,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -31155,14 +31355,14 @@
],
"parameters": [
{
- "id": 1138,
+ "id": 1140,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1071,
+ "target": 1073,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -31177,7 +31377,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1098,
+ "target": 1100,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -31189,7 +31389,7 @@
]
},
{
- "id": 1232,
+ "id": 1234,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -31203,7 +31403,7 @@
],
"signatures": [
{
- "id": 1233,
+ "id": 1235,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -31256,7 +31456,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1113,
+ "target": 1115,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -31268,7 +31468,7 @@
]
},
{
- "id": 1230,
+ "id": 1232,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -31282,7 +31482,7 @@
],
"signatures": [
{
- "id": 1231,
+ "id": 1233,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -31306,7 +31506,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1119
+ "target": 1121
},
{
"kind": "text",
@@ -31320,7 +31520,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1232
+ "target": 1234
},
{
"kind": "text",
@@ -31360,7 +31560,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1108,
+ "target": 1110,
"typeArguments": [
{
"type": "typeOperator",
@@ -31395,7 +31595,7 @@
]
},
{
- "id": 1221,
+ "id": 1223,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -31409,7 +31609,7 @@
],
"signatures": [
{
- "id": 1222,
+ "id": 1224,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -31447,14 +31647,14 @@
],
"parameters": [
{
- "id": 1223,
+ "id": 1225,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1072,
+ "target": 1074,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -31469,7 +31669,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1099,
+ "target": 1101,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -31481,7 +31681,7 @@
]
},
{
- "id": 1200,
+ "id": 1202,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -31510,7 +31710,7 @@
],
"signatures": [
{
- "id": 1201,
+ "id": 1203,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31532,7 +31732,7 @@
],
"parameters": [
{
- "id": 1202,
+ "id": 1204,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31540,14 +31740,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1203,
+ "id": 1205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1205,
+ "id": 1207,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -31573,7 +31773,7 @@
}
},
{
- "id": 1206,
+ "id": 1208,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -31599,7 +31799,7 @@
}
},
{
- "id": 1204,
+ "id": 1206,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31628,7 +31828,7 @@
"groups": [
{
"title": "Properties",
- "children": [1205, 1206, 1204]
+ "children": [1207, 1208, 1206]
}
],
"sources": [
@@ -31651,7 +31851,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31661,7 +31861,7 @@
}
},
{
- "id": 1207,
+ "id": 1209,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31675,7 +31875,7 @@
],
"parameters": [
{
- "id": 1208,
+ "id": 1210,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31683,14 +31883,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1209,
+ "id": 1211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1211,
+ "id": 1213,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -31716,7 +31916,7 @@
}
},
{
- "id": 1212,
+ "id": 1214,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -31742,7 +31942,7 @@
}
},
{
- "id": 1210,
+ "id": 1212,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31771,7 +31971,7 @@
"groups": [
{
"title": "Properties",
- "children": [1211, 1212, 1210]
+ "children": [1213, 1214, 1212]
}
],
"sources": [
@@ -31794,7 +31994,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31804,7 +32004,7 @@
}
},
{
- "id": 1213,
+ "id": 1215,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31818,7 +32018,7 @@
],
"parameters": [
{
- "id": 1214,
+ "id": 1216,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31826,14 +32026,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1215,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1217,
+ "id": 1219,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -31859,7 +32059,7 @@
}
},
{
- "id": 1216,
+ "id": 1218,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31885,7 +32085,7 @@
}
},
{
- "id": 1218,
+ "id": 1220,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -31940,7 +32140,7 @@
"groups": [
{
"title": "Properties",
- "children": [1217, 1216, 1218]
+ "children": [1219, 1218, 1220]
}
],
"sources": [
@@ -31963,7 +32163,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31973,7 +32173,7 @@
}
},
{
- "id": 1219,
+ "id": 1221,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31987,14 +32187,14 @@
],
"parameters": [
{
- "id": 1220,
+ "id": 1222,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1083,
+ "target": 1085,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -32009,7 +32209,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -32024,11 +32224,11 @@
"groups": [
{
"title": "Properties",
- "children": [1234]
+ "children": [1236]
},
{
"title": "Methods",
- "children": [1139, 1224, 1119, 1232, 1230, 1221, 1200]
+ "children": [1141, 1226, 1121, 1234, 1232, 1223, 1202]
}
],
"sources": [
@@ -32040,14 +32240,14 @@
]
},
{
- "id": 1317,
+ "id": 1319,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1320,
+ "id": 1322,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -32067,7 +32267,7 @@
}
},
{
- "id": 1319,
+ "id": 1321,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -32088,7 +32288,7 @@
}
},
{
- "id": 1321,
+ "id": 1323,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -32108,7 +32308,7 @@
}
},
{
- "id": 1318,
+ "id": 1320,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -32142,7 +32342,7 @@
"groups": [
{
"title": "Properties",
- "children": [1320, 1319, 1321, 1318]
+ "children": [1322, 1321, 1323, 1320]
}
],
"sources": [
@@ -32154,7 +32354,7 @@
],
"indexSignatures": [
{
- "id": 1322,
+ "id": 1324,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -32168,7 +32368,7 @@
],
"parameters": [
{
- "id": 1323,
+ "id": 1325,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -32187,7 +32387,7 @@
]
},
{
- "id": 1297,
+ "id": 1299,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -32213,7 +32413,7 @@
},
"children": [
{
- "id": 1313,
+ "id": 1315,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -32229,7 +32429,7 @@
],
"type": {
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -32240,7 +32440,7 @@
}
},
{
- "id": 1305,
+ "id": 1307,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -32258,14 +32458,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 807,
+ "target": 809,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1303,
+ "id": 1305,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -32281,13 +32481,13 @@
],
"type": {
"type": "reference",
- "target": 833,
+ "target": 835,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1309,
+ "id": 1311,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -32324,7 +32524,7 @@
}
},
{
- "id": 1298,
+ "id": 1300,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -32344,7 +32544,7 @@
}
},
{
- "id": 1310,
+ "id": 1312,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -32369,7 +32569,7 @@
}
},
{
- "id": 1311,
+ "id": 1313,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -32394,7 +32594,7 @@
}
},
{
- "id": 1300,
+ "id": 1302,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -32414,7 +32614,7 @@
}
},
{
- "id": 1307,
+ "id": 1309,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -32439,7 +32639,7 @@
}
},
{
- "id": 1301,
+ "id": 1303,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -32459,7 +32659,7 @@
}
},
{
- "id": 1302,
+ "id": 1304,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -32479,7 +32679,7 @@
}
},
{
- "id": 1299,
+ "id": 1301,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -32499,7 +32699,7 @@
}
},
{
- "id": 1306,
+ "id": 1308,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -32519,7 +32719,7 @@
}
},
{
- "id": 1312,
+ "id": 1314,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -32544,7 +32744,7 @@
}
},
{
- "id": 1314,
+ "id": 1316,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -32569,7 +32769,7 @@
}
},
{
- "id": 1308,
+ "id": 1310,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -32594,7 +32794,7 @@
}
},
{
- "id": 1304,
+ "id": 1306,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -32610,7 +32810,7 @@
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 840,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -32620,8 +32820,8 @@
{
"title": "Properties",
"children": [
- 1313, 1305, 1303, 1309, 1298, 1310, 1311, 1300, 1307, 1301, 1302, 1299, 1306, 1312,
- 1314, 1308, 1304
+ 1315, 1307, 1305, 1311, 1300, 1312, 1313, 1302, 1309, 1303, 1304, 1301, 1308, 1314,
+ 1316, 1310, 1306
]
}
],
@@ -32634,7 +32834,7 @@
],
"indexSignatures": [
{
- "id": 1315,
+ "id": 1317,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -32648,7 +32848,7 @@
],
"parameters": [
{
- "id": 1316,
+ "id": 1318,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -32668,21 +32868,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1287,
+ "target": 1289,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 861,
+ "id": 863,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 863,
+ "id": 865,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -32705,7 +32905,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 864,
+ "id": 866,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32719,7 +32919,7 @@
],
"signatures": [
{
- "id": 865,
+ "id": 867,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -32733,20 +32933,20 @@
],
"parameters": [
{
- "id": 866,
+ "id": 868,
"name": "event",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 702,
+ "target": 704,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
},
{
- "id": 867,
+ "id": 869,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -32778,7 +32978,7 @@
}
},
{
- "id": 862,
+ "id": 864,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -32813,7 +33013,7 @@
}
},
{
- "id": 868,
+ "id": 870,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -32836,7 +33036,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 869,
+ "id": 871,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32850,7 +33050,7 @@
],
"signatures": [
{
- "id": 870,
+ "id": 872,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -32875,7 +33075,7 @@
"groups": [
{
"title": "Properties",
- "children": [863, 862, 868]
+ "children": [865, 864, 870]
}
],
"sources": [
@@ -32887,14 +33087,14 @@
]
},
{
- "id": 833,
+ "id": 835,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 834,
+ "id": 836,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -32922,7 +33122,7 @@
}
},
{
- "id": 835,
+ "id": 837,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -32956,7 +33156,7 @@
"groups": [
{
"title": "Properties",
- "children": [834, 835]
+ "children": [836, 837]
}
],
"sources": [
@@ -32968,7 +33168,7 @@
],
"indexSignatures": [
{
- "id": 836,
+ "id": 838,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -32982,7 +33182,7 @@
],
"parameters": [
{
- "id": 837,
+ "id": 839,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33001,14 +33201,14 @@
]
},
{
- "id": 842,
+ "id": 844,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 847,
+ "id": 849,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -33052,7 +33252,7 @@
}
},
{
- "id": 843,
+ "id": 845,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -33080,7 +33280,7 @@
}
},
{
- "id": 846,
+ "id": 848,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -33108,7 +33308,7 @@
}
},
{
- "id": 845,
+ "id": 847,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -33136,7 +33336,7 @@
}
},
{
- "id": 844,
+ "id": 846,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -33167,7 +33367,7 @@
"groups": [
{
"title": "Properties",
- "children": [847, 843, 846, 845, 844]
+ "children": [849, 845, 848, 847, 846]
}
],
"sources": [
@@ -33179,14 +33379,14 @@
]
},
{
- "id": 810,
+ "id": 812,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 819,
+ "id": 821,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -33206,7 +33406,7 @@
}
},
{
- "id": 811,
+ "id": 813,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -33224,7 +33424,7 @@
}
},
{
- "id": 813,
+ "id": 815,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -33241,7 +33441,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 814,
+ "id": 816,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -33255,7 +33455,7 @@
],
"indexSignatures": [
{
- "id": 815,
+ "id": 817,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33269,7 +33469,7 @@
],
"parameters": [
{
- "id": 816,
+ "id": 818,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33290,7 +33490,7 @@
}
},
{
- "id": 817,
+ "id": 819,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -33308,7 +33508,7 @@
}
},
{
- "id": 820,
+ "id": 822,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -33328,7 +33528,7 @@
}
},
{
- "id": 818,
+ "id": 820,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -33346,7 +33546,7 @@
}
},
{
- "id": 821,
+ "id": 823,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -33366,7 +33566,7 @@
}
},
{
- "id": 812,
+ "id": 814,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -33387,7 +33587,7 @@
"groups": [
{
"title": "Properties",
- "children": [819, 811, 813, 817, 820, 818, 821, 812]
+ "children": [821, 813, 815, 819, 822, 820, 823, 814]
}
],
"sources": [
@@ -33399,7 +33599,7 @@
]
},
{
- "id": 838,
+ "id": 840,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -33413,7 +33613,7 @@
],
"indexSignatures": [
{
- "id": 839,
+ "id": 841,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33427,7 +33627,7 @@
],
"parameters": [
{
- "id": 840,
+ "id": 842,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33446,14 +33646,14 @@
]
},
{
- "id": 991,
+ "id": 993,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 992,
+ "id": 994,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -33479,7 +33679,7 @@
}
},
{
- "id": 995,
+ "id": 997,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -33496,14 +33696,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 996,
+ "id": 998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 998,
+ "id": 1000,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -33537,7 +33737,7 @@
}
},
{
- "id": 997,
+ "id": 999,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -33568,7 +33768,7 @@
"groups": [
{
"title": "Properties",
- "children": [998, 997]
+ "children": [1000, 999]
}
],
"sources": [
@@ -33582,7 +33782,7 @@
}
},
{
- "id": 993,
+ "id": 995,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -33608,7 +33808,7 @@
}
},
{
- "id": 994,
+ "id": 996,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -33630,7 +33830,7 @@
],
"type": {
"type": "reference",
- "target": 1003,
+ "target": 1005,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -33639,7 +33839,7 @@
"groups": [
{
"title": "Properties",
- "children": [992, 995, 993, 994]
+ "children": [994, 997, 995, 996]
}
],
"sources": [
@@ -33651,14 +33851,14 @@
]
},
{
- "id": 983,
+ "id": 985,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 987,
+ "id": 989,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -33675,14 +33875,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 988,
+ "id": 990,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 990,
+ "id": 992,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -33716,7 +33916,7 @@
}
},
{
- "id": 989,
+ "id": 991,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -33747,7 +33947,7 @@
"groups": [
{
"title": "Properties",
- "children": [990, 989]
+ "children": [992, 991]
}
],
"sources": [
@@ -33761,7 +33961,7 @@
}
},
{
- "id": 984,
+ "id": 986,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -33787,7 +33987,7 @@
}
},
{
- "id": 985,
+ "id": 987,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -33813,7 +34013,7 @@
}
},
{
- "id": 986,
+ "id": 988,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -33835,7 +34035,7 @@
],
"type": {
"type": "reference",
- "target": 1002,
+ "target": 1004,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -33844,7 +34044,7 @@
"groups": [
{
"title": "Properties",
- "children": [987, 984, 985, 986]
+ "children": [989, 986, 987, 988]
}
],
"sources": [
@@ -33856,14 +34056,14 @@
]
},
{
- "id": 999,
+ "id": 1001,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1000,
+ "id": 1002,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -33889,7 +34089,7 @@
}
},
{
- "id": 1001,
+ "id": 1003,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -33911,7 +34111,7 @@
],
"type": {
"type": "reference",
- "target": 1003,
+ "target": 1005,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -33920,7 +34120,7 @@
"groups": [
{
"title": "Properties",
- "children": [1000, 1001]
+ "children": [1002, 1003]
}
],
"sources": [
@@ -33932,14 +34132,14 @@
]
},
{
- "id": 2183,
+ "id": 2200,
"name": "WebSocketLike",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 2226,
+ "id": 2243,
"name": "binaryType",
"variant": "declaration",
"kind": 1024,
@@ -33959,7 +34159,7 @@
}
},
{
- "id": 2227,
+ "id": 2244,
"name": "bufferedAmount",
"variant": "declaration",
"kind": 1024,
@@ -33979,7 +34179,7 @@
}
},
{
- "id": 2187,
+ "id": 2204,
"name": "CLOSED",
"variant": "declaration",
"kind": 1024,
@@ -33999,7 +34199,7 @@
}
},
{
- "id": 2186,
+ "id": 2203,
"name": "CLOSING",
"variant": "declaration",
"kind": 1024,
@@ -34019,7 +34219,7 @@
}
},
{
- "id": 2184,
+ "id": 2201,
"name": "CONNECTING",
"variant": "declaration",
"kind": 1024,
@@ -34039,7 +34239,7 @@
}
},
{
- "id": 2229,
+ "id": 2246,
"name": "dispatchEvent",
"variant": "declaration",
"kind": 1024,
@@ -34056,7 +34256,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2230,
+ "id": 2247,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34070,7 +34270,7 @@
],
"signatures": [
{
- "id": 2231,
+ "id": 2248,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34084,7 +34284,7 @@
],
"parameters": [
{
- "id": 2232,
+ "id": 2249,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -34110,7 +34310,7 @@
}
},
{
- "id": 2228,
+ "id": 2245,
"name": "extensions",
"variant": "declaration",
"kind": 1024,
@@ -34130,7 +34330,7 @@
}
},
{
- "id": 2208,
+ "id": 2225,
"name": "onclose",
"variant": "declaration",
"kind": 1024,
@@ -34152,7 +34352,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2209,
+ "id": 2226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34166,7 +34366,7 @@
],
"signatures": [
{
- "id": 2210,
+ "id": 2227,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34180,7 +34380,7 @@
],
"parameters": [
{
- "id": 2211,
+ "id": 2228,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34191,7 +34391,7 @@
}
},
{
- "id": 2212,
+ "id": 2229,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34219,7 +34419,7 @@
}
},
{
- "id": 2213,
+ "id": 2230,
"name": "onerror",
"variant": "declaration",
"kind": 1024,
@@ -34241,7 +34441,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2214,
+ "id": 2231,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34255,7 +34455,7 @@
],
"signatures": [
{
- "id": 2215,
+ "id": 2232,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34269,7 +34469,7 @@
],
"parameters": [
{
- "id": 2216,
+ "id": 2233,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34280,7 +34480,7 @@
}
},
{
- "id": 2217,
+ "id": 2234,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34308,7 +34508,7 @@
}
},
{
- "id": 2203,
+ "id": 2220,
"name": "onmessage",
"variant": "declaration",
"kind": 1024,
@@ -34330,7 +34530,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2204,
+ "id": 2221,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34344,7 +34544,7 @@
],
"signatures": [
{
- "id": 2205,
+ "id": 2222,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34358,7 +34558,7 @@
],
"parameters": [
{
- "id": 2206,
+ "id": 2223,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34369,7 +34569,7 @@
}
},
{
- "id": 2207,
+ "id": 2224,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34397,7 +34597,7 @@
}
},
{
- "id": 2198,
+ "id": 2215,
"name": "onopen",
"variant": "declaration",
"kind": 1024,
@@ -34419,7 +34619,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2199,
+ "id": 2216,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34433,7 +34633,7 @@
],
"signatures": [
{
- "id": 2200,
+ "id": 2217,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34447,7 +34647,7 @@
],
"parameters": [
{
- "id": 2201,
+ "id": 2218,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34458,7 +34658,7 @@
}
},
{
- "id": 2202,
+ "id": 2219,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34486,7 +34686,7 @@
}
},
{
- "id": 2185,
+ "id": 2202,
"name": "OPEN",
"variant": "declaration",
"kind": 1024,
@@ -34506,7 +34706,7 @@
}
},
{
- "id": 2190,
+ "id": 2207,
"name": "protocol",
"variant": "declaration",
"kind": 1024,
@@ -34526,7 +34726,7 @@
}
},
{
- "id": 2188,
+ "id": 2205,
"name": "readyState",
"variant": "declaration",
"kind": 1024,
@@ -34546,7 +34746,7 @@
}
},
{
- "id": 2189,
+ "id": 2206,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -34566,7 +34766,7 @@
}
},
{
- "id": 2218,
+ "id": 2235,
"name": "addEventListener",
"variant": "declaration",
"kind": 2048,
@@ -34580,7 +34780,7 @@
],
"signatures": [
{
- "id": 2219,
+ "id": 2236,
"name": "addEventListener",
"variant": "signature",
"kind": 4096,
@@ -34602,7 +34802,7 @@
],
"parameters": [
{
- "id": 2220,
+ "id": 2237,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -34613,7 +34813,7 @@
}
},
{
- "id": 2221,
+ "id": 2238,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -34637,7 +34837,7 @@
]
},
{
- "id": 2191,
+ "id": 2208,
"name": "close",
"variant": "declaration",
"kind": 2048,
@@ -34651,7 +34851,7 @@
],
"signatures": [
{
- "id": 2192,
+ "id": 2209,
"name": "close",
"variant": "signature",
"kind": 4096,
@@ -34673,7 +34873,7 @@
],
"parameters": [
{
- "id": 2193,
+ "id": 2210,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -34686,7 +34886,7 @@
}
},
{
- "id": 2194,
+ "id": 2211,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -34707,7 +34907,7 @@
]
},
{
- "id": 2222,
+ "id": 2239,
"name": "removeEventListener",
"variant": "declaration",
"kind": 2048,
@@ -34721,7 +34921,7 @@
],
"signatures": [
{
- "id": 2223,
+ "id": 2240,
"name": "removeEventListener",
"variant": "signature",
"kind": 4096,
@@ -34743,7 +34943,7 @@
],
"parameters": [
{
- "id": 2224,
+ "id": 2241,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -34754,7 +34954,7 @@
}
},
{
- "id": 2225,
+ "id": 2242,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -34778,7 +34978,7 @@
]
},
{
- "id": 2195,
+ "id": 2212,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -34792,7 +34992,7 @@
],
"signatures": [
{
- "id": 2196,
+ "id": 2213,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -34814,7 +35014,7 @@
],
"parameters": [
{
- "id": 2197,
+ "id": 2214,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -34880,13 +35080,13 @@
{
"title": "Properties",
"children": [
- 2226, 2227, 2187, 2186, 2184, 2229, 2228, 2208, 2213, 2203, 2198, 2185, 2190, 2188,
- 2189
+ 2243, 2244, 2204, 2203, 2201, 2246, 2245, 2225, 2230, 2220, 2215, 2202, 2207, 2205,
+ 2206
]
},
{
"title": "Methods",
- "children": [2218, 2191, 2222, 2195]
+ "children": [2235, 2208, 2239, 2212]
}
],
"sources": [
@@ -34898,7 +35098,7 @@
]
},
{
- "id": 2233,
+ "id": 2250,
"name": "WebSocketLikeConstructor",
"variant": "declaration",
"kind": 256,
@@ -34921,7 +35121,7 @@
},
"children": [
{
- "id": 2234,
+ "id": 2251,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -34935,7 +35135,7 @@
],
"signatures": [
{
- "id": 2235,
+ "id": 2252,
"name": "WebSocketLikeConstructor",
"variant": "signature",
"kind": 16384,
@@ -34949,7 +35149,7 @@
],
"parameters": [
{
- "id": 2236,
+ "id": 2253,
"name": "address",
"variant": "param",
"kind": 32768,
@@ -34974,7 +35174,7 @@
}
},
{
- "id": 2237,
+ "id": 2254,
"name": "subprotocols",
"variant": "param",
"kind": 32768,
@@ -35001,7 +35201,7 @@
],
"type": {
"type": "reference",
- "target": 2183,
+ "target": 2200,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -35012,7 +35212,7 @@
"groups": [
{
"title": "Constructors",
- "children": [2234]
+ "children": [2251]
}
],
"sources": [
@@ -35024,7 +35224,7 @@
],
"indexSignatures": [
{
- "id": 2238,
+ "id": 2255,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -35038,7 +35238,7 @@
],
"parameters": [
{
- "id": 2239,
+ "id": 2256,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -35057,7 +35257,7 @@
]
},
{
- "id": 805,
+ "id": 807,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -35102,7 +35302,7 @@
{
"type": "reflection",
"declaration": {
- "id": 806,
+ "id": 808,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35122,7 +35322,7 @@
}
},
{
- "id": 702,
+ "id": 704,
"name": "AuthChangeEvent",
"variant": "declaration",
"kind": 2097152,
@@ -35163,7 +35363,7 @@
},
{
"type": "reference",
- "target": 701,
+ "target": 703,
"name": "AuthChangeEventMFA",
"package": "@supabase/auth-js"
}
@@ -35171,7 +35371,7 @@
}
},
{
- "id": 701,
+ "id": 703,
"name": "AuthChangeEventMFA",
"variant": "declaration",
"kind": 2097152,
@@ -35189,7 +35389,7 @@
}
},
{
- "id": 1112,
+ "id": 1114,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -35216,7 +35416,7 @@
}
},
{
- "id": 907,
+ "id": 909,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -35243,7 +35443,7 @@
}
},
{
- "id": 1238,
+ "id": 1240,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -35267,14 +35467,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1241,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1240,
+ "id": 1242,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -35300,7 +35500,7 @@
}
},
{
- "id": 1241,
+ "id": 1243,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -35329,7 +35529,7 @@
"groups": [
{
"title": "Properties",
- "children": [1240, 1241]
+ "children": [1242, 1243]
}
],
"sources": [
@@ -35343,7 +35543,7 @@
}
},
{
- "id": 1235,
+ "id": 1237,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35366,19 +35566,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1236,
+ "id": 1238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1237,
+ "id": 1239,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -35407,7 +35607,7 @@
"groups": [
{
"title": "Properties",
- "children": [1237]
+ "children": [1239]
}
],
"sources": [
@@ -35425,7 +35625,7 @@
}
},
{
- "id": 1245,
+ "id": 1247,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -35449,14 +35649,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1246,
+ "id": 1248,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1247,
+ "id": 1249,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -35485,7 +35685,7 @@
"groups": [
{
"title": "Properties",
- "children": [1247]
+ "children": [1249]
}
],
"sources": [
@@ -35499,7 +35699,7 @@
}
},
{
- "id": 1242,
+ "id": 1244,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35522,19 +35722,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1243,
+ "id": 1245,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1244,
+ "id": 1246,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -35558,7 +35758,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 823,
+ "target": 825,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -35568,7 +35768,7 @@
"groups": [
{
"title": "Properties",
- "children": [1244]
+ "children": [1246]
}
],
"sources": [
@@ -35586,7 +35786,7 @@
}
},
{
- "id": 1103,
+ "id": 1105,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35600,11 +35800,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35645,7 +35845,7 @@
}
},
{
- "id": 1107,
+ "id": 1109,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35662,19 +35862,19 @@
"types": [
{
"type": "reference",
- "target": 1102,
+ "target": 1104,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1103,
+ "target": 1105,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1104,
+ "target": 1106,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -35682,7 +35882,7 @@
}
},
{
- "id": 1102,
+ "id": 1104,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35696,11 +35896,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35741,7 +35941,7 @@
}
},
{
- "id": 1104,
+ "id": 1106,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35776,11 +35976,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35821,7 +36021,7 @@
}
},
{
- "id": 1105,
+ "id": 1107,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -35843,7 +36043,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35880,7 +36080,7 @@
}
},
{
- "id": 1106,
+ "id": 1108,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35902,11 +36102,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1105,
+ "target": 1107,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -35916,7 +36116,7 @@
}
},
{
- "id": 1280,
+ "id": 1282,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35930,11 +36130,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35975,7 +36175,7 @@
}
},
{
- "id": 1098,
+ "id": 1100,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35992,19 +36192,19 @@
"types": [
{
"type": "reference",
- "target": 1279,
+ "target": 1281,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1280,
+ "target": 1282,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1281,
+ "target": 1283,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -36012,7 +36212,7 @@
}
},
{
- "id": 1279,
+ "id": 1281,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36026,11 +36226,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -36071,7 +36271,7 @@
}
},
{
- "id": 1281,
+ "id": 1283,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36106,11 +36306,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -36151,7 +36351,7 @@
}
},
{
- "id": 1113,
+ "id": 1115,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36165,19 +36365,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1114,
+ "id": 1116,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1117,
+ "id": 1119,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -36201,14 +36401,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 807,
+ "target": 809,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1115,
+ "id": 1117,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -36233,7 +36433,7 @@
"types": [
{
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -36245,7 +36445,7 @@
}
},
{
- "id": 1116,
+ "id": 1118,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -36265,7 +36465,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1139
+ "target": 1141
}
]
}
@@ -36283,7 +36483,7 @@
"types": [
{
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -36298,7 +36498,7 @@
"groups": [
{
"title": "Properties",
- "children": [1117, 1115, 1116]
+ "children": [1119, 1117, 1118]
}
],
"sources": [
@@ -36316,7 +36516,7 @@
}
},
{
- "id": 1108,
+ "id": 1110,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36338,7 +36538,7 @@
],
"typeParameters": [
{
- "id": 1111,
+ "id": 1113,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -36373,7 +36573,7 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "intersection",
@@ -36381,14 +36581,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1109,
+ "id": 1111,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1110,
+ "id": 1112,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -36412,11 +36612,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 825,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -36430,7 +36630,7 @@
"groups": [
{
"title": "Properties",
- "children": [1110]
+ "children": [1112]
}
],
"sources": [
@@ -36453,7 +36653,7 @@
},
"objectType": {
"type": "reference",
- "target": 1111,
+ "target": 1113,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -36463,11 +36663,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 825,
"typeArguments": [
{
"type": "reference",
@@ -36501,7 +36701,7 @@
}
},
{
- "id": 1099,
+ "id": 1101,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36515,19 +36715,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1100,
+ "id": 1102,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1101,
+ "id": 1103,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36556,7 +36756,7 @@
"groups": [
{
"title": "Properties",
- "children": [1101]
+ "children": [1103]
}
],
"sources": [
@@ -36574,7 +36774,7 @@
}
},
{
- "id": 1097,
+ "id": 1099,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36596,11 +36796,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1090,
+ "target": 1092,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -36610,7 +36810,7 @@
}
},
{
- "id": 1090,
+ "id": 1092,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -36633,14 +36833,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1091,
+ "id": 1093,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1092,
+ "id": 1094,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -36666,7 +36866,7 @@
}
},
{
- "id": 1094,
+ "id": 1096,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -36692,7 +36892,7 @@
}
},
{
- "id": 1095,
+ "id": 1097,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -36718,7 +36918,7 @@
}
},
{
- "id": 1093,
+ "id": 1095,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -36752,7 +36952,7 @@
}
},
{
- "id": 1096,
+ "id": 1098,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -36783,7 +36983,7 @@
"groups": [
{
"title": "Properties",
- "children": [1092, 1094, 1095, 1093, 1096]
+ "children": [1094, 1096, 1097, 1095, 1098]
}
],
"sources": [
@@ -36797,7 +36997,7 @@
}
},
{
- "id": 1413,
+ "id": 1415,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36819,11 +37019,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1403,
+ "target": 1405,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
}
@@ -36833,7 +37033,7 @@
}
},
{
- "id": 1414,
+ "id": 1416,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36855,19 +37055,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1415,
+ "id": 1417,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1416,
+ "id": 1418,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -36896,7 +37096,7 @@
"groups": [
{
"title": "Properties",
- "children": [1416]
+ "children": [1418]
}
],
"sources": [
@@ -36914,7 +37114,93 @@
}
},
{
- "id": 771,
+ "id": 1424,
+ "name": "AuthOAuthGrantsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for listing user's OAuth grants.\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": 1397,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 747,
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1419,
+ "name": "OAuthGrant",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1425,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for revoking an OAuth grant.\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": 1402,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 747,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1426,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1402,
+ "character": 57
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 773,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36941,19 +37227,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 772,
+ "id": 774,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 775,
+ "id": 777,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -36982,7 +37268,7 @@
}
},
{
- "id": 774,
+ "id": 776,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37000,7 +37286,7 @@
}
},
{
- "id": 773,
+ "id": 775,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37021,7 +37307,7 @@
"groups": [
{
"title": "Properties",
- "children": [775, 774, 773]
+ "children": [777, 776, 775]
}
],
"sources": [
@@ -37039,7 +37325,7 @@
}
},
{
- "id": 762,
+ "id": 764,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37053,19 +37339,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 763,
+ "id": 765,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 765,
+ "id": 767,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37094,7 +37380,7 @@
}
},
{
- "id": 764,
+ "id": 766,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37126,7 +37412,7 @@
"groups": [
{
"title": "Properties",
- "children": [765, 764]
+ "children": [767, 766]
}
],
"sources": [
@@ -37144,7 +37430,7 @@
}
},
{
- "id": 766,
+ "id": 768,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -37158,19 +37444,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 767,
+ "id": 769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 769,
+ "id": 771,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37199,7 +37485,7 @@
}
},
{
- "id": 768,
+ "id": 770,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37228,7 +37514,7 @@
}
},
{
- "id": 770,
+ "id": 772,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -37247,7 +37533,7 @@
"types": [
{
"type": "reference",
- "target": 736,
+ "target": 738,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -37262,7 +37548,7 @@
"groups": [
{
"title": "Properties",
- "children": [769, 768, 770]
+ "children": [771, 770, 772]
}
],
"sources": [
@@ -37280,7 +37566,7 @@
}
},
{
- "id": 776,
+ "id": 778,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37294,19 +37580,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 777,
+ "id": 779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 779,
+ "id": 781,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37326,7 +37612,7 @@
}
},
{
- "id": 778,
+ "id": 780,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37349,7 +37635,7 @@
"groups": [
{
"title": "Properties",
- "children": [779, 778]
+ "children": [781, 780]
}
],
"sources": [
@@ -37367,7 +37653,7 @@
}
},
{
- "id": 780,
+ "id": 782,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -37381,19 +37667,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 781,
+ "id": 783,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 783,
+ "id": 785,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37413,7 +37699,7 @@
}
},
{
- "id": 782,
+ "id": 784,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37433,7 +37719,7 @@
}
},
{
- "id": 784,
+ "id": 786,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -37449,7 +37735,7 @@
],
"type": {
"type": "reference",
- "target": 736,
+ "target": 738,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -37458,7 +37744,7 @@
"groups": [
{
"title": "Properties",
- "children": [783, 782, 784]
+ "children": [785, 784, 786]
}
],
"sources": [
@@ -37476,7 +37762,7 @@
}
},
{
- "id": 1261,
+ "id": 1263,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -37490,7 +37776,7 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
@@ -37504,7 +37790,7 @@
}
},
{
- "id": 1346,
+ "id": 1348,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -37527,14 +37813,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1347,
+ "id": 1349,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1348,
+ "id": 1350,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -37560,7 +37846,7 @@
}
},
{
- "id": 1349,
+ "id": 1351,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -37588,7 +37874,7 @@
}
},
{
- "id": 1351,
+ "id": 1353,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -37614,14 +37900,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1326,
+ "target": 1328,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1350,
+ "id": 1352,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -37650,7 +37936,7 @@
}
},
{
- "id": 1352,
+ "id": 1354,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -37676,14 +37962,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1327,
+ "target": 1329,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1353,
+ "id": 1355,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -37714,7 +38000,7 @@
"groups": [
{
"title": "Properties",
- "children": [1348, 1349, 1351, 1350, 1352, 1353]
+ "children": [1350, 1351, 1353, 1352, 1354, 1355]
}
],
"sources": [
@@ -37728,7 +38014,7 @@
}
},
{
- "id": 1003,
+ "id": 1005,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -37771,7 +38057,7 @@
}
},
{
- "id": 963,
+ "id": 965,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -37794,7 +38080,7 @@
}
},
{
- "id": 964,
+ "id": 966,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -37812,14 +38098,14 @@
{
"type": "reflection",
"declaration": {
- "id": 965,
+ "id": 967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 966,
+ "id": 968,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -37837,7 +38123,7 @@
}
},
{
- "id": 969,
+ "id": 971,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -37854,14 +38140,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 970,
+ "id": 972,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 972,
+ "id": 974,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -37889,7 +38175,7 @@
}
},
{
- "id": 973,
+ "id": 975,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -37957,7 +38243,7 @@
}
},
{
- "id": 971,
+ "id": 973,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -37988,7 +38274,7 @@
"groups": [
{
"title": "Properties",
- "children": [972, 973, 971]
+ "children": [974, 975, 973]
}
],
"sources": [
@@ -38002,7 +38288,7 @@
}
},
{
- "id": 968,
+ "id": 970,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -38030,7 +38316,7 @@
}
},
{
- "id": 967,
+ "id": 969,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -38062,7 +38348,7 @@
],
"type": {
"type": "reference",
- "target": 963,
+ "target": 965,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -38071,7 +38357,7 @@
"groups": [
{
"title": "Properties",
- "children": [966, 969, 968, 967]
+ "children": [968, 971, 970, 969]
}
],
"sources": [
@@ -38086,14 +38372,14 @@
{
"type": "reflection",
"declaration": {
- "id": 974,
+ "id": 976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 975,
+ "id": 977,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -38111,7 +38397,7 @@
}
},
{
- "id": 976,
+ "id": 978,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -38161,7 +38447,7 @@
}
},
{
- "id": 978,
+ "id": 980,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -38178,14 +38464,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 979,
+ "id": 981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 980,
+ "id": 982,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -38216,7 +38502,7 @@
"groups": [
{
"title": "Properties",
- "children": [980]
+ "children": [982]
}
],
"sources": [
@@ -38230,7 +38516,7 @@
}
},
{
- "id": 977,
+ "id": 979,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -38264,7 +38550,7 @@
"groups": [
{
"title": "Properties",
- "children": [975, 976, 978, 977]
+ "children": [977, 978, 980, 979]
}
],
"sources": [
@@ -38280,7 +38566,7 @@
}
},
{
- "id": 823,
+ "id": 825,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -38304,7 +38590,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1119
+ "target": 1121
},
{
"kind": "text",
@@ -38318,7 +38604,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1230
+ "target": 1232
},
{
"kind": "text",
@@ -38350,26 +38636,26 @@
],
"typeParameters": [
{
- "id": 831,
+ "id": 833,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 822,
+ "target": 824,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 822,
+ "target": 824,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 832,
+ "id": 834,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -38408,14 +38694,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 824,
+ "id": 826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 829,
+ "id": 831,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -38433,7 +38719,7 @@
}
},
{
- "id": 827,
+ "id": 829,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -38471,14 +38757,14 @@
],
"type": {
"type": "reference",
- "target": 831,
+ "target": 833,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 826,
+ "id": 828,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -38506,7 +38792,7 @@
}
},
{
- "id": 825,
+ "id": 827,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -38532,7 +38818,7 @@
}
},
{
- "id": 828,
+ "id": 830,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -38582,14 +38868,14 @@
],
"type": {
"type": "reference",
- "target": 832,
+ "target": 834,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 830,
+ "id": 832,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -38610,7 +38896,7 @@
"groups": [
{
"title": "Properties",
- "children": [829, 827, 826, 825, 828, 830]
+ "children": [831, 829, 828, 827, 830, 832]
}
],
"sources": [
@@ -38624,7 +38910,7 @@
}
},
{
- "id": 822,
+ "id": 824,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -39043,7 +39329,7 @@
}
},
{
- "id": 1049,
+ "id": 1051,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39058,14 +39344,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1050,
+ "id": 1052,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1052,
+ "id": 1054,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39091,7 +39377,7 @@
}
},
{
- "id": 1053,
+ "id": 1055,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -39117,7 +39403,7 @@
}
},
{
- "id": 1054,
+ "id": 1056,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39140,7 +39426,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39154,7 +39440,7 @@
}
},
{
- "id": 1051,
+ "id": 1053,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39184,7 +39470,7 @@
"groups": [
{
"title": "Properties",
- "children": [1052, 1053, 1054, 1051]
+ "children": [1054, 1055, 1056, 1053]
}
],
"sources": [
@@ -39198,7 +39484,7 @@
}
},
{
- "id": 1039,
+ "id": 1041,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39213,14 +39499,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1040,
+ "id": 1042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1042,
+ "id": 1044,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39246,7 +39532,7 @@
}
},
{
- "id": 1043,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39269,7 +39555,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39292,7 +39578,7 @@
}
},
{
- "id": 1041,
+ "id": 1043,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39322,7 +39608,7 @@
"groups": [
{
"title": "Properties",
- "children": [1042, 1043, 1041]
+ "children": [1044, 1045, 1043]
}
],
"sources": [
@@ -39336,7 +39622,7 @@
}
},
{
- "id": 1058,
+ "id": 1060,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39353,25 +39639,25 @@
"types": [
{
"type": "reference",
- "target": 1033,
+ "target": 1035,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1039,
+ "target": 1041,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1044,
+ "target": 1046,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1049,
+ "target": 1051,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -39379,7 +39665,7 @@
}
},
{
- "id": 1063,
+ "id": 1065,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -39402,14 +39688,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1064,
+ "id": 1066,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1065,
+ "id": 1067,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -39435,7 +39721,7 @@
}
},
{
- "id": 1066,
+ "id": 1068,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -39461,7 +39747,7 @@
}
},
{
- "id": 1067,
+ "id": 1069,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -39487,7 +39773,7 @@
}
},
{
- "id": 1068,
+ "id": 1070,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -39513,7 +39799,7 @@
}
},
{
- "id": 1069,
+ "id": 1071,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -39535,7 +39821,7 @@
],
"type": {
"type": "reference",
- "target": 1070,
+ "target": 1072,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -39544,7 +39830,7 @@
"groups": [
{
"title": "Properties",
- "children": [1065, 1066, 1067, 1068, 1069]
+ "children": [1067, 1068, 1069, 1070, 1071]
}
],
"sources": [
@@ -39558,7 +39844,7 @@
}
},
{
- "id": 1059,
+ "id": 1061,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -39572,19 +39858,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1060,
+ "id": 1062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1061,
+ "id": 1063,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -39598,13 +39884,13 @@
],
"type": {
"type": "reference",
- "target": 1063,
+ "target": 1065,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1062,
+ "id": 1064,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -39627,7 +39913,7 @@
"groups": [
{
"title": "Properties",
- "children": [1061, 1062]
+ "children": [1063, 1064]
}
],
"sources": [
@@ -39645,7 +39931,7 @@
}
},
{
- "id": 1070,
+ "id": 1072,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -39688,7 +39974,7 @@
}
},
{
- "id": 1044,
+ "id": 1046,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39703,14 +39989,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1045,
+ "id": 1047,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1049,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39736,7 +40022,7 @@
}
},
{
- "id": 1048,
+ "id": 1050,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39759,7 +40045,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39773,7 +40059,7 @@
}
},
{
- "id": 1046,
+ "id": 1048,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39794,7 +40080,7 @@
"groups": [
{
"title": "Properties",
- "children": [1047, 1048, 1046]
+ "children": [1049, 1050, 1048]
}
],
"sources": [
@@ -39808,7 +40094,7 @@
}
},
{
- "id": 1033,
+ "id": 1035,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39823,14 +40109,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1034,
+ "id": 1036,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1036,
+ "id": 1038,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39848,7 +40134,7 @@
}
},
{
- "id": 1038,
+ "id": 1040,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39871,7 +40157,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39894,7 +40180,7 @@
}
},
{
- "id": 1037,
+ "id": 1039,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -39912,7 +40198,7 @@
}
},
{
- "id": 1035,
+ "id": 1037,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39933,7 +40219,7 @@
"groups": [
{
"title": "Properties",
- "children": [1036, 1038, 1037, 1035]
+ "children": [1038, 1040, 1039, 1037]
}
],
"sources": [
@@ -39947,7 +40233,7 @@
}
},
{
- "id": 712,
+ "id": 714,
"name": "GoTrueClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -39962,14 +40248,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 713,
+ "id": 715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 721,
+ "id": 723,
"name": "autoRefreshToken",
"variant": "declaration",
"kind": 1024,
@@ -39989,7 +40275,7 @@
}
},
{
- "id": 727,
+ "id": 729,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -40013,7 +40299,7 @@
{
"type": "reflection",
"declaration": {
- "id": 728,
+ "id": 730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40027,14 +40313,14 @@
],
"signatures": [
{
- "id": 729,
+ "id": 731,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 730,
+ "id": 732,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -40045,7 +40331,7 @@
}
},
{
- "id": 731,
+ "id": 733,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -40073,7 +40359,7 @@
}
},
{
- "id": 720,
+ "id": 722,
"name": "detectSessionInUrl",
"variant": "declaration",
"kind": 1024,
@@ -40093,7 +40379,7 @@
}
},
{
- "id": 725,
+ "id": 727,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -40118,7 +40404,7 @@
}
},
{
- "id": 726,
+ "id": 728,
"name": "flowType",
"variant": "declaration",
"kind": 1024,
@@ -40134,13 +40420,13 @@
],
"type": {
"type": "reference",
- "target": 907,
+ "target": 909,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
},
{
- "id": 733,
+ "id": 735,
"name": "hasCustomAuthorizationHeader",
"variant": "declaration",
"kind": 1024,
@@ -40169,7 +40455,7 @@
}
},
{
- "id": 715,
+ "id": 717,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -40186,7 +40472,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 716,
+ "id": 718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40200,7 +40486,7 @@
],
"indexSignatures": [
{
- "id": 717,
+ "id": 719,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -40214,7 +40500,7 @@
],
"parameters": [
{
- "id": 718,
+ "id": 720,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -40235,7 +40521,7 @@
}
},
{
- "id": 732,
+ "id": 734,
"name": "lock",
"variant": "declaration",
"kind": 1024,
@@ -40260,13 +40546,13 @@
],
"type": {
"type": "reference",
- "target": 703,
+ "target": 705,
"name": "LockFunc",
"package": "@supabase/auth-js"
}
},
{
- "id": 722,
+ "id": 724,
"name": "persistSession",
"variant": "declaration",
"kind": 1024,
@@ -40286,7 +40572,7 @@
}
},
{
- "id": 723,
+ "id": 725,
"name": "storage",
"variant": "declaration",
"kind": 1024,
@@ -40302,13 +40588,13 @@
],
"type": {
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
},
{
- "id": 719,
+ "id": 721,
"name": "storageKey",
"variant": "declaration",
"kind": 1024,
@@ -40328,7 +40614,7 @@
}
},
{
- "id": 734,
+ "id": 736,
"name": "throwOnError",
"variant": "declaration",
"kind": 1024,
@@ -40356,7 +40642,7 @@
}
},
{
- "id": 714,
+ "id": 716,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -40376,7 +40662,7 @@
}
},
{
- "id": 724,
+ "id": 726,
"name": "userStorage",
"variant": "declaration",
"kind": 1024,
@@ -40441,7 +40727,7 @@
],
"type": {
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -40450,7 +40736,7 @@
"groups": [
{
"title": "Properties",
- "children": [721, 727, 720, 725, 726, 733, 715, 732, 722, 723, 719, 734, 714, 724]
+ "children": [723, 729, 722, 727, 728, 735, 717, 734, 724, 725, 721, 736, 716, 726]
}
],
"sources": [
@@ -40464,7 +40750,7 @@
}
},
{
- "id": 1258,
+ "id": 1260,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -40479,14 +40765,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1259,
+ "id": 1261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1260,
+ "id": 1262,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -40503,7 +40789,7 @@
"types": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -40518,7 +40804,7 @@
"groups": [
{
"title": "Properties",
- "children": [1260]
+ "children": [1262]
}
],
"sources": [
@@ -40532,7 +40818,7 @@
}
},
{
- "id": 1282,
+ "id": 1284,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -40547,14 +40833,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1283,
+ "id": 1285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1284,
+ "id": 1286,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -40585,7 +40871,7 @@
}
},
{
- "id": 1285,
+ "id": 1287,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -40603,7 +40889,7 @@
}
},
{
- "id": 1286,
+ "id": 1288,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -40624,7 +40910,7 @@
"groups": [
{
"title": "Properties",
- "children": [1284, 1285, 1286]
+ "children": [1286, 1287, 1288]
}
],
"sources": [
@@ -40638,7 +40924,7 @@
}
},
{
- "id": 703,
+ "id": 705,
"name": "LockFunc",
"variant": "declaration",
"kind": 2097152,
@@ -40670,7 +40956,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 704,
+ "id": 706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40684,14 +40970,14 @@
],
"signatures": [
{
- "id": 705,
+ "id": 707,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"typeParameters": [
{
- "id": 711,
+ "id": 713,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -40700,7 +40986,7 @@
],
"parameters": [
{
- "id": 706,
+ "id": 708,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -40719,7 +41005,7 @@
}
},
{
- "id": 707,
+ "id": 709,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -40746,7 +41032,7 @@
}
},
{
- "id": 708,
+ "id": 710,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -40762,7 +41048,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 709,
+ "id": 711,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40776,7 +41062,7 @@
],
"signatures": [
{
- "id": 710,
+ "id": 712,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -40790,7 +41076,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 711,
+ "target": 713,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -40814,7 +41100,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 711,
+ "target": 713,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -40829,7 +41115,7 @@
}
},
{
- "id": 1089,
+ "id": 1091,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -40852,7 +41138,7 @@
}
},
{
- "id": 1088,
+ "id": 1090,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -40869,19 +41155,19 @@
"types": [
{
"type": "reference",
- "target": 1085,
+ "target": 1087,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1086,
+ "target": 1088,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1087,
+ "target": 1089,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -40889,7 +41175,7 @@
}
},
{
- "id": 1086,
+ "id": 1088,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -40903,7 +41189,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -40934,7 +41220,7 @@
}
},
{
- "id": 1085,
+ "id": 1087,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -40948,7 +41234,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "reference",
@@ -40965,7 +41251,7 @@
}
},
{
- "id": 1087,
+ "id": 1089,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -41000,7 +41286,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41031,7 +41317,7 @@
}
},
{
- "id": 1071,
+ "id": 1073,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -41048,19 +41334,19 @@
"types": [
{
"type": "reference",
- "target": 1276,
+ "target": 1278,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1277,
+ "target": 1279,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1278,
+ "target": 1280,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -41068,7 +41354,7 @@
}
},
{
- "id": 1277,
+ "id": 1279,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -41082,7 +41368,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41119,7 +41405,7 @@
}
},
{
- "id": 1276,
+ "id": 1278,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -41133,7 +41419,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41170,7 +41456,7 @@
}
},
{
- "id": 1278,
+ "id": 1280,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -41205,7 +41491,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41242,7 +41528,7 @@
}
},
{
- "id": 1084,
+ "id": 1086,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -41276,7 +41562,7 @@
}
},
{
- "id": 1072,
+ "id": 1074,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -41291,14 +41577,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1073,
+ "id": 1075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1074,
+ "id": 1076,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -41327,7 +41613,7 @@
"groups": [
{
"title": "Properties",
- "children": [1074]
+ "children": [1076]
}
],
"sources": [
@@ -41341,7 +41627,7 @@
}
},
{
- "id": 1083,
+ "id": 1085,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -41358,19 +41644,19 @@
"types": [
{
"type": "reference",
- "target": 1075,
+ "target": 1077,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1076,
+ "target": 1078,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1081,
+ "target": 1083,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -41378,7 +41664,7 @@
}
},
{
- "id": 1076,
+ "id": 1078,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -41392,7 +41678,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41423,7 +41709,7 @@
}
},
{
- "id": 1075,
+ "id": 1077,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -41437,7 +41723,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41468,7 +41754,7 @@
}
},
{
- "id": 1077,
+ "id": 1079,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -41490,7 +41776,7 @@
],
"typeParameters": [
{
- "id": 1080,
+ "id": 1082,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -41534,14 +41820,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1078,
+ "id": 1080,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1079,
+ "id": 1081,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -41574,7 +41860,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1080,
+ "target": 1082,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -41590,7 +41876,7 @@
"groups": [
{
"title": "Properties",
- "children": [1079]
+ "children": [1081]
}
],
"sources": [
@@ -41604,7 +41890,7 @@
}
},
{
- "id": 1081,
+ "id": 1083,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -41639,7 +41925,7 @@
],
"typeParameters": [
{
- "id": 1082,
+ "id": 1084,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -41682,7 +41968,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41698,11 +41984,11 @@
},
{
"type": "reference",
- "target": 1077,
+ "target": 1079,
"typeArguments": [
{
"type": "reference",
- "target": 1082,
+ "target": 1084,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -41719,7 +42005,7 @@
}
},
{
- "id": 1002,
+ "id": 1004,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -41746,7 +42032,7 @@
}
},
{
- "id": 1397,
+ "id": 1399,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -41769,15 +42055,15 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1398,
+ "id": 1400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1399,
- "name": "client_id",
+ "id": 1401,
+ "name": "id",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41802,8 +42088,8 @@
}
},
{
- "id": 1400,
- "name": "client_name",
+ "id": 1404,
+ "name": "logo_uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41811,14 +42097,14 @@
"summary": [
{
"kind": "text",
- "text": "Human-readable name of the OAuth client"
+ "text": "URI of the OAuth client's logo"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1341,
+ "line": 1345,
"character": 4
}
],
@@ -41828,8 +42114,8 @@
}
},
{
- "id": 1401,
- "name": "client_uri",
+ "id": 1402,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41837,14 +42123,14 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's website"
+ "text": "Human-readable name of the OAuth client"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1343,
+ "line": 1341,
"character": 4
}
],
@@ -41854,8 +42140,8 @@
}
},
{
- "id": 1402,
- "name": "logo_uri",
+ "id": 1403,
+ "name": "uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41863,14 +42149,14 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's logo"
+ "text": "URI of the OAuth client's website"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1345,
+ "line": 1343,
"character": 4
}
],
@@ -41883,7 +42169,7 @@
"groups": [
{
"title": "Properties",
- "children": [1399, 1400, 1401, 1402]
+ "children": [1401, 1404, 1402, 1403]
}
],
"sources": [
@@ -41897,7 +42183,7 @@
}
},
{
- "id": 1403,
+ "id": 1405,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -41920,14 +42206,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1404,
+ "id": 1406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1405,
+ "id": 1407,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -41953,7 +42239,7 @@
}
},
{
- "id": 1407,
+ "id": 1409,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -41975,13 +42261,13 @@
],
"type": {
"type": "reference",
- "target": 1397,
+ "target": 1399,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1406,
+ "id": 1408,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -42009,7 +42295,7 @@
}
},
{
- "id": 1412,
+ "id": 1414,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -42035,7 +42321,7 @@
}
},
{
- "id": 1408,
+ "id": 1410,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -42058,14 +42344,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1409,
+ "id": 1411,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1411,
+ "id": 1413,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -42091,7 +42377,7 @@
}
},
{
- "id": 1410,
+ "id": 1412,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -42120,7 +42406,7 @@
"groups": [
{
"title": "Properties",
- "children": [1411, 1410]
+ "children": [1413, 1412]
}
],
"sources": [
@@ -42137,7 +42423,7 @@
"groups": [
{
"title": "Properties",
- "children": [1405, 1407, 1406, 1412, 1408]
+ "children": [1407, 1409, 1408, 1414, 1410]
}
],
"sources": [
@@ -42151,7 +42437,7 @@
}
},
{
- "id": 1330,
+ "id": 1332,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -42174,14 +42460,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1331,
+ "id": 1333,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1332,
+ "id": 1334,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -42207,7 +42493,7 @@
}
},
{
- "id": 1333,
+ "id": 1335,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -42233,7 +42519,7 @@
}
},
{
- "id": 1334,
+ "id": 1336,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -42261,7 +42547,7 @@
}
},
{
- "id": 1335,
+ "id": 1337,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -42283,13 +42569,13 @@
],
"type": {
"type": "reference",
- "target": 1328,
+ "target": 1330,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1338,
+ "id": 1340,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -42317,7 +42603,7 @@
}
},
{
- "id": 1344,
+ "id": 1346,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -42343,7 +42629,7 @@
}
},
{
- "id": 1341,
+ "id": 1343,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -42367,14 +42653,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1326,
+ "target": 1328,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1339,
+ "id": 1341,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -42402,7 +42688,7 @@
}
},
{
- "id": 1340,
+ "id": 1342,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -42431,7 +42717,7 @@
}
},
{
- "id": 1337,
+ "id": 1339,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -42453,13 +42739,13 @@
],
"type": {
"type": "reference",
- "target": 1329,
+ "target": 1331,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1342,
+ "id": 1344,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -42483,14 +42769,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1327,
+ "target": 1329,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1343,
+ "id": 1345,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -42518,7 +42804,7 @@
}
},
{
- "id": 1336,
+ "id": 1338,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -42544,7 +42830,7 @@
}
},
{
- "id": 1345,
+ "id": 1347,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -42574,8 +42860,8 @@
{
"title": "Properties",
"children": [
- 1332, 1333, 1334, 1335, 1338, 1344, 1341, 1339, 1340, 1337, 1342, 1343, 1336,
- 1345
+ 1334, 1335, 1336, 1337, 1340, 1346, 1343, 1341, 1342, 1339, 1344, 1345, 1338,
+ 1347
]
}
],
@@ -42590,7 +42876,7 @@
}
},
{
- "id": 1326,
+ "id": 1328,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -42625,7 +42911,7 @@
}
},
{
- "id": 1362,
+ "id": 1364,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -42651,14 +42937,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1363,
+ "id": 1365,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1364,
+ "id": 1366,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -42676,14 +42962,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1365,
+ "id": 1367,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1367,
+ "id": 1369,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -42701,7 +42987,7 @@
}
},
{
- "id": 1366,
+ "id": 1368,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -42717,7 +43003,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1330,
+ "target": 1332,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -42727,7 +43013,7 @@
"groups": [
{
"title": "Properties",
- "children": [1367, 1366]
+ "children": [1369, 1368]
}
],
"sources": [
@@ -42741,7 +43027,7 @@
},
{
"type": "reference",
- "target": 1262,
+ "target": 1264,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -42749,7 +43035,7 @@
}
},
{
- "id": 1368,
+ "id": 1370,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -42770,7 +43056,7 @@
"groups": [
{
"title": "Properties",
- "children": [1364, 1368]
+ "children": [1366, 1370]
}
],
"sources": [
@@ -42785,14 +43071,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1369,
+ "id": 1371,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1370,
+ "id": 1372,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -42807,14 +43093,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1371,
+ "id": 1373,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1372,
+ "id": 1374,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -42834,7 +43120,7 @@
"groups": [
{
"title": "Properties",
- "children": [1372]
+ "children": [1374]
}
],
"sources": [
@@ -42848,7 +43134,7 @@
}
},
{
- "id": 1373,
+ "id": 1375,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -42862,7 +43148,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -42871,7 +43157,7 @@
"groups": [
{
"title": "Properties",
- "children": [1370, 1373]
+ "children": [1372, 1375]
}
],
"sources": [
@@ -42887,7 +43173,7 @@
}
},
{
- "id": 1329,
+ "id": 1331,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -42922,7 +43208,7 @@
}
},
{
- "id": 1361,
+ "id": 1363,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -42944,11 +43230,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1330,
+ "target": 1332,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -42958,7 +43244,7 @@
}
},
{
- "id": 1327,
+ "id": 1329,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -42984,7 +43270,7 @@
}
},
{
- "id": 1328,
+ "id": 1330,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -43019,7 +43305,137 @@
}
},
{
- "id": 785,
+ "id": 1419,
+ "name": "OAuthGrant",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An OAuth grant representing a user's authorization of an 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": 1385,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1420,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1421,
+ "name": "client",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client information"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1387,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1399,
+ "name": "OAuthAuthorizationClient",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1423,
+ "name": "granted_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the grant was created (ISO 8601 date-time)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1391,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1422,
+ "name": "scopes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of scopes granted to this client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1389,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1421, 1423, 1422]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1385,
+ "character": 25
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 787,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -43037,14 +43453,14 @@
{
"type": "reflection",
"declaration": {
- "id": 786,
+ "id": 788,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 787,
+ "id": 789,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -43059,14 +43475,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 788,
+ "id": 790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 789,
+ "id": 791,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -43080,13 +43496,13 @@
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 702,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 790,
+ "id": 792,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -43107,7 +43523,7 @@
"groups": [
{
"title": "Properties",
- "children": [789, 790]
+ "children": [791, 792]
}
],
"sources": [
@@ -43121,7 +43537,7 @@
}
},
{
- "id": 791,
+ "id": 793,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -43142,7 +43558,7 @@
"groups": [
{
"title": "Properties",
- "children": [787, 791]
+ "children": [789, 793]
}
],
"sources": [
@@ -43157,14 +43573,14 @@
{
"type": "reflection",
"declaration": {
- "id": 792,
+ "id": 794,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 793,
+ "id": 795,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -43179,14 +43595,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 794,
+ "id": 796,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 795,
+ "id": 797,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -43200,13 +43616,13 @@
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 702,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 796,
+ "id": 798,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -43227,7 +43643,7 @@
"groups": [
{
"title": "Properties",
- "children": [795, 796]
+ "children": [797, 798]
}
],
"sources": [
@@ -43241,7 +43657,7 @@
}
},
{
- "id": 797,
+ "id": 799,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -43255,7 +43671,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -43264,7 +43680,7 @@
"groups": [
{
"title": "Properties",
- "children": [793, 797]
+ "children": [795, 799]
}
],
"sources": [
@@ -43280,7 +43696,7 @@
}
},
{
- "id": 1269,
+ "id": 1271,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -43295,14 +43711,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1270,
+ "id": 1272,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1271,
+ "id": 1273,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -43330,7 +43746,7 @@
}
},
{
- "id": 1272,
+ "id": 1274,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -43361,7 +43777,7 @@
"groups": [
{
"title": "Properties",
- "children": [1271, 1272]
+ "children": [1273, 1274]
}
],
"sources": [
@@ -43375,7 +43791,7 @@
}
},
{
- "id": 1262,
+ "id": 1264,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -43390,14 +43806,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1263,
+ "id": 1265,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1265,
+ "id": 1267,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -43415,7 +43831,7 @@
}
},
{
- "id": 1264,
+ "id": 1266,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -43442,7 +43858,7 @@
}
},
{
- "id": 1266,
+ "id": 1268,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -43463,7 +43879,7 @@
"groups": [
{
"title": "Properties",
- "children": [1265, 1264, 1266]
+ "children": [1267, 1266, 1268]
}
],
"sources": [
@@ -43475,7 +43891,7 @@
],
"indexSignatures": [
{
- "id": 1267,
+ "id": 1269,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -43489,7 +43905,7 @@
],
"parameters": [
{
- "id": 1268,
+ "id": 1270,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -43653,7 +44069,7 @@
}
},
{
- "id": 740,
+ "id": 742,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -43675,7 +44091,7 @@
],
"typeParameters": [
{
- "id": 741,
+ "id": 743,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -43686,7 +44102,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43702,7 +44118,7 @@
},
"trueType": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43715,7 +44131,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43735,7 +44151,7 @@
},
"objectType": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43745,7 +44161,7 @@
}
},
{
- "id": 700,
+ "id": 702,
"name": "Provider",
"variant": "declaration",
"kind": 2097152,
@@ -43870,7 +44286,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 118,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118"
}
],
"typeParameters": [
@@ -43918,7 +44334,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 118,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118"
}
],
"type": {
@@ -43938,7 +44354,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 118,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118"
}
]
}
@@ -43989,7 +44405,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 119,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L119"
}
],
"type": {
@@ -44019,7 +44435,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 117,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L117"
}
],
"typeParameters": [
@@ -44072,7 +44488,7 @@
}
},
{
- "id": 1914,
+ "id": 1931,
"name": "RealtimeChannelOptions",
"variant": "declaration",
"kind": 2097152,
@@ -44087,14 +44503,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1915,
+ "id": 1932,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1916,
+ "id": 1933,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -44109,14 +44525,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1917,
+ "id": 1934,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1918,
+ "id": 1935,
"name": "broadcast",
"variant": "declaration",
"kind": 1024,
@@ -44141,14 +44557,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1919,
+ "id": 1936,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1921,
+ "id": 1938,
"name": "ack",
"variant": "declaration",
"kind": 1024,
@@ -44168,7 +44584,7 @@
}
},
{
- "id": 1922,
+ "id": 1939,
"name": "replay",
"variant": "declaration",
"kind": 1024,
@@ -44193,7 +44609,7 @@
}
},
{
- "id": 1920,
+ "id": 1937,
"name": "self",
"variant": "declaration",
"kind": 1024,
@@ -44216,7 +44632,7 @@
"groups": [
{
"title": "Properties",
- "children": [1921, 1922, 1920]
+ "children": [1938, 1939, 1937]
}
],
"sources": [
@@ -44230,7 +44646,7 @@
}
},
{
- "id": 1923,
+ "id": 1940,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -44255,14 +44671,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1924,
+ "id": 1941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1926,
+ "id": 1943,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -44282,7 +44698,7 @@
}
},
{
- "id": 1925,
+ "id": 1942,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -44305,7 +44721,7 @@
"groups": [
{
"title": "Properties",
- "children": [1926, 1925]
+ "children": [1943, 1942]
}
],
"sources": [
@@ -44319,7 +44735,7 @@
}
},
{
- "id": 1927,
+ "id": 1944,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -44350,7 +44766,7 @@
"groups": [
{
"title": "Properties",
- "children": [1918, 1923, 1927]
+ "children": [1935, 1940, 1944]
}
],
"sources": [
@@ -44367,7 +44783,7 @@
"groups": [
{
"title": "Properties",
- "children": [1916]
+ "children": [1933]
}
],
"sources": [
@@ -44381,7 +44797,7 @@
}
},
{
- "id": 1928,
+ "id": 1945,
"name": "RealtimeChannelSendResponse",
"variant": "declaration",
"kind": 2097152,
@@ -44412,7 +44828,7 @@
}
},
{
- "id": 2039,
+ "id": 2056,
"name": "RealtimeClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -44427,14 +44843,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2040,
+ "id": 2057,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2066,
+ "id": 2083,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -44451,7 +44867,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2067,
+ "id": 2084,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44465,7 +44881,7 @@
],
"signatures": [
{
- "id": 2068,
+ "id": 2085,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -44500,7 +44916,7 @@
}
},
{
- "id": 2051,
+ "id": 2068,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -44525,7 +44941,7 @@
}
},
{
- "id": 2050,
+ "id": 2067,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -44550,7 +44966,7 @@
}
},
{
- "id": 2063,
+ "id": 2080,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -44575,7 +44991,7 @@
}
},
{
- "id": 2053,
+ "id": 2070,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -44592,7 +45008,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2054,
+ "id": 2071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44606,7 +45022,7 @@
],
"indexSignatures": [
{
- "id": 2055,
+ "id": 2072,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -44620,7 +45036,7 @@
],
"parameters": [
{
- "id": 2056,
+ "id": 2073,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -44641,7 +45057,7 @@
}
},
{
- "id": 2044,
+ "id": 2061,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -44658,7 +45074,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2045,
+ "id": 2062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44672,14 +45088,14 @@
],
"signatures": [
{
- "id": 2046,
+ "id": 2063,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 2047,
+ "id": 2064,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -44705,7 +45121,7 @@
}
},
{
- "id": 2043,
+ "id": 2060,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -44725,7 +45141,7 @@
}
},
{
- "id": 2061,
+ "id": 2078,
"name": "log_level",
"variant": "declaration",
"kind": 1024,
@@ -44750,7 +45166,7 @@
}
},
{
- "id": 2049,
+ "id": 2066,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -44775,7 +45191,7 @@
}
},
{
- "id": 2062,
+ "id": 2079,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -44800,7 +45216,7 @@
}
},
{
- "id": 2057,
+ "id": 2074,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -44817,7 +45233,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2058,
+ "id": 2075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44831,7 +45247,7 @@
],
"indexSignatures": [
{
- "id": 2059,
+ "id": 2076,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -44845,7 +45261,7 @@
],
"parameters": [
{
- "id": 2060,
+ "id": 2077,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -44866,7 +45282,7 @@
}
},
{
- "id": 2052,
+ "id": 2069,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -44891,7 +45307,7 @@
}
},
{
- "id": 2042,
+ "id": 2059,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -44911,7 +45327,7 @@
}
},
{
- "id": 2041,
+ "id": 2058,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -44927,13 +45343,13 @@
],
"type": {
"type": "reference",
- "target": 2233,
+ "target": 2250,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
},
{
- "id": 2048,
+ "id": 2065,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -44953,7 +45369,7 @@
}
},
{
- "id": 2064,
+ "id": 2081,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -44973,7 +45389,7 @@
}
},
{
- "id": 2065,
+ "id": 2082,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -44997,8 +45413,8 @@
{
"title": "Properties",
"children": [
- 2066, 2051, 2050, 2063, 2053, 2044, 2043, 2061, 2049, 2062, 2057, 2052, 2042,
- 2041, 2048, 2064, 2065
+ 2083, 2068, 2067, 2080, 2070, 2061, 2060, 2078, 2066, 2079, 2074, 2069, 2059,
+ 2058, 2065, 2081, 2082
]
}
],
@@ -45013,7 +45429,7 @@
}
},
{
- "id": 2069,
+ "id": 2086,
"name": "RealtimeMessage",
"variant": "declaration",
"kind": 2097152,
@@ -45028,14 +45444,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2070,
+ "id": 2087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2072,
+ "id": 2089,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -45053,7 +45469,7 @@
}
},
{
- "id": 2075,
+ "id": 2092,
"name": "join_ref",
"variant": "declaration",
"kind": 1024,
@@ -45073,7 +45489,7 @@
}
},
{
- "id": 2073,
+ "id": 2090,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -45091,7 +45507,7 @@
}
},
{
- "id": 2074,
+ "id": 2091,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -45109,7 +45525,7 @@
}
},
{
- "id": 2071,
+ "id": 2088,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -45130,7 +45546,7 @@
"groups": [
{
"title": "Properties",
- "children": [2072, 2075, 2073, 2074, 2071]
+ "children": [2089, 2092, 2090, 2091, 2088]
}
],
"sources": [
@@ -45144,7 +45560,7 @@
}
},
{
- "id": 2076,
+ "id": 2093,
"name": "RealtimePostgresChangesFilter",
"variant": "declaration",
"kind": 2097152,
@@ -45158,7 +45574,7 @@
],
"typeParameters": [
{
- "id": 2082,
+ "id": 2099,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45170,7 +45586,7 @@
[
{
"type": "reference",
- "target": 2152,
+ "target": 2169,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"package": "@supabase/realtime-js"
},
@@ -45183,14 +45599,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2077,
+ "id": 2094,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2078,
+ "id": 2095,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -45212,14 +45628,14 @@
],
"type": {
"type": "reference",
- "target": 2082,
+ "target": 2099,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2081,
+ "id": 2098,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -45247,7 +45663,7 @@
}
},
{
- "id": 2079,
+ "id": 2096,
"name": "schema",
"variant": "declaration",
"kind": 1024,
@@ -45273,7 +45689,7 @@
}
},
{
- "id": 2080,
+ "id": 2097,
"name": "table",
"variant": "declaration",
"kind": 1024,
@@ -45304,7 +45720,7 @@
"groups": [
{
"title": "Properties",
- "children": [2078, 2081, 2079, 2080]
+ "children": [2095, 2098, 2096, 2097]
}
],
"sources": [
@@ -45318,7 +45734,7 @@
}
},
{
- "id": 2083,
+ "id": 2100,
"name": "RealtimePostgresChangesPayload",
"variant": "declaration",
"kind": 2097152,
@@ -45332,7 +45748,7 @@
],
"typeParameters": [
{
- "id": 2084,
+ "id": 2101,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45340,7 +45756,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2085,
+ "id": 2102,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45354,7 +45770,7 @@
],
"indexSignatures": [
{
- "id": 2086,
+ "id": 2103,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45368,7 +45784,7 @@
],
"parameters": [
{
- "id": 2087,
+ "id": 2104,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45394,11 +45810,11 @@
"types": [
{
"type": "reference",
- "target": 2088,
+ "target": 2105,
"typeArguments": [
{
"type": "reference",
- "target": 2084,
+ "target": 2101,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45409,11 +45825,11 @@
},
{
"type": "reference",
- "target": 2098,
+ "target": 2115,
"typeArguments": [
{
"type": "reference",
- "target": 2084,
+ "target": 2101,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45424,11 +45840,11 @@
},
{
"type": "reference",
- "target": 2107,
+ "target": 2124,
"typeArguments": [
{
"type": "reference",
- "target": 2084,
+ "target": 2101,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45441,7 +45857,7 @@
}
},
{
- "id": 2107,
+ "id": 2124,
"name": "RealtimePostgresDeletePayload",
"variant": "declaration",
"kind": 2097152,
@@ -45455,7 +45871,7 @@
],
"typeParameters": [
{
- "id": 2113,
+ "id": 2130,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45463,7 +45879,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2114,
+ "id": 2131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45477,7 +45893,7 @@
],
"indexSignatures": [
{
- "id": 2115,
+ "id": 2132,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45491,7 +45907,7 @@
],
"parameters": [
{
- "id": 2116,
+ "id": 2133,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45527,14 +45943,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2108,
+ "id": 2125,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2109,
+ "id": 2126,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -45553,7 +45969,7 @@
[
{
"type": "reference",
- "target": 2156,
+ "target": 2173,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE",
"package": "@supabase/realtime-js"
},
@@ -45563,7 +45979,7 @@
}
},
{
- "id": 2110,
+ "id": 2127,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -45578,7 +45994,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2111,
+ "id": 2128,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45594,7 +46010,7 @@
}
},
{
- "id": 2112,
+ "id": 2129,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -45615,7 +46031,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2113,
+ "target": 2130,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45629,7 +46045,7 @@
"groups": [
{
"title": "Properties",
- "children": [2109, 2110, 2112]
+ "children": [2126, 2127, 2129]
}
],
"sources": [
@@ -45645,7 +46061,7 @@
}
},
{
- "id": 2088,
+ "id": 2105,
"name": "RealtimePostgresInsertPayload",
"variant": "declaration",
"kind": 2097152,
@@ -45659,7 +46075,7 @@
],
"typeParameters": [
{
- "id": 2094,
+ "id": 2111,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45667,7 +46083,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2095,
+ "id": 2112,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45681,7 +46097,7 @@
],
"indexSignatures": [
{
- "id": 2096,
+ "id": 2113,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45695,7 +46111,7 @@
],
"parameters": [
{
- "id": 2097,
+ "id": 2114,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45731,14 +46147,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2089,
+ "id": 2106,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2090,
+ "id": 2107,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -45757,7 +46173,7 @@
[
{
"type": "reference",
- "target": 2154,
+ "target": 2171,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT",
"package": "@supabase/realtime-js"
},
@@ -45767,7 +46183,7 @@
}
},
{
- "id": 2091,
+ "id": 2108,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -45781,14 +46197,14 @@
],
"type": {
"type": "reference",
- "target": 2094,
+ "target": 2111,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2092,
+ "id": 2109,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -45803,7 +46219,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2093,
+ "id": 2110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45822,7 +46238,7 @@
"groups": [
{
"title": "Properties",
- "children": [2090, 2091, 2092]
+ "children": [2107, 2108, 2109]
}
],
"sources": [
@@ -45838,7 +46254,7 @@
}
},
{
- "id": 2098,
+ "id": 2115,
"name": "RealtimePostgresUpdatePayload",
"variant": "declaration",
"kind": 2097152,
@@ -45852,7 +46268,7 @@
],
"typeParameters": [
{
- "id": 2103,
+ "id": 2120,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45860,7 +46276,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2104,
+ "id": 2121,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45874,7 +46290,7 @@
],
"indexSignatures": [
{
- "id": 2105,
+ "id": 2122,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45888,7 +46304,7 @@
],
"parameters": [
{
- "id": 2106,
+ "id": 2123,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45924,14 +46340,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2099,
+ "id": 2116,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2100,
+ "id": 2117,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -45950,7 +46366,7 @@
[
{
"type": "reference",
- "target": 2155,
+ "target": 2172,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE",
"package": "@supabase/realtime-js"
},
@@ -45960,7 +46376,7 @@
}
},
{
- "id": 2101,
+ "id": 2118,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -45974,14 +46390,14 @@
],
"type": {
"type": "reference",
- "target": 2103,
+ "target": 2120,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2102,
+ "id": 2119,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -46002,7 +46418,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2103,
+ "target": 2120,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46016,7 +46432,7 @@
"groups": [
{
"title": "Properties",
- "children": [2100, 2101, 2102]
+ "children": [2117, 2118, 2119]
}
],
"sources": [
@@ -46032,7 +46448,7 @@
}
},
{
- "id": 2117,
+ "id": 2134,
"name": "RealtimePresenceJoinPayload",
"variant": "declaration",
"kind": 2097152,
@@ -46046,7 +46462,7 @@
],
"typeParameters": [
{
- "id": 2123,
+ "id": 2140,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46054,7 +46470,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2124,
+ "id": 2141,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46068,7 +46484,7 @@
],
"indexSignatures": [
{
- "id": 2125,
+ "id": 2142,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46082,7 +46498,7 @@
],
"parameters": [
{
- "id": 2126,
+ "id": 2143,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46106,14 +46522,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2118,
+ "id": 2135,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2121,
+ "id": 2138,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -46136,7 +46552,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2123,
+ "target": 2140,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46148,7 +46564,7 @@
}
},
{
- "id": 2119,
+ "id": 2136,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -46167,7 +46583,7 @@
[
{
"type": "reference",
- "target": 2159,
+ "target": 2176,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN",
"package": "@supabase/realtime-js"
},
@@ -46177,7 +46593,7 @@
}
},
{
- "id": 2120,
+ "id": 2137,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -46195,7 +46611,7 @@
}
},
{
- "id": 2122,
+ "id": 2139,
"name": "newPresences",
"variant": "declaration",
"kind": 1024,
@@ -46218,7 +46634,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2123,
+ "target": 2140,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46233,7 +46649,7 @@
"groups": [
{
"title": "Properties",
- "children": [2121, 2119, 2120, 2122]
+ "children": [2138, 2136, 2137, 2139]
}
],
"sources": [
@@ -46247,7 +46663,7 @@
}
},
{
- "id": 2127,
+ "id": 2144,
"name": "RealtimePresenceLeavePayload",
"variant": "declaration",
"kind": 2097152,
@@ -46261,7 +46677,7 @@
],
"typeParameters": [
{
- "id": 2133,
+ "id": 2150,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46269,7 +46685,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2134,
+ "id": 2151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46283,7 +46699,7 @@
],
"indexSignatures": [
{
- "id": 2135,
+ "id": 2152,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46297,7 +46713,7 @@
],
"parameters": [
{
- "id": 2136,
+ "id": 2153,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46321,14 +46737,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2128,
+ "id": 2145,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2131,
+ "id": 2148,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -46351,7 +46767,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2133,
+ "target": 2150,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46363,7 +46779,7 @@
}
},
{
- "id": 2129,
+ "id": 2146,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -46382,7 +46798,7 @@
[
{
"type": "reference",
- "target": 2160,
+ "target": 2177,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE",
"package": "@supabase/realtime-js"
},
@@ -46392,7 +46808,7 @@
}
},
{
- "id": 2130,
+ "id": 2147,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -46410,7 +46826,7 @@
}
},
{
- "id": 2132,
+ "id": 2149,
"name": "leftPresences",
"variant": "declaration",
"kind": 1024,
@@ -46433,7 +46849,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2133,
+ "target": 2150,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46448,7 +46864,7 @@
"groups": [
{
"title": "Properties",
- "children": [2131, 2129, 2130, 2132]
+ "children": [2148, 2146, 2147, 2149]
}
],
"sources": [
@@ -46462,7 +46878,7 @@
}
},
{
- "id": 2137,
+ "id": 2154,
"name": "RealtimePresenceState",
"variant": "declaration",
"kind": 2097152,
@@ -46476,7 +46892,7 @@
],
"typeParameters": [
{
- "id": 2141,
+ "id": 2158,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46484,7 +46900,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2142,
+ "id": 2159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46498,7 +46914,7 @@
],
"indexSignatures": [
{
- "id": 2143,
+ "id": 2160,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46512,7 +46928,7 @@
],
"parameters": [
{
- "id": 2144,
+ "id": 2161,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46534,7 +46950,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 2145,
+ "id": 2162,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46553,7 +46969,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2138,
+ "id": 2155,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46567,7 +46983,7 @@
],
"indexSignatures": [
{
- "id": 2139,
+ "id": 2156,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46581,7 +46997,7 @@
],
"parameters": [
{
- "id": 2140,
+ "id": 2157,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46603,7 +47019,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2141,
+ "target": 2158,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46619,7 +47035,7 @@
}
},
{
- "id": 2146,
+ "id": 2163,
"name": "RealtimeRemoveChannelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -46650,7 +47066,7 @@
}
},
{
- "id": 745,
+ "id": 747,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -46672,14 +47088,14 @@
],
"typeParameters": [
{
- "id": 752,
+ "id": 754,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 753,
+ "id": 755,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -46695,7 +47111,7 @@
},
"default": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -46707,14 +47123,14 @@
{
"type": "reflection",
"declaration": {
- "id": 746,
+ "id": 748,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 747,
+ "id": 749,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46728,14 +47144,14 @@
],
"type": {
"type": "reference",
- "target": 752,
+ "target": 754,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 748,
+ "id": 750,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -46756,7 +47172,7 @@
"groups": [
{
"title": "Properties",
- "children": [747, 748]
+ "children": [749, 750]
}
],
"sources": [
@@ -46771,14 +47187,14 @@
{
"type": "reflection",
"declaration": {
- "id": 749,
+ "id": 751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 750,
+ "id": 752,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46796,7 +47212,7 @@
}
},
{
- "id": 751,
+ "id": 753,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -46821,19 +47237,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 753,
+ "target": 755,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -46844,7 +47260,7 @@
"groups": [
{
"title": "Properties",
- "children": [750, 751]
+ "children": [752, 753]
}
],
"sources": [
@@ -46860,7 +47276,7 @@
}
},
{
- "id": 754,
+ "id": 756,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -46887,7 +47303,7 @@
],
"typeParameters": [
{
- "id": 761,
+ "id": 763,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46900,14 +47316,14 @@
{
"type": "reflection",
"declaration": {
- "id": 755,
+ "id": 757,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 756,
+ "id": 758,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46921,14 +47337,14 @@
],
"type": {
"type": "reference",
- "target": 761,
+ "target": 763,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 757,
+ "id": 759,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -46949,7 +47365,7 @@
"groups": [
{
"title": "Properties",
- "children": [756, 757]
+ "children": [758, 759]
}
],
"sources": [
@@ -46964,14 +47380,14 @@
{
"type": "reflection",
"declaration": {
- "id": 758,
+ "id": 760,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 759,
+ "id": 761,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46987,7 +47403,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 761,
+ "target": 763,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -47004,7 +47420,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 761,
+ "target": 763,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -47022,7 +47438,7 @@
}
},
{
- "id": 760,
+ "id": 762,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -47036,7 +47452,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -47045,7 +47461,7 @@
"groups": [
{
"title": "Properties",
- "children": [759, 760]
+ "children": [761, 762]
}
],
"sources": [
@@ -47061,7 +47477,7 @@
}
},
{
- "id": 1287,
+ "id": 1289,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -47076,14 +47492,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1288,
+ "id": 1290,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1295,
+ "id": 1297,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -47097,13 +47513,13 @@
],
"type": {
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1291,
+ "id": 1293,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -47133,7 +47549,7 @@
}
},
{
- "id": 1292,
+ "id": 1294,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -47151,7 +47567,7 @@
}
},
{
- "id": 1293,
+ "id": 1295,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -47169,7 +47585,7 @@
}
},
{
- "id": 1289,
+ "id": 1291,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -47187,7 +47603,7 @@
}
},
{
- "id": 1294,
+ "id": 1296,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -47205,7 +47621,7 @@
}
},
{
- "id": 1296,
+ "id": 1298,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -47223,7 +47639,7 @@
}
},
{
- "id": 1290,
+ "id": 1292,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -47244,7 +47660,7 @@
"groups": [
{
"title": "Properties",
- "children": [1295, 1291, 1292, 1293, 1289, 1294, 1296, 1290]
+ "children": [1297, 1293, 1294, 1295, 1291, 1296, 1298, 1292]
}
],
"sources": [
@@ -47259,13 +47675,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1297,
+ "target": 1299,
"name": "JwtPayload"
}
]
},
{
- "id": 1004,
+ "id": 1006,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -47283,14 +47699,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1005,
+ "id": 1007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1007,
+ "id": 1009,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -47308,7 +47724,7 @@
}
},
{
- "id": 1008,
+ "id": 1010,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47325,14 +47741,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1009,
+ "id": 1011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1011,
+ "id": 1013,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47360,7 +47776,7 @@
}
},
{
- "id": 1010,
+ "id": 1012,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -47391,7 +47807,7 @@
"groups": [
{
"title": "Properties",
- "children": [1011, 1010]
+ "children": [1013, 1012]
}
],
"sources": [
@@ -47405,7 +47821,7 @@
}
},
{
- "id": 1006,
+ "id": 1008,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -47426,7 +47842,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1003,
+ "target": 1005,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -47452,7 +47868,7 @@
"groups": [
{
"title": "Properties",
- "children": [1007, 1008, 1006]
+ "children": [1009, 1010, 1008]
}
],
"sources": [
@@ -47467,14 +47883,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1012,
+ "id": 1014,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1015,
+ "id": 1017,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47491,14 +47907,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1016,
+ "id": 1018,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1017,
+ "id": 1019,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47529,7 +47945,7 @@
"groups": [
{
"title": "Properties",
- "children": [1017]
+ "children": [1019]
}
],
"sources": [
@@ -47543,7 +47959,7 @@
}
},
{
- "id": 1014,
+ "id": 1016,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -47561,7 +47977,7 @@
}
},
{
- "id": 1013,
+ "id": 1015,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -47582,7 +47998,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1002,
+ "target": 1004,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -47608,7 +48024,7 @@
"groups": [
{
"title": "Properties",
- "children": [1015, 1014, 1013]
+ "children": [1017, 1016, 1015]
}
],
"sources": [
@@ -47624,7 +48040,7 @@
}
},
{
- "id": 871,
+ "id": 873,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -47639,14 +48055,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 872,
+ "id": 874,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 873,
+ "id": 875,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47663,14 +48079,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 874,
+ "id": 876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 876,
+ "id": 878,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47698,7 +48114,7 @@
}
},
{
- "id": 875,
+ "id": 877,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -47745,7 +48161,7 @@
"groups": [
{
"title": "Properties",
- "children": [876, 875]
+ "children": [878, 877]
}
],
"sources": [
@@ -47762,7 +48178,7 @@
"groups": [
{
"title": "Properties",
- "children": [873]
+ "children": [875]
}
],
"sources": [
@@ -47776,7 +48192,7 @@
}
},
{
- "id": 920,
+ "id": 922,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -47791,14 +48207,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 921,
+ "id": 923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 925,
+ "id": 927,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -47834,7 +48250,7 @@
}
},
{
- "id": 926,
+ "id": 928,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -47870,7 +48286,7 @@
}
},
{
- "id": 927,
+ "id": 929,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47887,14 +48303,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 928,
+ "id": 930,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 929,
+ "id": 931,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47925,7 +48341,7 @@
"groups": [
{
"title": "Properties",
- "children": [929]
+ "children": [931]
}
],
"sources": [
@@ -47939,7 +48355,7 @@
}
},
{
- "id": 922,
+ "id": 924,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -48048,7 +48464,7 @@
{
"type": "reflection",
"declaration": {
- "id": 923,
+ "id": 925,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48068,7 +48484,7 @@
}
},
{
- "id": 924,
+ "id": 926,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -48129,7 +48545,7 @@
"groups": [
{
"title": "Properties",
- "children": [925, 926, 927, 922, 924]
+ "children": [927, 928, 929, 924, 926]
}
],
"sources": [
@@ -48143,7 +48559,7 @@
}
},
{
- "id": 908,
+ "id": 910,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -48158,14 +48574,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 909,
+ "id": 911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 911,
+ "id": 913,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -48182,14 +48598,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 912,
+ "id": 914,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 915,
+ "id": 917,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -48214,7 +48630,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 916,
+ "id": 918,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48228,7 +48644,7 @@
],
"indexSignatures": [
{
- "id": 917,
+ "id": 919,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -48242,7 +48658,7 @@
],
"parameters": [
{
- "id": 918,
+ "id": 920,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -48263,7 +48679,7 @@
}
},
{
- "id": 913,
+ "id": 915,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -48291,7 +48707,7 @@
}
},
{
- "id": 914,
+ "id": 916,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -48319,7 +48735,7 @@
}
},
{
- "id": 919,
+ "id": 921,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -48350,7 +48766,7 @@
"groups": [
{
"title": "Properties",
- "children": [915, 913, 914, 919]
+ "children": [917, 915, 916, 921]
}
],
"sources": [
@@ -48364,7 +48780,7 @@
}
},
{
- "id": 910,
+ "id": 912,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -48386,7 +48802,7 @@
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 702,
"name": "Provider",
"package": "@supabase/auth-js"
}
@@ -48395,7 +48811,7 @@
"groups": [
{
"title": "Properties",
- "children": [911, 910]
+ "children": [913, 912]
}
],
"sources": [
@@ -48409,7 +48825,7 @@
}
},
{
- "id": 885,
+ "id": 887,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -48436,14 +48852,14 @@
{
"type": "reflection",
"declaration": {
- "id": 886,
+ "id": 888,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 887,
+ "id": 889,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -48460,14 +48876,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 888,
+ "id": 890,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 889,
+ "id": 891,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -48490,7 +48906,7 @@
"groups": [
{
"title": "Properties",
- "children": [889]
+ "children": [891]
}
],
"sources": [
@@ -48507,7 +48923,7 @@
"groups": [
{
"title": "Properties",
- "children": [887]
+ "children": [889]
}
],
"sources": [
@@ -48523,7 +48939,7 @@
}
},
{
- "id": 890,
+ "id": 892,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -48541,14 +48957,14 @@
{
"type": "reflection",
"declaration": {
- "id": 891,
+ "id": 893,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 892,
+ "id": 894,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -48574,7 +48990,7 @@
}
},
{
- "id": 893,
+ "id": 895,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -48591,14 +49007,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 894,
+ "id": 896,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 898,
+ "id": 900,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -48626,7 +49042,7 @@
}
},
{
- "id": 897,
+ "id": 899,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48670,7 +49086,7 @@
}
},
{
- "id": 895,
+ "id": 897,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -48698,7 +49114,7 @@
}
},
{
- "id": 896,
+ "id": 898,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -48729,7 +49145,7 @@
"groups": [
{
"title": "Properties",
- "children": [898, 897, 895, 896]
+ "children": [900, 899, 897, 898]
}
],
"sources": [
@@ -48746,7 +49162,7 @@
"groups": [
{
"title": "Properties",
- "children": [892, 893]
+ "children": [894, 895]
}
],
"sources": [
@@ -48761,14 +49177,14 @@
{
"type": "reflection",
"declaration": {
- "id": 899,
+ "id": 901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 901,
+ "id": 903,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -48785,14 +49201,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 902,
+ "id": 904,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 905,
+ "id": 907,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -48820,7 +49236,7 @@
}
},
{
- "id": 906,
+ "id": 908,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -48857,7 +49273,7 @@
}
},
{
- "id": 904,
+ "id": 906,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48901,7 +49317,7 @@
}
},
{
- "id": 903,
+ "id": 905,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -48932,7 +49348,7 @@
"groups": [
{
"title": "Properties",
- "children": [905, 906, 904, 903]
+ "children": [907, 908, 906, 905]
}
],
"sources": [
@@ -48946,7 +49362,7 @@
}
},
{
- "id": 900,
+ "id": 902,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -48975,7 +49391,7 @@
"groups": [
{
"title": "Properties",
- "children": [901, 900]
+ "children": [903, 902]
}
],
"sources": [
@@ -48991,7 +49407,7 @@
}
},
{
- "id": 1018,
+ "id": 1020,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -49009,14 +49425,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1019,
+ "id": 1021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1021,
+ "id": 1023,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49033,14 +49449,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1022,
+ "id": 1024,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1024,
+ "id": 1026,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49068,7 +49484,7 @@
}
},
{
- "id": 1023,
+ "id": 1025,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49096,7 +49512,7 @@
}
},
{
- "id": 1025,
+ "id": 1027,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -49127,7 +49543,7 @@
"groups": [
{
"title": "Properties",
- "children": [1024, 1023, 1025]
+ "children": [1026, 1025, 1027]
}
],
"sources": [
@@ -49141,7 +49557,7 @@
}
},
{
- "id": 1020,
+ "id": 1022,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -49170,7 +49586,7 @@
"groups": [
{
"title": "Properties",
- "children": [1021, 1020]
+ "children": [1023, 1022]
}
],
"sources": [
@@ -49185,14 +49601,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1026,
+ "id": 1028,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1027,
+ "id": 1029,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -49218,7 +49634,7 @@
}
},
{
- "id": 1028,
+ "id": 1030,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49235,14 +49651,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1029,
+ "id": 1031,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1031,
+ "id": 1033,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49270,7 +49686,7 @@
}
},
{
- "id": 1030,
+ "id": 1032,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49298,7 +49714,7 @@
}
},
{
- "id": 1032,
+ "id": 1034,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -49329,7 +49745,7 @@
"groups": [
{
"title": "Properties",
- "children": [1031, 1030, 1032]
+ "children": [1033, 1032, 1034]
}
],
"sources": [
@@ -49346,7 +49762,7 @@
"groups": [
{
"title": "Properties",
- "children": [1027, 1028]
+ "children": [1029, 1030]
}
],
"sources": [
@@ -49362,7 +49778,7 @@
}
},
{
- "id": 1273,
+ "id": 1275,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -49377,14 +49793,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1274,
+ "id": 1276,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1275,
+ "id": 1277,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -49428,7 +49844,7 @@
"groups": [
{
"title": "Properties",
- "children": [1275]
+ "children": [1277]
}
],
"sources": [
@@ -49442,7 +49858,7 @@
}
},
{
- "id": 1325,
+ "id": 1327,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -49464,7 +49880,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1324,
+ "target": 1326,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -49472,7 +49888,7 @@
}
},
{
- "id": 877,
+ "id": 879,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -49486,7 +49902,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -49503,14 +49919,14 @@
{
"type": "reflection",
"declaration": {
- "id": 878,
+ "id": 880,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 879,
+ "id": 881,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49527,14 +49943,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 880,
+ "id": 882,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 883,
+ "id": 885,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49554,7 +49970,7 @@
}
},
{
- "id": 884,
+ "id": 886,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -49583,7 +49999,7 @@
}
},
{
- "id": 882,
+ "id": 884,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -49603,7 +50019,7 @@
}
},
{
- "id": 881,
+ "id": 883,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49626,7 +50042,7 @@
"groups": [
{
"title": "Properties",
- "children": [883, 884, 882, 881]
+ "children": [885, 886, 884, 883]
}
],
"sources": [
@@ -49643,7 +50059,7 @@
"groups": [
{
"title": "Properties",
- "children": [879]
+ "children": [881]
}
],
"sources": [
@@ -49663,7 +50079,7 @@
}
},
{
- "id": 930,
+ "id": 932,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -49678,14 +50094,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 931,
+ "id": 933,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 936,
+ "id": 938,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -49705,14 +50121,14 @@
{
"type": "reflection",
"declaration": {
- "id": 937,
+ "id": 939,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 938,
+ "id": 940,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -49727,7 +50143,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 939,
+ "id": 941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49741,7 +50157,7 @@
],
"signatures": [
{
- "id": 940,
+ "id": 942,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -49759,7 +50175,7 @@
"groups": [
{
"title": "Properties",
- "children": [938]
+ "children": [940]
}
],
"sources": [
@@ -49779,7 +50195,7 @@
}
},
{
- "id": 932,
+ "id": 934,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -49796,7 +50212,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 933,
+ "id": 935,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49810,14 +50226,14 @@
],
"signatures": [
{
- "id": 934,
+ "id": 936,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 935,
+ "id": 937,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -49881,7 +50297,7 @@
}
},
{
- "id": 941,
+ "id": 943,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -49898,7 +50314,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 942,
+ "id": 944,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49912,14 +50328,14 @@
],
"signatures": [
{
- "id": 943,
+ "id": 945,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 944,
+ "id": 946,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -49935,7 +50351,7 @@
}
},
{
- "id": 945,
+ "id": 947,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -49995,7 +50411,7 @@
"groups": [
{
"title": "Properties",
- "children": [936, 932, 941]
+ "children": [938, 934, 943]
}
],
"sources": [
@@ -50009,7 +50425,7 @@
}
},
{
- "id": 946,
+ "id": 948,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -50027,14 +50443,14 @@
{
"type": "reflection",
"declaration": {
- "id": 947,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 948,
+ "id": 950,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -50052,7 +50468,7 @@
}
},
{
- "id": 951,
+ "id": 953,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50069,14 +50485,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 952,
+ "id": 954,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 954,
+ "id": 956,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50104,7 +50520,7 @@
}
},
{
- "id": 955,
+ "id": 957,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -50176,7 +50592,7 @@
}
},
{
- "id": 953,
+ "id": 955,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -50207,7 +50623,7 @@
"groups": [
{
"title": "Properties",
- "children": [954, 955, 953]
+ "children": [956, 957, 955]
}
],
"sources": [
@@ -50221,7 +50637,7 @@
}
},
{
- "id": 950,
+ "id": 952,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -50249,7 +50665,7 @@
}
},
{
- "id": 949,
+ "id": 951,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -50281,7 +50697,7 @@
],
"type": {
"type": "reference",
- "target": 930,
+ "target": 932,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -50290,7 +50706,7 @@
"groups": [
{
"title": "Properties",
- "children": [948, 951, 950, 949]
+ "children": [950, 953, 952, 951]
}
],
"sources": [
@@ -50305,14 +50721,14 @@
{
"type": "reflection",
"declaration": {
- "id": 956,
+ "id": 958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 957,
+ "id": 959,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -50330,7 +50746,7 @@
}
},
{
- "id": 958,
+ "id": 960,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -50380,7 +50796,7 @@
}
},
{
- "id": 960,
+ "id": 962,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50397,14 +50813,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 961,
+ "id": 963,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 962,
+ "id": 964,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50435,7 +50851,7 @@
"groups": [
{
"title": "Properties",
- "children": [962]
+ "children": [964]
}
],
"sources": [
@@ -50449,7 +50865,7 @@
}
},
{
- "id": 959,
+ "id": 961,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -50483,7 +50899,7 @@
"groups": [
{
"title": "Properties",
- "children": [957, 958, 960, 959]
+ "children": [959, 960, 962, 961]
}
],
"sources": [
@@ -50499,7 +50915,7 @@
}
},
{
- "id": 798,
+ "id": 800,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -50513,19 +50929,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 799,
+ "id": 801,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 800,
+ "id": 802,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -50562,7 +50978,7 @@
"groups": [
{
"title": "Properties",
- "children": [800]
+ "children": [802]
}
],
"sources": [
@@ -50580,7 +50996,7 @@
}
},
{
- "id": 742,
+ "id": 744,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -50602,14 +51018,14 @@
],
"typeParameters": [
{
- "id": 743,
+ "id": 745,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 744,
+ "id": 746,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -50619,7 +51035,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 743,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -50636,14 +51052,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 743,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 744,
+ "target": 746,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -50664,7 +51080,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28"
}
],
"typeParameters": [
@@ -50714,7 +51130,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 111,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111"
}
],
"type": {
@@ -50730,7 +51146,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 111,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111"
}
],
"signatures": [
@@ -50782,7 +51198,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36"
}
],
"type": {
@@ -50815,7 +51231,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L40"
}
],
"type": {
@@ -50844,7 +51260,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 72,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -50885,7 +51301,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L52"
}
],
"type": {
@@ -50914,7 +51330,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 68,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L68"
}
],
"type": {
@@ -50956,7 +51372,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 78,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -50997,7 +51413,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L48"
}
],
"type": {
@@ -51026,7 +51442,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 56,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L56"
}
],
"type": {
@@ -51067,7 +51483,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -51096,7 +51512,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 83,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L83"
}
],
"type": {
@@ -51138,7 +51554,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 64,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L64"
}
],
"type": {
@@ -51170,7 +51586,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 36,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36"
}
]
}
@@ -51205,7 +51621,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32"
}
],
"type": {
@@ -51230,7 +51646,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 33,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L33"
}
],
"type": {
@@ -51253,7 +51669,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 32,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32"
}
]
}
@@ -51272,7 +51688,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90"
}
],
"type": {
@@ -51313,7 +51729,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 94,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -51347,7 +51763,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 98,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -51382,7 +51798,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 90,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90"
}
]
}
@@ -51409,12 +51825,12 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L88"
}
],
"type": {
"type": "reference",
- "target": 2039,
+ "target": 2056,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js"
}
@@ -51432,7 +51848,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L89"
}
],
"type": {
@@ -51457,14 +51873,14 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 28,
"character": 48,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28"
}
]
}
}
},
{
- "id": 1255,
+ "id": 1257,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -51530,14 +51946,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1256,
+ "id": 1258,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1257,
+ "id": 1259,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -51576,7 +51992,7 @@
"groups": [
{
"title": "Properties",
- "children": [1257]
+ "children": [1259]
}
],
"sources": [
@@ -51592,7 +52008,7 @@
}
},
{
- "id": 1354,
+ "id": 1356,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -51615,14 +52031,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1355,
+ "id": 1357,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1356,
+ "id": 1358,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -51650,7 +52066,7 @@
}
},
{
- "id": 1357,
+ "id": 1359,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -51678,7 +52094,7 @@
}
},
{
- "id": 1360,
+ "id": 1362,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -51704,14 +52120,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1326,
+ "target": 1328,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1358,
+ "id": 1360,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -51739,7 +52155,7 @@
}
},
{
- "id": 1359,
+ "id": 1361,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -51773,7 +52189,7 @@
"groups": [
{
"title": "Properties",
- "children": [1356, 1357, 1360, 1358, 1359]
+ "children": [1358, 1359, 1362, 1360, 1361]
}
],
"sources": [
@@ -51787,7 +52203,7 @@
}
},
{
- "id": 801,
+ "id": 803,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -51801,19 +52217,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 802,
+ "id": 804,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 803,
+ "id": 805,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -51836,7 +52252,7 @@
"groups": [
{
"title": "Properties",
- "children": [803]
+ "children": [805]
}
],
"sources": [
@@ -51854,7 +52270,7 @@
}
},
{
- "id": 982,
+ "id": 984,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -51871,19 +52287,19 @@
"types": [
{
"type": "reference",
- "target": 983,
+ "target": 985,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 991,
+ "target": 993,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 999,
+ "target": 1001,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -51891,7 +52307,7 @@
}
},
{
- "id": 736,
+ "id": 738,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -51906,14 +52322,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 737,
+ "id": 739,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 739,
+ "id": 741,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -51931,7 +52347,7 @@
}
},
{
- "id": 738,
+ "id": 740,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -51947,7 +52363,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 735,
+ "target": 737,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -51957,7 +52373,7 @@
"groups": [
{
"title": "Properties",
- "children": [739, 738]
+ "children": [741, 740]
}
],
"sources": [
@@ -51971,7 +52387,7 @@
}
},
{
- "id": 735,
+ "id": 737,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -52005,7 +52421,7 @@
}
},
{
- "id": 981,
+ "id": 983,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -52022,13 +52438,13 @@
"types": [
{
"type": "reference",
- "target": 946,
+ "target": 948,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 964,
+ "target": 966,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -52036,7 +52452,7 @@
}
},
{
- "id": 674,
+ "id": 676,
"name": "AuthAdminApi",
"variant": "declaration",
"kind": 32,
@@ -52062,7 +52478,7 @@
}
},
{
- "id": 675,
+ "id": 677,
"name": "AuthClient",
"variant": "declaration",
"kind": 32,
@@ -52088,7 +52504,7 @@
}
},
{
- "id": 689,
+ "id": 691,
"name": "lockInternals",
"variant": "declaration",
"kind": 32,
@@ -52109,14 +52525,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 690,
+ "id": 692,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 691,
+ "id": 693,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -52141,7 +52557,7 @@
"groups": [
{
"title": "Properties",
- "children": [691]
+ "children": [693]
}
],
"sources": [
@@ -52155,7 +52571,7 @@
}
},
{
- "id": 2166,
+ "id": 2183,
"name": "REALTIME_CHANNEL_STATES",
"variant": "declaration",
"kind": 32,
@@ -52184,7 +52600,7 @@
}
},
{
- "id": 1324,
+ "id": 1326,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -52250,7 +52666,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35"
}
],
"signatures": [
@@ -52265,7 +52681,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 35,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35"
}
],
"typeParameters": [
@@ -52313,7 +52729,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 39,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39"
}
],
"type": {
@@ -52333,7 +52749,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 39,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39"
}
]
}
@@ -52655,7 +53071,7 @@
]
},
{
- "id": 1436,
+ "id": 1453,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -52669,7 +53085,7 @@
],
"signatures": [
{
- "id": 1437,
+ "id": 1454,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -52683,7 +53099,7 @@
],
"parameters": [
{
- "id": 1438,
+ "id": 1455,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52700,7 +53116,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1461,
+ "target": 1478,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -52709,7 +53125,7 @@
]
},
{
- "id": 1433,
+ "id": 1450,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -52723,7 +53139,7 @@
],
"signatures": [
{
- "id": 1434,
+ "id": 1451,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -52737,7 +53153,7 @@
],
"parameters": [
{
- "id": 1435,
+ "id": 1452,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52754,7 +53170,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -52763,7 +53179,7 @@
]
},
{
- "id": 1442,
+ "id": 1459,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -52777,7 +53193,7 @@
],
"signatures": [
{
- "id": 1443,
+ "id": 1460,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -52791,7 +53207,7 @@
],
"parameters": [
{
- "id": 1444,
+ "id": 1461,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52808,7 +53224,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1518,
+ "target": 1535,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -52817,7 +53233,7 @@
]
},
{
- "id": 1445,
+ "id": 1462,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -52831,7 +53247,7 @@
],
"signatures": [
{
- "id": 1446,
+ "id": 1463,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -52845,7 +53261,7 @@
],
"parameters": [
{
- "id": 1447,
+ "id": 1464,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52862,7 +53278,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1572,
+ "target": 1589,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -52871,7 +53287,7 @@
]
},
{
- "id": 1439,
+ "id": 1456,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -52885,7 +53301,7 @@
],
"signatures": [
{
- "id": 1440,
+ "id": 1457,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -52899,7 +53315,7 @@
],
"parameters": [
{
- "id": 1441,
+ "id": 1458,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52916,7 +53332,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1493,
+ "target": 1510,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -52925,7 +53341,7 @@
]
},
{
- "id": 1448,
+ "id": 1465,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -52939,7 +53355,7 @@
],
"signatures": [
{
- "id": 1449,
+ "id": 1466,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -52953,7 +53369,7 @@
],
"parameters": [
{
- "id": 1450,
+ "id": 1467,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52970,7 +53386,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1582,
+ "target": 1599,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -52979,7 +53395,7 @@
]
},
{
- "id": 676,
+ "id": 678,
"name": "navigatorLock",
"variant": "declaration",
"kind": 64,
@@ -52993,7 +53409,7 @@
],
"signatures": [
{
- "id": 677,
+ "id": 679,
"name": "navigatorLock",
"variant": "signature",
"kind": 4096,
@@ -53067,207 +53483,8 @@
}
],
"typeParameters": [
- {
- "id": 678,
- "name": "R",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {}
- }
- ],
- "parameters": [
- {
- "id": 679,
- "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": 680,
- "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": 681,
- "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": 682,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
- "line": 85,
- "character": 83
- }
- ],
- "signatures": [
- {
- "id": 683,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
- "line": 85,
- "character": 83
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 678,
- "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": 678,
- "name": "R",
- "package": "@supabase/auth-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "Promise",
- "package": "typescript"
- }
- }
- ]
- },
- {
- "id": 692,
- "name": "processLock",
- "variant": "declaration",
- "kind": 64,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
- "line": 106,
- "character": 24
- }
- ],
- "signatures": [
- {
- "id": 693,
- "name": "processLock",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse "
- },
- {
- "kind": "inline-tag",
- "tag": "@link",
- "text": "#navigatorLock"
- },
- {
- "kind": "text",
- "text": " in browser environments."
- }
- ],
- "blockTags": [
- {
- "tag": "@example",
- "content": [
- {
- "kind": "code",
- "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```"
- }
- ]
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
- "line": 106,
- "character": 24
- }
- ],
- "typeParameters": [
- {
- "id": 694,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -53276,7 +53493,7 @@
],
"parameters": [
{
- "id": 695,
+ "id": 681,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -53295,7 +53512,7 @@
}
},
{
- "id": 696,
+ "id": 682,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -53321,8 +53538,207 @@
"name": "number"
}
},
+ {
+ "id": 683,
+ "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": 684,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 85,
+ "character": 83
+ }
+ ],
+ "signatures": [
+ {
+ "id": 685,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 85,
+ "character": 83
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 680,
+ "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": 680,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 694,
+ "name": "processLock",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 106,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 695,
+ "name": "processLock",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#navigatorLock"
+ },
+ {
+ "kind": "text",
+ "text": " in browser environments."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```ts\nawait processLock('migrate', 5000, async () => {\n await runMigration()\n})\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 106,
+ "character": 24
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 696,
+ "name": "R",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "parameters": [
{
"id": 697,
+ "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": 698,
+ "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": 699,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -53338,7 +53754,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 698,
+ "id": 700,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -53352,7 +53768,7 @@
],
"signatures": [
{
- "id": 699,
+ "id": 701,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -53373,7 +53789,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 694,
+ "target": 696,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -53397,7 +53813,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 694,
+ "target": 696,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -53410,7 +53826,7 @@
]
},
{
- "id": 804,
+ "id": 806,
"name": "Session",
"variant": "reference",
"kind": 4194304,
@@ -53425,7 +53841,7 @@
"target": 37
},
{
- "id": 841,
+ "id": 843,
"name": "User",
"variant": "reference",
"kind": 4194304,
@@ -53443,47 +53859,47 @@
"groups": [
{
"title": "Enumerations",
- "children": [97, 2147, 2152, 2157, 2161]
+ "children": [97, 2164, 2169, 2174, 2178]
},
{
"title": "Classes",
"children": [
- 1461, 1451, 1518, 1509, 1594, 1501, 1545, 1572, 1493, 1471, 1582, 1481, 79, 69, 64, 74,
- 277, 363, 684, 52, 1620, 1929, 1603, 113, 2167
+ 1478, 1468, 1535, 1526, 1611, 1518, 1562, 1589, 1510, 1488, 1599, 1498, 79, 69, 64, 74,
+ 277, 363, 686, 52, 1637, 1946, 1620, 113, 2184
]
},
{
"title": "Interfaces",
"children": [
- 848, 807, 1417, 37, 11, 1055, 1248, 1374, 1118, 1317, 1297, 861, 833, 842, 810, 838,
- 991, 983, 999, 2183, 2233
+ 850, 809, 1427, 37, 11, 1057, 1250, 1376, 1120, 1319, 1299, 863, 835, 844, 812, 840,
+ 993, 985, 1001, 2200, 2250
]
},
{
"title": "Type Aliases",
"children": [
- 805, 702, 701, 1112, 907, 1238, 1235, 1245, 1242, 1103, 1107, 1102, 1104, 1105, 1106,
- 1280, 1098, 1279, 1281, 1113, 1108, 1099, 1097, 1090, 1413, 1414, 771, 762, 766, 776,
- 780, 1261, 1346, 1003, 963, 964, 823, 822, 86, 1049, 1039, 1058, 1063, 1059, 1070, 1044,
- 1033, 712, 1258, 1282, 703, 1089, 1088, 1086, 1085, 1087, 1071, 1277, 1276, 1278, 1084,
- 1072, 1083, 1076, 1075, 1077, 1081, 1002, 1397, 1403, 1330, 1326, 1362, 1329, 1361,
- 1327, 1328, 785, 1269, 1262, 50, 46, 48, 740, 700, 272, 276, 270, 1914, 1928, 2039,
- 2069, 2076, 2083, 2107, 2088, 2098, 2117, 2127, 2137, 2146, 745, 754, 1287, 1004, 871,
- 920, 908, 885, 890, 1018, 1273, 1325, 877, 930, 946, 798, 742, 243, 1255, 1354, 801,
- 982, 736, 735, 981
+ 807, 704, 703, 1114, 909, 1240, 1237, 1247, 1244, 1105, 1109, 1104, 1106, 1107, 1108,
+ 1282, 1100, 1281, 1283, 1115, 1110, 1101, 1099, 1092, 1415, 1416, 1424, 1425, 773, 764,
+ 768, 778, 782, 1263, 1348, 1005, 965, 966, 825, 824, 86, 1051, 1041, 1060, 1065, 1061,
+ 1072, 1046, 1035, 714, 1260, 1284, 705, 1091, 1090, 1088, 1087, 1089, 1073, 1279, 1278,
+ 1280, 1086, 1074, 1085, 1078, 1077, 1079, 1083, 1004, 1399, 1405, 1332, 1328, 1364,
+ 1331, 1363, 1329, 1330, 1419, 787, 1271, 1264, 50, 46, 48, 742, 702, 272, 276, 270,
+ 1931, 1945, 2056, 2086, 2093, 2100, 2124, 2105, 2115, 2134, 2144, 2154, 2163, 747, 756,
+ 1289, 1006, 873, 922, 910, 887, 892, 1020, 1275, 1327, 879, 932, 948, 800, 744, 243,
+ 1257, 1356, 803, 984, 738, 737, 983
]
},
{
"title": "Variables",
- "children": [674, 675, 689, 2166, 1324]
+ "children": [676, 677, 691, 2183, 1326]
},
{
"title": "Functions",
- "children": [1, 1436, 1433, 1442, 1445, 1439, 1448, 676, 692]
+ "children": [1, 1453, 1450, 1459, 1462, 1456, 1465, 678, 694]
},
{
"title": "References",
- "children": [804, 841]
+ "children": [806, 843]
}
],
"packageName": "@supabase/supabase-js",
@@ -55960,873 +56376,865 @@
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "default.stopAutoRefresh"
},
- "651": {
+ "653": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "652": {
+ "654": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "653": {
+ "655": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "jwt"
},
- "654": {
+ "656": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "655": {
+ "657": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "656": {
+ "658": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "657": {
+ "659": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.allowExpired"
},
- "658": {
+ "660": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.jwks"
},
- "659": {
+ "661": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "660": {
+ "662": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "661": {
+ "663": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "662": {
+ "664": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "663": {
+ "665": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "664": {
+ "666": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.claims"
},
- "665": {
+ "667": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.header"
},
- "666": {
+ "668": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.signature"
},
- "667": {
+ "669": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "668": {
+ "670": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "669": {
+ "671": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "670": {
+ "672": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "671": {
+ "673": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "672": {
+ "674": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "673": {
+ "675": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "674": {
+ "676": {
"sourceFileName": "../auth-js/src/AuthAdminApi.ts",
"qualifiedName": "AuthAdminApi"
},
- "675": {
+ "677": {
"sourceFileName": "../auth-js/src/AuthClient.ts",
"qualifiedName": "AuthClient"
},
- "676": {
+ "678": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "677": {
+ "679": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "678": {
+ "680": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "R"
},
- "679": {
+ "681": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "name"
},
- "680": {
+ "682": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "681": {
+ "683": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "fn"
},
- "682": {
+ "684": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "683": {
+ "685": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "684": {
+ "686": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "685": {
+ "687": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.__constructor"
},
- "686": {
+ "688": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "687": {
+ "689": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "message"
},
- "688": {
+ "690": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout"
},
- "689": {
+ "691": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "internals"
},
- "690": {
+ "692": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "691": {
+ "693": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type.debug"
},
- "692": {
+ "694": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "693": {
+ "695": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "694": {
+ "696": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "R"
},
- "695": {
+ "697": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "name"
},
- "696": {
+ "698": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "697": {
+ "699": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "fn"
},
- "698": {
+ "700": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "699": {
+ "701": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "700": {
+ "702": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Provider"
},
- "701": {
+ "703": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthChangeEventMFA"
},
- "702": {
+ "704": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthChangeEvent"
},
- "703": {
+ "705": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "LockFunc"
},
- "704": {
+ "706": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "705": {
+ "707": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "706": {
+ "708": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "name"
},
- "707": {
+ "709": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "acquireTimeout"
},
- "708": {
+ "710": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "fn"
},
- "709": {
+ "711": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "710": {
+ "712": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "711": {
+ "713": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "R"
},
- "712": {
+ "714": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "GoTrueClientOptions"
},
- "713": {
+ "715": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "714": {
+ "716": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "715": {
+ "717": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.headers"
},
- "716": {
+ "718": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "717": {
+ "719": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "719": {
+ "721": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.storageKey"
},
- "720": {
+ "722": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.detectSessionInUrl"
},
- "721": {
+ "723": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.autoRefreshToken"
},
- "722": {
+ "724": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.persistSession"
},
- "723": {
+ "725": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.storage"
},
- "724": {
+ "726": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.userStorage"
},
- "725": {
+ "727": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.fetch"
},
- "726": {
+ "728": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.flowType"
},
- "727": {
+ "729": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.debug"
},
- "728": {
+ "730": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "729": {
+ "731": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "730": {
+ "732": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "message"
},
- "731": {
+ "733": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "args"
},
- "732": {
+ "734": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.lock"
},
- "733": {
+ "735": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.hasCustomAuthorizationHeader"
},
- "734": {
+ "736": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.throwOnError"
},
- "735": {
+ "737": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "WeakPasswordReasons"
},
- "736": {
+ "738": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "WeakPassword"
},
- "737": {
+ "739": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "738": {
+ "740": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.reasons"
},
- "739": {
+ "741": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.message"
},
- "740": {
+ "742": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Prettify"
},
- "741": {
+ "743": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "742": {
+ "744": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "StrictOmit"
},
- "743": {
+ "745": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "744": {
+ "746": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "K"
},
- "745": {
+ "747": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequestResult"
},
- "746": {
+ "748": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "747": {
+ "749": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "748": {
+ "750": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "749": {
+ "751": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "750": {
+ "752": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "751": {
+ "753": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "752": {
+ "754": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "753": {
+ "755": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "ErrorType"
},
- "754": {
+ "756": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequestResultSafeDestructure"
},
- "755": {
+ "757": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "756": {
+ "758": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "757": {
+ "759": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "758": {
+ "760": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "759": {
+ "761": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "760": {
+ "762": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "761": {
+ "763": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "762": {
+ "764": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthResponse"
},
- "763": {
+ "765": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "764": {
+ "766": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "765": {
+ "767": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "766": {
+ "768": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthResponsePassword"
},
- "767": {
+ "769": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "768": {
+ "770": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "769": {
+ "771": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "770": {
+ "772": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.weak_password"
},
- "771": {
+ "773": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthOtpResponse"
},
- "772": {
+ "774": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "773": {
+ "775": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "774": {
+ "776": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "775": {
+ "777": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.messageId"
},
- "776": {
+ "778": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthTokenResponse"
},
- "777": {
+ "779": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "778": {
+ "780": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "779": {
+ "781": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "780": {
+ "782": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthTokenResponsePassword"
},
- "781": {
+ "783": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "782": {
+ "784": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "783": {
+ "785": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "784": {
+ "786": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.weakPassword"
},
- "785": {
+ "787": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "OAuthResponse"
},
- "786": {
+ "788": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "787": {
+ "789": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "788": {
+ "790": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "789": {
+ "791": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "790": {
+ "792": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "791": {
+ "793": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "792": {
+ "794": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "793": {
+ "795": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "794": {
+ "796": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "795": {
+ "797": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "796": {
+ "798": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "797": {
+ "799": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "798": {
+ "800": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "SSOResponse"
},
- "799": {
+ "801": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "800": {
+ "802": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "801": {
+ "803": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserResponse"
},
- "802": {
+ "804": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "803": {
+ "805": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "804": {
+ "806": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Session"
},
- "805": {
+ "807": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMRMethod"
},
- "806": {
+ "808": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "807": {
+ "809": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMREntry"
},
- "808": {
+ "810": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMREntry.method"
},
- "809": {
+ "811": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMREntry.timestamp"
},
- "810": {
+ "812": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity"
},
- "811": {
+ "813": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.id"
},
- "812": {
+ "814": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.user_id"
},
- "813": {
+ "815": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_data"
},
- "814": {
+ "816": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "815": {
+ "817": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "817": {
+ "819": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "818": {
+ "820": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "819": {
+ "821": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "820": {
+ "822": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "821": {
+ "823": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "822": {
+ "824": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "823": {
+ "825": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Factor"
},
- "824": {
+ "826": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "825": {
+ "827": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "826": {
+ "828": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "827": {
+ "829": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "828": {
+ "830": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "829": {
+ "831": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "830": {
+ "832": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "831": {
+ "833": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Type"
},
- "832": {
+ "834": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Status"
},
- "833": {
+ "835": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "834": {
+ "836": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "835": {
+ "837": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.providers"
},
- "836": {
+ "838": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "838": {
+ "840": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "839": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserMetadata.__index"
- },
"841": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "User"
- },
- "842": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes"
+ "qualifiedName": "UserMetadata.__index"
},
"843": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.email"
+ "qualifiedName": "User"
},
"844": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.phone"
+ "qualifiedName": "UserAttributes"
},
"845": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.password"
+ "qualifiedName": "UserAttributes.email"
},
"846": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.nonce"
+ "qualifiedName": "UserAttributes.phone"
},
"847": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.data"
+ "qualifiedName": "UserAttributes.password"
},
"848": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes"
+ "qualifiedName": "UserAttributes.nonce"
},
"849": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.user_metadata"
+ "qualifiedName": "UserAttributes.data"
},
"850": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.app_metadata"
+ "qualifiedName": "AdminUserAttributes"
},
"851": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.email_confirm"
+ "qualifiedName": "AdminUserAttributes.user_metadata"
},
"852": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.phone_confirm"
+ "qualifiedName": "AdminUserAttributes.app_metadata"
},
"853": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.ban_duration"
+ "qualifiedName": "AdminUserAttributes.email_confirm"
},
"854": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.role"
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
},
"855": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.password_hash"
+ "qualifiedName": "AdminUserAttributes.ban_duration"
},
"856": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.id"
+ "qualifiedName": "AdminUserAttributes.role"
},
"857": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "nonce"
+ "qualifiedName": "AdminUserAttributes.password_hash"
},
"858": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "email"
+ "qualifiedName": "AdminUserAttributes.id"
},
"859": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "password"
+ "qualifiedName": "nonce"
},
"860": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "email"
},
"861": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription"
+ "qualifiedName": "password"
},
"862": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.id"
+ "qualifiedName": "phone"
},
"863": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.callback"
+ "qualifiedName": "Subscription"
},
"864": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.id"
},
"865": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.callback"
},
"866": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type"
},
"867": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "session"
+ "qualifiedName": "__type"
},
"868": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.unsubscribe"
+ "qualifiedName": "event"
},
"869": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "session"
},
"870": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.unsubscribe"
},
"871": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInAnonymouslyCredentials"
+ "qualifiedName": "__type"
},
"872": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56834,7 +57242,7 @@
},
"873": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignInAnonymouslyCredentials"
},
"874": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56842,23 +57250,23 @@
},
"875": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.options"
},
"876": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"877": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
+ "qualifiedName": "__type.data"
},
"878": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"879": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"880": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56866,31 +57274,31 @@
},
"881": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type.options"
},
"882": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"883": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"884": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.data"
},
"885": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"886": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.channel"
},
"887": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"888": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56898,135 +57306,135 @@
},
"889": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"890": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type"
},
"891": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"892": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"893": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"894": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email"
},
"895": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type.options"
},
"896": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type"
},
"897": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.emailRedirectTo"
},
"898": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.shouldCreateUser"
},
"899": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"900": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.captchaToken"
},
"901": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"902": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.phone"
},
"903": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.options"
},
"904": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"905": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.shouldCreateUser"
},
"906": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.data"
},
"907": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.captchaToken"
},
"908": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "__type.channel"
},
"909": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthFlowType"
},
"910": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"911": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"912": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.provider"
},
"913": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.options"
},
"914": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type"
},
"915": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "__type.redirectTo"
},
"916": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.scopes"
},
"917": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.queryParams"
},
- "919": {
+ "918": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
- "920": {
+ "919": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.__index"
},
"921": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"922": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"923": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57034,39 +57442,39 @@
},
"924": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token"
+ "qualifiedName": "__type.provider"
},
"925": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type"
},
"926": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.token"
},
"927": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.access_token"
},
"928": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.nonce"
},
"929": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"930": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type"
},
"931": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"932": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "SolanaWallet"
},
"933": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57074,23 +57482,23 @@
},
"934": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"935": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"936": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "inputs"
},
"938": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type.publicKey"
},
"939": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57098,11 +57506,11 @@
},
"940": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.toBase58"
},
"941": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"942": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57110,559 +57518,559 @@
},
"943": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signMessage"
},
"944": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"945": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "__type"
},
"946": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "message"
},
"947": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "encoding"
},
"948": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"949": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.chain"
},
"951": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.wallet"
},
"952": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.statement"
},
"953": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.options"
},
"954": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"955": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.url"
},
"956": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"957": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signInWithSolana"
},
"958": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type"
},
"959": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.chain"
},
"960": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.message"
},
"961": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signature"
},
"962": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"963": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type"
},
"964": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "__type.captchaToken"
},
"965": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWallet"
},
"966": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"967": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type"
},
"968": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.chain"
},
"969": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.wallet"
},
"970": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.statement"
},
"971": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.options"
},
"972": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"973": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.url"
},
"974": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"975": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signInWithEthereum"
},
"976": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type"
},
"977": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.chain"
},
"978": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.message"
},
"979": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signature"
},
"980": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"981": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type"
},
"982": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "__type.captchaToken"
},
"983": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "Web3Credentials"
},
"984": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "VerifyOtpParams"
},
"985": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"986": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"987": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"988": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"989": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"990": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"991": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "__type.redirectTo"
},
"992": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "__type.captchaToken"
},
"993": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"994": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"995": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"996": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"997": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"998": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "__type.redirectTo"
},
"1000": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "__type.captchaToken"
},
"1001": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1002": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1003": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1004": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "MobileOtpType"
},
"1005": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EmailOtpType"
},
"1006": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "ResendParams"
},
"1007": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1008": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1009": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email"
},
"1010": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type.options"
},
"1011": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1012": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1013": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type.captchaToken"
},
"1014": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type"
},
"1015": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1016": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.phone"
},
"1017": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"1018": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type"
},
"1019": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1020": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "SignInWithSSO"
},
"1021": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"1022": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.providerId"
},
"1023": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.options"
},
"1024": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1025": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.redirectTo"
},
"1026": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1027": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1028": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"1029": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.domain"
},
"1030": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.options"
},
"1031": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1032": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.redirectTo"
},
"1033": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type.captchaToken"
},
"1034": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1035": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1036": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1037": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.type"
},
"1038": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1039": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.password"
},
"1040": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1041": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1042": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1043": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1044": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.email"
},
"1045": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1046": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1047": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1048": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1049": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.email"
},
"1050": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1051": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1052": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1053": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.type"
},
"1054": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1055": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.newEmail"
},
"1056": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "__type.options"
},
"1057": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "GenerateLinkOptions"
},
"1058": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1059": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1060": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkParams"
},
"1061": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "GenerateLinkResponse"
},
"1062": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"1063": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "__type.properties"
},
"1064": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1065": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "GenerateLinkProperties"
},
"1066": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "__type"
},
"1067": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type.action_link"
},
"1068": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.email_otp"
},
"1069": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.hashed_token"
},
"1070": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "__type.redirect_to"
},
"1071": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "__type.verification_type"
},
"1072": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "GenerateLinkType"
},
"1073": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAEnrollParams"
},
"1074": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "MFAUnenrollParams"
},
"1075": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type"
},
"1076": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "__type.factorId"
},
"1077": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1078": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1079": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1080": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type"
},
"1081": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "__type.webauthn"
},
"1082": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57670,247 +58078,247 @@
},
"1083": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1084": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "T"
},
"1085": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "MFAVerifyParams"
},
"1086": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "MFATOTPChannel"
},
"1087": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1088": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1089": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1090": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAChallengeParams"
},
"1091": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1092": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1093": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "__type"
},
"1094": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "__type.access_token"
},
"1095": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "__type.token_type"
},
"1096": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.expires_in"
},
"1097": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "__type.refresh_token"
},
"1098": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "__type.user"
},
"1099": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1100": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1101": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1102": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type"
},
"1103": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "__type.id"
},
"1104": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1105": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1106": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1107": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1108": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1109": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1110": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1111": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type"
},
"1112": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "__type.all"
},
"1113": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "T"
},
"1114": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1115": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1116": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type"
},
"1117": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.currentLevel"
},
"1118": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "__type.nextLevel"
},
"1119": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1120": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "GoTrueMFAApi"
},
"1121": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1122": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1123": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "params"
},
"1124": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type"
},
"1125": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "factorType"
},
"1126": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1127": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "issuer"
},
"1128": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1129": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "params"
},
"1130": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type"
},
"1131": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "factorType"
},
"1132": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1133": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "phone"
},
"1134": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1135": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "params"
},
"1136": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type"
},
"1137": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "factorType"
},
"1138": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "friendlyName"
},
"1139": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1140": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1141": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1142": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1143": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1144": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57918,19 +58326,19 @@
},
"1145": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "factorId"
},
"1146": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1147": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1148": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1149": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57938,59 +58346,59 @@
},
"1150": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "data"
},
"1151": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1152": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "id"
},
"1153": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "type"
},
"1154": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "expires_at"
},
"1155": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "error"
},
"1156": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1157": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1158": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "__type"
},
"1159": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1160": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "channel"
},
"1161": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1162": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1163": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1164": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57998,71 +58406,71 @@
},
"1165": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "data"
},
"1166": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1167": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "id"
},
"1168": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "type"
},
"1169": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "expires_at"
},
"1170": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "error"
},
"1171": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1172": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1173": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "__type"
},
"1174": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1175": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "webauthn"
},
"1176": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "__type"
},
"1177": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpId"
},
"1178": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type.rpOrigins"
},
"1179": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1180": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1181": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1182": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58070,39 +58478,39 @@
},
"1183": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "data"
},
"1184": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1185": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "id"
},
"1186": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "type"
},
"1187": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1188": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "webauthn"
},
"1189": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1190": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.type"
},
"1191": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.credential_options"
},
"1192": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58110,679 +58518,679 @@
},
"1193": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type.publicKey"
},
"1194": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1195": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.type"
},
"1196": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.credential_options"
},
"1197": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1198": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type.publicKey"
},
"1199": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "error"
},
"1200": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1201": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "params"
},
"1202": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1203": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1204": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1205": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "__type"
},
"1206": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1207": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "challengeId"
},
"1208": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "code"
},
"1209": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1210": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1211": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "__type"
},
"1212": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1213": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "challengeId"
},
"1214": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "code"
},
"1215": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1216": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1217": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "__type"
},
"1218": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "factorId"
},
"1219": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "challengeId"
},
"1220": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "webauthn"
},
"1221": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1222": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1223": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1224": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1225": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "params"
},
"1226": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1227": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1228": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1229": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "factorId"
},
"1231": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "code"
},
"1232": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1233": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1234": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1235": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1236": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1237": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1238": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "__type"
},
"1239": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.id"
},
"1240": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1241": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type"
},
"1242": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "__type.id"
},
"1243": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.userId"
},
"1244": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1245": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "__type"
},
"1246": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.factors"
},
"1247": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1248": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type"
},
"1249": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "__type.userId"
},
"1250": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1251": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1252": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1253": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "params"
},
"1254": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1255": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1256": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1257": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "SupportedStorage"
},
"1258": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "__type"
},
"1259": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.isServer"
},
"1260": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "InitializeResult"
},
"1261": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "__type"
},
"1262": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "__type.error"
},
"1263": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "CallRefreshTokenResult"
},
"1264": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "Pagination"
},
"1265": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "__type"
},
"1266": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type.nextPage"
},
"1267": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.lastPage"
+ },
+ "1268": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.total"
},
"1269": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1271": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "PageParams"
},
- "1270": {
+ "1272": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1271": {
+ "1273": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.page"
},
- "1272": {
+ "1274": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.perPage"
},
- "1273": {
+ "1275": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "SignOut"
},
- "1274": {
+ "1276": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1275": {
+ "1277": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.scope"
},
- "1276": {
+ "1278": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollTOTPParams"
},
- "1277": {
+ "1279": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollPhoneParams"
},
- "1278": {
+ "1280": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollWebauthnParams"
},
- "1279": {
+ "1281": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollTOTPResponse"
},
- "1280": {
+ "1282": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollPhoneResponse"
},
- "1281": {
+ "1283": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
- "1282": {
+ "1284": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtHeader"
},
- "1283": {
+ "1285": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1284": {
+ "1286": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.alg"
},
- "1285": {
+ "1287": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.kid"
},
- "1286": {
+ "1288": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.typ"
},
- "1287": {
+ "1289": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequiredClaims"
},
- "1288": {
+ "1290": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1289": {
+ "1291": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1290": {
+ "1292": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1291": {
+ "1293": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1292": {
+ "1294": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1293": {
+ "1295": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1294": {
+ "1296": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1295": {
+ "1297": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1296": {
+ "1298": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1297": {
+ "1299": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload"
},
- "1298": {
+ "1300": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.email"
},
- "1299": {
+ "1301": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.phone"
},
- "1300": {
+ "1302": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.is_anonymous"
},
- "1301": {
+ "1303": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.jti"
},
- "1302": {
+ "1304": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.nbf"
},
- "1303": {
+ "1305": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.app_metadata"
},
- "1304": {
+ "1306": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.user_metadata"
},
- "1305": {
+ "1307": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.amr"
},
- "1306": {
+ "1308": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.ref"
},
- "1307": {
+ "1309": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1308": {
+ "1310": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1309": {
+ "1311": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1310": {
+ "1312": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1311": {
+ "1313": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1312": {
+ "1314": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1313": {
+ "1315": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1314": {
+ "1316": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1315": {
+ "1317": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.__index"
},
- "1317": {
+ "1319": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK"
},
- "1318": {
+ "1320": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.kty"
},
- "1319": {
+ "1321": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.key_ops"
},
- "1320": {
+ "1322": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.alg"
},
- "1321": {
+ "1323": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.kid"
},
- "1322": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "JWK.__index"
- },
"1324": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
- },
- "1325": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "JWK.__index"
},
"1326": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1327": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "SignOutScope"
},
"1328": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "OAuthClientGrantType"
},
"1329": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
+ "qualifiedName": "OAuthClientResponseType"
},
"1330": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "OAuthClientType"
},
"1331": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1332": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "OAuthClient"
},
"1333": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1334": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "__type.client_id"
},
"1335": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "__type.client_name"
},
"1336": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "__type.client_secret"
},
"1337": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "__type.client_type"
},
"1338": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1339": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.registration_type"
},
"1340": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1341": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.logo_uri"
},
"1342": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1343": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.grant_types"
},
"1344": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.response_types"
},
"1345": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.scope"
},
"1346": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.created_at"
},
"1347": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.updated_at"
},
"1348": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1349": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type"
},
"1350": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_name"
},
"1351": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.client_uri"
},
"1352": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1353": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.grant_types"
},
"1354": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type.response_types"
},
"1355": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.scope"
},
"1356": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1357": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type"
},
"1358": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_name"
},
"1359": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1360": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.logo_uri"
},
"1361": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "__type.redirect_uris"
},
"1362": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "__type.grant_types"
},
"1363": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientResponse"
},
"1364": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "OAuthClientListResponse"
},
"1365": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58790,23 +59198,23 @@
},
"1366": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type.data"
},
"1367": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type"
},
"1368": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1369": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.aud"
},
"1370": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.error"
},
"1371": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58814,1732 +59222,1736 @@
},
"1372": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type.data"
},
"1373": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1374": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.clients"
},
"1375": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "__type.error"
},
"1376": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1377": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1378": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1379": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "params"
},
"1380": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1381": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1382": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "params"
},
"1383": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1384": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1385": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "clientId"
},
"1386": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1387": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1388": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "clientId"
},
"1389": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "params"
},
"1390": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1391": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1392": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "clientId"
},
"1393": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1394": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.data"
},
"1395": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.error"
},
"1396": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1397": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1398": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "clientId"
},
"1399": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1400": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1401": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.id"
},
"1402": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.name"
},
"1403": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "__type.uri"
},
"1404": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.logo_uri"
},
"1405": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1406": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type"
},
"1407": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.authorization_id"
},
"1408": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.redirect_uri"
},
"1409": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.client"
},
"1410": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.user"
},
"1411": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1412": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.id"
},
"1413": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.email"
},
"1414": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "__type.scope"
},
"1415": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1416": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1417": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type"
},
"1418": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "__type.redirect_url"
},
"1419": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "OAuthGrant"
},
"1420": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "__type"
},
"1421": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "__type.client"
},
"1422": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "__type.scopes"
},
"1423": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "__type.granted_at"
},
"1424": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1425": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1426": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1427": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1428": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1429": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1430": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1431": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1432": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1433": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1434": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1435": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1436": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1437": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1438": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1439": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1440": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1441": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1442": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1443": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1444": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1445": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1446": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1447": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1448": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1449": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
+ },
+ "1450": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1434": {
+ "1451": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1435": {
+ "1452": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1436": {
+ "1453": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1437": {
+ "1454": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1438": {
+ "1455": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1439": {
+ "1456": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1440": {
+ "1457": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1441": {
+ "1458": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1442": {
+ "1459": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1443": {
+ "1460": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1444": {
+ "1461": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1445": {
+ "1462": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1446": {
+ "1463": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1447": {
+ "1464": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1448": {
+ "1465": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1449": {
+ "1466": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1450": {
+ "1467": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1451": {
+ "1468": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1452": {
+ "1469": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__constructor"
},
- "1453": {
+ "1470": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1454": {
+ "1471": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1455": {
+ "1472": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1456": {
+ "1473": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1457": {
+ "1474": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1458": {
+ "1475": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1459": {
+ "1476": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1460": {
+ "1477": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1461": {
+ "1478": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1462": {
+ "1479": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1463": {
+ "1480": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1464": {
+ "1481": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1465": {
+ "1482": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1466": {
+ "1483": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1467": {
+ "1484": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1468": {
+ "1485": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1469": {
+ "1486": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1470": {
+ "1487": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1471": {
+ "1488": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1472": {
+ "1489": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1473": {
+ "1490": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1474": {
+ "1491": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1475": {
+ "1492": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1476": {
+ "1493": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1477": {
+ "1494": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1478": {
+ "1495": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1479": {
+ "1496": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1480": {
+ "1497": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1481": {
+ "1498": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1482": {
+ "1499": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1483": {
+ "1500": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1484": {
+ "1501": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1485": {
+ "1502": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "name"
},
- "1486": {
+ "1503": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1487": {
+ "1504": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1488": {
+ "1505": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1489": {
+ "1506": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1490": {
+ "1507": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1491": {
+ "1508": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1492": {
+ "1509": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1493": {
+ "1510": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1494": {
+ "1511": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1495": {
+ "1512": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1496": {
+ "1513": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1497": {
+ "1514": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1498": {
+ "1515": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1499": {
+ "1516": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1500": {
+ "1517": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1501": {
+ "1518": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1502": {
+ "1519": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1503": {
+ "1520": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1504": {
+ "1521": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1505": {
+ "1522": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1506": {
+ "1523": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1507": {
+ "1524": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1508": {
+ "1525": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1509": {
+ "1526": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1510": {
+ "1527": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1511": {
+ "1528": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1512": {
+ "1529": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1513": {
+ "1530": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1514": {
+ "1531": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1515": {
+ "1532": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1516": {
+ "1533": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1517": {
+ "1534": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1518": {
+ "1535": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1519": {
+ "1536": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1520": {
+ "1537": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1521": {
+ "1538": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1522": {
+ "1539": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "details"
},
- "1523": {
+ "1540": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1524": {
+ "1541": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1525": {
+ "1542": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1526": {
+ "1543": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1527": {
+ "1544": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1528": {
+ "1545": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1529": {
+ "1546": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1530": {
+ "1547": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1531": {
+ "1548": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1532": {
+ "1549": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1533": {
+ "1550": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.name"
},
- "1534": {
+ "1551": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.message"
},
- "1535": {
+ "1552": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.status"
},
- "1536": {
+ "1553": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.details"
},
- "1537": {
+ "1554": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1538": {
+ "1555": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1539": {
+ "1556": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1540": {
+ "1557": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1541": {
+ "1558": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1542": {
+ "1559": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1543": {
+ "1560": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1544": {
+ "1561": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1545": {
+ "1562": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1546": {
+ "1563": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1547": {
+ "1564": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1548": {
+ "1565": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1549": {
+ "1566": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "details"
},
- "1550": {
+ "1567": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1551": {
+ "1568": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1552": {
+ "1569": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1553": {
+ "1570": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1554": {
+ "1571": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1555": {
+ "1572": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1556": {
+ "1573": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1557": {
+ "1574": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1558": {
+ "1575": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1559": {
+ "1576": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1560": {
+ "1577": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.name"
},
- "1561": {
+ "1578": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.message"
},
- "1562": {
+ "1579": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.status"
},
- "1563": {
+ "1580": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.details"
},
- "1564": {
+ "1581": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1565": {
+ "1582": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1566": {
+ "1583": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1567": {
+ "1584": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1568": {
+ "1585": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1569": {
+ "1586": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1570": {
+ "1587": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1571": {
+ "1588": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1572": {
+ "1589": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1573": {
+ "1590": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1574": {
+ "1591": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1575": {
+ "1592": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1576": {
+ "1593": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1577": {
+ "1594": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1578": {
+ "1595": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1579": {
+ "1596": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1580": {
+ "1597": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1581": {
+ "1598": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1582": {
+ "1599": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1583": {
+ "1600": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1584": {
+ "1601": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1585": {
+ "1602": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1586": {
+ "1603": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1587": {
+ "1604": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1588": {
+ "1605": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1589": {
+ "1606": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1590": {
+ "1607": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1591": {
+ "1608": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1592": {
+ "1609": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1593": {
+ "1610": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1594": {
+ "1611": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1595": {
+ "1612": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1596": {
+ "1613": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1597": {
+ "1614": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1598": {
+ "1615": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1599": {
+ "1616": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1600": {
+ "1617": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1601": {
+ "1618": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1602": {
+ "1619": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1603": {
+ "1620": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default"
},
- "1604": {
+ "1621": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.__constructor"
},
- "1605": {
+ "1622": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default"
},
- "1606": {
+ "1623": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "channel"
},
- "1607": {
+ "1624": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "opts"
},
- "1608": {
+ "1625": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.channel"
},
- "1609": {
+ "1626": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.state"
},
- "1610": {
+ "1627": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.pendingDiffs"
},
- "1611": {
+ "1628": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.joinRef"
},
- "1612": {
+ "1629": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.enabled"
},
- "1613": {
+ "1630": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.caller"
},
- "1614": {
+ "1631": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1615": {
+ "1632": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onJoin"
},
- "1616": {
+ "1633": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onLeave"
},
- "1617": {
+ "1634": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onSync"
},
- "1618": {
+ "1635": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1619": {
+ "1636": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1620": {
+ "1637": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default"
},
- "1621": {
+ "1638": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.__constructor"
},
- "1622": {
+ "1639": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default"
},
- "1623": {
+ "1640": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "topic"
},
- "1624": {
+ "1641": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "params"
},
- "1625": {
+ "1642": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "socket"
},
- "1626": {
+ "1643": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.topic"
},
- "1627": {
+ "1644": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.params"
},
- "1628": {
+ "1645": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.socket"
},
- "1629": {
+ "1646": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.bindings"
},
- "1630": {
+ "1647": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1631": {
+ "1648": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1633": {
+ "1650": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1634": {
+ "1651": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1635": {
+ "1652": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.filter"
},
- "1636": {
+ "1653": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1637": {
+ "1654": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1639": {
+ "1656": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.callback"
},
- "1640": {
+ "1657": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.id"
},
- "1641": {
+ "1658": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.timeout"
},
- "1642": {
+ "1659": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.state"
},
- "1643": {
+ "1660": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.joinedOnce"
},
- "1644": {
+ "1661": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.joinPush"
},
- "1645": {
+ "1662": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.rejoinTimer"
},
- "1646": {
+ "1663": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.pushBuffer"
},
- "1647": {
+ "1664": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.presence"
},
- "1648": {
+ "1665": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.broadcastEndpointURL"
},
- "1649": {
+ "1666": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.subTopic"
},
- "1650": {
+ "1667": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.private"
},
- "1651": {
+ "1668": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.subscribe"
},
- "1652": {
+ "1669": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.subscribe"
},
- "1653": {
+ "1670": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1654": {
+ "1671": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1655": {
+ "1672": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1656": {
+ "1673": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "status"
},
- "1657": {
+ "1674": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "err"
},
- "1658": {
+ "1675": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "timeout"
},
- "1659": {
+ "1676": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.presenceState"
},
- "1660": {
+ "1677": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.presenceState"
},
- "1661": {
+ "1678": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1662": {
+ "1679": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1663": {
+ "1680": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1665": {
+ "1682": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1666": {
+ "1683": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.track"
},
- "1667": {
+ "1684": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.track"
},
- "1668": {
+ "1685": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1669": {
+ "1686": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1670": {
+ "1687": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1672": {
+ "1689": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1673": {
+ "1690": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1674": {
+ "1691": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1676": {
+ "1693": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.untrack"
},
- "1677": {
+ "1694": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.untrack"
},
- "1678": {
+ "1695": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1679": {
+ "1696": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1680": {
+ "1697": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1682": {
+ "1699": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1683": {
+ "1700": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1684": {
+ "1701": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1685": {
+ "1702": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1686": {
+ "1703": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1687": {
+ "1704": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1688": {
+ "1705": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1689": {
+ "1706": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1690": {
+ "1707": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1691": {
+ "1708": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1692": {
+ "1709": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1693": {
+ "1710": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1694": {
+ "1711": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1696": {
+ "1713": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1697": {
+ "1714": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1698": {
+ "1715": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1699": {
+ "1716": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1700": {
+ "1717": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1701": {
+ "1718": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1702": {
+ "1719": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1703": {
+ "1720": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1704": {
+ "1721": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1705": {
+ "1722": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1706": {
+ "1723": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1707": {
+ "1724": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1709": {
+ "1726": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1710": {
+ "1727": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1711": {
+ "1728": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1712": {
+ "1729": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1713": {
+ "1730": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1714": {
+ "1731": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1715": {
+ "1732": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1716": {
+ "1733": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1717": {
+ "1734": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1718": {
+ "1735": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1719": {
+ "1736": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1720": {
+ "1737": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1722": {
+ "1739": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1723": {
+ "1740": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1724": {
+ "1741": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1725": {
+ "1742": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1726": {
+ "1743": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1727": {
+ "1744": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1728": {
+ "1745": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1729": {
+ "1746": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1730": {
+ "1747": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1731": {
+ "1748": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1733": {
+ "1750": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1734": {
+ "1751": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1735": {
+ "1752": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1736": {
+ "1753": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1737": {
+ "1754": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1738": {
+ "1755": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1739": {
+ "1756": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1740": {
+ "1757": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1741": {
+ "1758": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1742": {
+ "1759": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1744": {
+ "1761": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1745": {
+ "1762": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1746": {
+ "1763": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1747": {
+ "1764": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1748": {
+ "1765": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1749": {
+ "1766": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1750": {
+ "1767": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1751": {
+ "1768": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1752": {
+ "1769": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1753": {
+ "1770": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1755": {
+ "1772": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1756": {
+ "1773": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1757": {
+ "1774": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1758": {
+ "1775": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1759": {
+ "1776": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1760": {
+ "1777": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1761": {
+ "1778": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1762": {
+ "1779": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1763": {
+ "1780": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1764": {
+ "1781": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1765": {
+ "1782": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1766": {
+ "1783": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1767": {
+ "1784": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1768": {
+ "1785": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1769": {
+ "1786": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1770": {
+ "1787": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1771": {
+ "1788": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1772": {
+ "1789": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1773": {
+ "1790": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.meta"
},
- "1774": {
+ "1791": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1775": {
+ "1792": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.replayed"
},
- "1776": {
+ "1793": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.id"
},
- "1777": {
+ "1794": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1779": {
+ "1796": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1780": {
+ "1797": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1781": {
+ "1798": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1782": {
+ "1799": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1784": {
+ "1801": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1785": {
+ "1802": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1786": {
+ "1803": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1787": {
+ "1804": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1788": {
+ "1805": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1789": {
+ "1806": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1790": {
+ "1807": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1791": {
+ "1808": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1792": {
+ "1809": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1793": {
+ "1810": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1794": {
+ "1811": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1795": {
+ "1812": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.meta"
},
- "1796": {
+ "1813": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1797": {
+ "1814": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.replayed"
},
- "1798": {
+ "1815": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.id"
},
- "1799": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
- },
- "1800": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
- },
- "1801": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
- },
- "1802": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
- },
- "1803": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
- },
- "1804": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1805": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
- },
- "1806": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
- },
- "1807": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1808": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1809": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
- },
- "1810": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1811": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
- },
- "1812": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
- },
- "1813": {
+ "1816": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.payload"
},
- "1814": {
+ "1817": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1815": {
+ "1818": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1816": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1817": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
- },
"1819": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
@@ -60741,16 +61153,16 @@
"qualifiedName": "filter"
},
"1872": {
- "sourceFileName": "",
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
"1873": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1874": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1875": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -60758,1365 +61170,1429 @@
},
"1876": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1877": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.httpSend"
+ "qualifiedName": "payload"
},
"1878": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.httpSend"
+ "qualifiedName": "__type"
},
"1879": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type.type"
},
"1880": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type.event"
},
"1881": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "opts"
+ "qualifiedName": "__type.payload"
},
"1882": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "default.on"
},
"1883": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.timeout"
+ "qualifiedName": "T"
},
"1884": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
"1885": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1887": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1888": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1889": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1890": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1891": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1892": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1893": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1894": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1895": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1896": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "event"
+ },
+ "1897": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1898": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1899": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1900": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.timeout"
+ },
+ "1901": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1902": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.success"
},
- "1886": {
+ "1903": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1887": {
+ "1904": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.success"
},
- "1888": {
+ "1905": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.status"
},
- "1889": {
+ "1906": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.error"
},
- "1890": {
+ "1907": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.send"
},
- "1891": {
+ "1908": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.send"
},
- "1892": {
+ "1909": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "args"
},
- "1893": {
+ "1910": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1894": {
+ "1911": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1895": {
+ "1912": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1896": {
+ "1913": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.payload"
},
- "1897": {
+ "1914": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1899": {
+ "1916": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1900": {
+ "1917": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1901": {
+ "1918": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1903": {
+ "1920": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.updateJoinPayload"
},
- "1904": {
+ "1921": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.updateJoinPayload"
},
- "1905": {
+ "1922": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1906": {
+ "1923": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1907": {
+ "1924": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1909": {
+ "1926": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.unsubscribe"
},
- "1910": {
+ "1927": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.unsubscribe"
},
- "1911": {
+ "1928": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "timeout"
},
- "1912": {
+ "1929": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.teardown"
},
- "1913": {
+ "1930": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.teardown"
},
- "1914": {
+ "1931": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimeChannelOptions"
},
- "1915": {
+ "1932": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1916": {
+ "1933": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.config"
},
- "1917": {
+ "1934": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1918": {
+ "1935": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.broadcast"
},
- "1919": {
+ "1936": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1920": {
+ "1937": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.self"
},
- "1921": {
+ "1938": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.ack"
},
- "1922": {
+ "1939": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.replay"
},
- "1923": {
+ "1940": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.presence"
},
- "1924": {
+ "1941": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1925": {
+ "1942": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.key"
},
- "1926": {
+ "1943": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.enabled"
},
- "1927": {
+ "1944": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.private"
},
- "1928": {
+ "1945": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimeChannelSendResponse"
},
- "1929": {
+ "1946": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "1930": {
+ "1947": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.__constructor"
},
- "1931": {
+ "1948": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "1932": {
+ "1949": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "endPoint"
},
- "1933": {
+ "1950": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "options"
},
- "1934": {
+ "1951": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.accessTokenValue"
},
- "1935": {
+ "1952": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.apiKey"
},
- "1936": {
+ "1953": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channels"
},
- "1937": {
+ "1954": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endPoint"
},
- "1938": {
+ "1955": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.httpEndpoint"
},
- "1939": {
+ "1956": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.headers"
},
- "1940": {
+ "1957": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1941": {
+ "1958": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "1943": {
+ "1960": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.params"
},
- "1944": {
+ "1961": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1945": {
+ "1962": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "1947": {
+ "1964": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.timeout"
},
- "1948": {
+ "1965": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.transport"
},
- "1949": {
+ "1966": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatIntervalMs"
},
- "1950": {
+ "1967": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatTimer"
},
- "1951": {
+ "1968": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.pendingHeartbeatRef"
},
- "1952": {
+ "1969": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatCallback"
},
- "1953": {
+ "1970": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1954": {
+ "1971": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1955": {
+ "1972": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "1956": {
+ "1973": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.ref"
},
- "1957": {
+ "1974": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.reconnectTimer"
},
- "1958": {
+ "1975": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.vsn"
},
- "1959": {
+ "1976": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.logger"
},
- "1960": {
+ "1977": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.logLevel"
},
- "1961": {
+ "1978": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.encode"
},
- "1962": {
+ "1979": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.decode"
},
- "1963": {
+ "1980": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.reconnectAfterMs"
},
- "1964": {
+ "1981": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.conn"
},
- "1965": {
+ "1982": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendBuffer"
},
- "1966": {
+ "1983": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.serializer"
},
- "1967": {
+ "1984": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.stateChangeCallbacks"
},
- "1968": {
+ "1985": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1969": {
+ "1986": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.open"
},
- "1970": {
+ "1987": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.close"
},
- "1971": {
+ "1988": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.error"
},
- "1972": {
+ "1989": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.message"
},
- "1973": {
+ "1990": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.fetch"
},
- "1974": {
+ "1991": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "1975": {
+ "1992": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "1976": {
+ "1993": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "input"
},
- "1977": {
+ "1994": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "init"
},
- "1978": {
+ "1995": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
- "1979": {
+ "1996": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
- "1980": {
+ "1997": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
- "1981": {
+ "1998": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.accessToken"
},
- "1982": {
+ "1999": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1983": {
+ "2000": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1984": {
+ "2001": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.worker"
},
- "1985": {
+ "2002": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.workerUrl"
},
- "1986": {
+ "2003": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.workerRef"
},
- "1990": {
+ "2007": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connect"
},
- "1991": {
+ "2008": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connect"
},
- "1992": {
+ "2009": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endpointURL"
},
- "1993": {
+ "2010": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endpointURL"
},
- "1994": {
+ "2011": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.disconnect"
},
- "1995": {
+ "2012": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.disconnect"
},
- "1996": {
+ "2013": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "code"
},
- "1997": {
+ "2014": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "reason"
},
- "1998": {
+ "2015": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.getChannels"
},
- "1999": {
+ "2016": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.getChannels"
},
- "2000": {
+ "2017": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeChannel"
},
- "2001": {
+ "2018": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeChannel"
},
- "2002": {
+ "2019": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "channel"
},
- "2003": {
+ "2020": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeAllChannels"
},
- "2004": {
+ "2021": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeAllChannels"
},
- "2005": {
+ "2022": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.log"
},
- "2006": {
+ "2023": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.log"
},
- "2007": {
+ "2024": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "kind"
},
- "2008": {
+ "2025": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "msg"
},
- "2009": {
+ "2026": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "data"
},
- "2010": {
+ "2027": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connectionState"
},
- "2011": {
+ "2028": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connectionState"
},
- "2012": {
+ "2029": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnected"
},
- "2013": {
+ "2030": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnected"
},
- "2014": {
+ "2031": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnecting"
},
- "2015": {
+ "2032": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnecting"
},
- "2016": {
+ "2033": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isDisconnecting"
},
- "2017": {
+ "2034": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isDisconnecting"
},
- "2018": {
+ "2035": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channel"
},
- "2019": {
+ "2036": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channel"
},
- "2020": {
+ "2037": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "topic"
},
- "2021": {
+ "2038": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "params"
},
- "2022": {
+ "2039": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.push"
},
- "2023": {
+ "2040": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.push"
},
- "2024": {
+ "2041": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "data"
},
- "2025": {
+ "2042": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.setAuth"
},
- "2026": {
+ "2043": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.setAuth"
},
- "2027": {
+ "2044": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "token"
},
- "2028": {
+ "2045": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendHeartbeat"
},
- "2029": {
+ "2046": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendHeartbeat"
},
- "2030": {
+ "2047": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.onHeartbeat"
},
- "2031": {
+ "2048": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.onHeartbeat"
},
- "2032": {
+ "2049": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "callback"
},
- "2033": {
+ "2050": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2034": {
+ "2051": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2035": {
+ "2052": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "2036": {
+ "2053": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.flushSendBuffer"
},
- "2037": {
+ "2054": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.flushSendBuffer"
},
- "2039": {
+ "2056": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeClientOptions"
},
- "2040": {
+ "2057": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2041": {
+ "2058": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.transport"
},
- "2042": {
+ "2059": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.timeout"
},
- "2043": {
+ "2060": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.heartbeatIntervalMs"
},
- "2044": {
+ "2061": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.heartbeatCallback"
},
- "2045": {
+ "2062": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2046": {
+ "2063": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2047": {
+ "2064": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "2048": {
+ "2065": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.vsn"
},
- "2049": {
+ "2066": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.logger"
},
- "2050": {
+ "2067": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.encode"
},
- "2051": {
+ "2068": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.decode"
},
- "2052": {
+ "2069": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.reconnectAfterMs"
},
- "2053": {
+ "2070": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.headers"
},
- "2054": {
+ "2071": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2055": {
+ "2072": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2057": {
+ "2074": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.params"
},
- "2058": {
+ "2075": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2059": {
+ "2076": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2061": {
+ "2078": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.log_level"
},
- "2062": {
+ "2079": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.logLevel"
},
- "2063": {
+ "2080": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.fetch"
},
- "2064": {
+ "2081": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.worker"
},
- "2065": {
+ "2082": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.workerUrl"
},
- "2066": {
+ "2083": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.accessToken"
},
- "2067": {
+ "2084": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2068": {
+ "2085": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2069": {
+ "2086": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeMessage"
},
- "2070": {
+ "2087": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2071": {
+ "2088": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.topic"
},
- "2072": {
+ "2089": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.event"
},
- "2073": {
+ "2090": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.payload"
},
- "2074": {
+ "2091": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.ref"
},
- "2075": {
+ "2092": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.join_ref"
},
- "2076": {
+ "2093": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesFilter"
},
- "2077": {
+ "2094": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2078": {
+ "2095": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "2079": {
+ "2096": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.schema"
},
- "2080": {
+ "2097": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.table"
},
- "2081": {
+ "2098": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.filter"
},
- "2082": {
+ "2099": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2083": {
+ "2100": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesPayload"
},
- "2084": {
+ "2101": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2085": {
+ "2102": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2086": {
+ "2103": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2088": {
+ "2105": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresInsertPayload"
},
- "2089": {
+ "2106": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2090": {
+ "2107": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2091": {
+ "2108": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2092": {
+ "2109": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2093": {
+ "2110": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2094": {
+ "2111": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2095": {
+ "2112": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2096": {
+ "2113": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2098": {
+ "2115": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresUpdatePayload"
},
- "2099": {
+ "2116": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2100": {
+ "2117": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2101": {
+ "2118": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2102": {
+ "2119": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2103": {
+ "2120": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2104": {
+ "2121": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2105": {
+ "2122": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2107": {
+ "2124": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresDeletePayload"
},
- "2108": {
+ "2125": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2109": {
+ "2126": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2110": {
+ "2127": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2111": {
+ "2128": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2112": {
+ "2129": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2113": {
+ "2130": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2114": {
+ "2131": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2115": {
+ "2132": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2117": {
+ "2134": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceJoinPayload"
},
- "2118": {
+ "2135": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2119": {
+ "2136": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "2120": {
+ "2137": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "2121": {
+ "2138": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "2122": {
+ "2139": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.newPresences"
},
- "2123": {
+ "2140": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2124": {
+ "2141": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2125": {
+ "2142": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2127": {
+ "2144": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceLeavePayload"
},
- "2128": {
+ "2145": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2129": {
+ "2146": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "2130": {
+ "2147": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "2131": {
+ "2148": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "2132": {
+ "2149": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.leftPresences"
},
- "2133": {
+ "2150": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2134": {
+ "2151": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2135": {
+ "2152": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2137": {
+ "2154": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceState"
},
- "2138": {
+ "2155": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2139": {
+ "2156": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2141": {
+ "2158": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2142": {
+ "2159": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2143": {
+ "2160": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2145": {
+ "2162": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2146": {
+ "2163": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeRemoveChannelResponse"
},
- "2147": {
+ "2164": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES"
},
- "2148": {
+ "2165": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST"
},
- "2149": {
+ "2166": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE"
},
- "2150": {
+ "2167": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES"
},
- "2151": {
+ "2168": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM"
},
- "2152": {
+ "2169": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT"
},
- "2153": {
+ "2170": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
},
- "2154": {
+ "2171": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
},
- "2155": {
+ "2172": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
},
- "2156": {
+ "2173": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
},
- "2157": {
+ "2174": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS"
},
- "2158": {
+ "2175": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC"
},
- "2159": {
+ "2176": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN"
},
- "2160": {
+ "2177": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE"
},
- "2161": {
+ "2178": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES"
},
- "2162": {
+ "2179": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED"
},
- "2163": {
+ "2180": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT"
},
- "2164": {
+ "2181": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED"
},
- "2165": {
+ "2182": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR"
},
- "2166": {
+ "2183": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_CHANNEL_STATES"
},
- "2167": {
+ "2184": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory"
},
- "2169": {
+ "2186": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "2170": {
+ "2187": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "2171": {
+ "2188": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "2172": {
+ "2189": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "2173": {
+ "2190": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "url"
},
- "2174": {
+ "2191": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "protocols"
},
- "2175": {
+ "2192": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.createWebSocket"
},
- "2176": {
+ "2193": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.createWebSocket"
},
- "2177": {
+ "2194": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "url"
},
- "2178": {
+ "2195": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "protocols"
},
- "2179": {
+ "2196": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "2180": {
+ "2197": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "2183": {
+ "2200": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike"
},
- "2184": {
+ "2201": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CONNECTING"
},
- "2185": {
+ "2202": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.OPEN"
},
- "2186": {
+ "2203": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CLOSING"
},
- "2187": {
+ "2204": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CLOSED"
},
- "2188": {
+ "2205": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.readyState"
},
- "2189": {
+ "2206": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.url"
},
- "2190": {
+ "2207": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.protocol"
},
- "2191": {
+ "2208": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.close"
},
- "2192": {
+ "2209": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.close"
},
- "2193": {
+ "2210": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "code"
},
- "2194": {
+ "2211": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "reason"
},
- "2195": {
+ "2212": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.send"
},
- "2196": {
+ "2213": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.send"
},
- "2197": {
+ "2214": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "data"
},
- "2198": {
+ "2215": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onopen"
},
- "2199": {
+ "2216": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2200": {
+ "2217": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2201": {
+ "2218": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2202": {
+ "2219": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2203": {
+ "2220": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onmessage"
},
- "2204": {
+ "2221": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2205": {
+ "2222": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2206": {
+ "2223": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2207": {
+ "2224": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2208": {
+ "2225": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onclose"
},
- "2209": {
+ "2226": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2210": {
+ "2227": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2211": {
+ "2228": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2212": {
+ "2229": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2213": {
+ "2230": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onerror"
},
- "2214": {
+ "2231": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2215": {
+ "2232": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2216": {
+ "2233": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2217": {
+ "2234": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2218": {
+ "2235": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.addEventListener"
},
- "2219": {
+ "2236": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.addEventListener"
},
- "2220": {
+ "2237": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "type"
},
- "2221": {
+ "2238": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "listener"
},
- "2222": {
+ "2239": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.removeEventListener"
},
- "2223": {
+ "2240": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.removeEventListener"
},
- "2224": {
+ "2241": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "type"
},
- "2225": {
+ "2242": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "listener"
},
- "2226": {
+ "2243": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.binaryType"
},
- "2227": {
+ "2244": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.bufferedAmount"
},
- "2228": {
+ "2245": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.extensions"
},
- "2229": {
+ "2246": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.dispatchEvent"
},
- "2230": {
+ "2247": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2231": {
+ "2248": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2232": {
+ "2249": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "event"
},
- "2233": {
+ "2250": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "2234": {
+ "2251": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "2235": {
+ "2252": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "2236": {
+ "2253": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "address"
},
- "2237": {
+ "2254": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "subprotocols"
},
- "2238": {
+ "2255": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor.__index"
}
@@ -62140,7 +62616,7 @@
"flags": {},
"children": [
{
- "id": 1491,
+ "id": 1513,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -62166,7 +62642,7 @@
},
"children": [
{
- "id": 1492,
+ "id": 1514,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -62176,12 +62652,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"signatures": [
{
- "id": 1493,
+ "id": 1515,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -62191,12 +62667,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"parameters": [
{
- "id": 1494,
+ "id": 1516,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -62207,7 +62683,7 @@
}
},
{
- "id": 1495,
+ "id": 1517,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -62218,7 +62694,7 @@
}
},
{
- "id": 1496,
+ "id": 1518,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -62240,25 +62716,25 @@
],
"type": {
"type": "reference",
- "target": 1491,
+ "target": 1513,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1505,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1504,
"name": "AuthError.constructor"
}
},
{
- "id": 1498,
+ "id": 1520,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -62287,7 +62763,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -62316,7 +62792,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1499,
+ "id": 1521,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -62329,12 +62805,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1487,
+ "target": 1509,
"name": "AuthError.code"
}
},
{
- "id": 1497,
+ "id": 1519,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -62352,7 +62828,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L51"
}
],
"type": {
@@ -62361,7 +62837,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1489,
+ "target": 1511,
"name": "AuthError.status"
}
}
@@ -62369,11 +62845,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1492]
+ "children": [1514]
},
{
"title": "Properties",
- "children": [1498, 1497]
+ "children": [1520, 1519]
}
],
"sources": [
@@ -62381,20 +62857,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L50"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1481,
+ "id": 1503,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -62420,7 +62896,7 @@
},
"children": [
{
- "id": 1482,
+ "id": 1504,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -62430,12 +62906,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"signatures": [
{
- "id": 1483,
+ "id": 1505,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -62445,12 +62921,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"parameters": [
{
- "id": 1484,
+ "id": 1506,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -62461,7 +62937,7 @@
}
},
{
- "id": 1485,
+ "id": 1507,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -62474,7 +62950,7 @@
}
},
{
- "id": 1486,
+ "id": 1508,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -62489,7 +62965,7 @@
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -62507,7 +62983,7 @@
}
},
{
- "id": 1487,
+ "id": 1509,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -62534,7 +63010,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -62563,7 +63039,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1488,
+ "id": 1510,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -62576,7 +63052,7 @@
}
},
{
- "id": 1489,
+ "id": 1511,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -62594,7 +63070,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -62615,11 +63091,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1482]
+ "children": [1504]
},
{
"title": "Properties",
- "children": [1487, 1489]
+ "children": [1509, 1511]
}
],
"sources": [
@@ -62627,7 +63103,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L14"
}
],
"extendedTypes": [
@@ -62644,23 +63120,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1491,
+ "target": 1513,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1501,
+ "target": 1523,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError"
}
]
},
{
- "id": 1548,
+ "id": 1570,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -62686,7 +63162,7 @@
},
"children": [
{
- "id": 1549,
+ "id": 1571,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -62696,12 +63172,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"signatures": [
{
- "id": 1550,
+ "id": 1572,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -62711,12 +63187,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"parameters": [
{
- "id": 1551,
+ "id": 1573,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -62727,7 +63203,7 @@
}
},
{
- "id": 1552,
+ "id": 1574,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -62742,14 +63218,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1553,
+ "id": 1575,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1555,
+ "id": 1577,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -62759,7 +63235,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -62768,7 +63244,7 @@
}
},
{
- "id": 1554,
+ "id": 1576,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -62778,7 +63254,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -62790,7 +63266,7 @@
"groups": [
{
"title": "Properties",
- "children": [1555, 1554]
+ "children": [1577, 1576]
}
],
"sources": [
@@ -62798,7 +63274,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
]
}
@@ -62810,25 +63286,25 @@
],
"type": {
"type": "reference",
- "target": 1548,
+ "target": 1570,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1572,
+ "id": 1594,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -62857,7 +63333,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -62886,7 +63362,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1573,
+ "id": 1595,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -62899,12 +63375,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1556,
+ "id": 1578,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -62914,7 +63390,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -62927,14 +63403,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1557,
+ "id": 1579,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1559,
+ "id": 1581,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -62944,7 +63420,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -62953,7 +63429,7 @@
}
},
{
- "id": 1558,
+ "id": 1580,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -62963,7 +63439,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -62975,7 +63451,7 @@
"groups": [
{
"title": "Properties",
- "children": [1559, 1558]
+ "children": [1581, 1580]
}
],
"sources": [
@@ -62983,7 +63459,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -62993,7 +63469,7 @@
"defaultValue": "null"
},
{
- "id": 1570,
+ "id": 1592,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -63005,7 +63481,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -63014,12 +63490,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1571,
+ "id": 1593,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -63039,7 +63515,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -63048,12 +63524,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
},
{
- "id": 1560,
+ "id": 1582,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -63063,12 +63539,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"signatures": [
{
- "id": 1561,
+ "id": 1583,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -63078,20 +63554,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1562,
+ "id": 1584,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1566,
+ "id": 1588,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -63101,7 +63577,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 187,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L187"
}
],
"type": {
@@ -63114,14 +63590,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1567,
+ "id": 1589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1569,
+ "id": 1591,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -63131,7 +63607,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -63140,7 +63616,7 @@
}
},
{
- "id": 1568,
+ "id": 1590,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -63150,7 +63626,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -63162,7 +63638,7 @@
"groups": [
{
"title": "Properties",
- "children": [1569, 1568]
+ "children": [1591, 1590]
}
],
"sources": [
@@ -63170,7 +63646,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -63180,7 +63656,7 @@
"defaultValue": "..."
},
{
- "id": 1564,
+ "id": 1586,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -63190,7 +63666,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 185,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L185"
}
],
"type": {
@@ -63200,7 +63676,7 @@
"defaultValue": "..."
},
{
- "id": 1563,
+ "id": 1585,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -63210,7 +63686,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 184,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L184"
}
],
"type": {
@@ -63220,7 +63696,7 @@
"defaultValue": "..."
},
{
- "id": 1565,
+ "id": 1587,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -63230,7 +63706,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 186,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L186"
}
],
"type": {
@@ -63243,7 +63719,7 @@
"groups": [
{
"title": "Properties",
- "children": [1566, 1564, 1563, 1565]
+ "children": [1588, 1586, 1585, 1587]
}
],
"sources": [
@@ -63251,7 +63727,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 183,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L183"
}
]
}
@@ -63263,15 +63739,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1549]
+ "children": [1571]
},
{
"title": "Properties",
- "children": [1572, 1556, 1570, 1571]
+ "children": [1594, 1578, 1592, 1593]
},
{
"title": "Methods",
- "children": [1560]
+ "children": [1582]
}
],
"sources": [
@@ -63279,20 +63755,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 175,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L175"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1539,
+ "id": 1561,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -63318,7 +63794,7 @@
},
"children": [
{
- "id": 1540,
+ "id": 1562,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -63328,12 +63804,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"signatures": [
{
- "id": 1541,
+ "id": 1563,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -63343,12 +63819,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"parameters": [
{
- "id": 1542,
+ "id": 1564,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -63361,25 +63837,25 @@
],
"type": {
"type": "reference",
- "target": 1539,
+ "target": 1561,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1545,
+ "id": 1567,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -63408,7 +63884,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -63437,7 +63913,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1546,
+ "id": 1568,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -63450,12 +63926,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1543,
+ "id": 1565,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -63467,7 +63943,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -63476,12 +63952,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1544,
+ "id": 1566,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -63501,7 +63977,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -63510,7 +63986,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -63518,11 +63994,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1540]
+ "children": [1562]
},
{
"title": "Properties",
- "children": [1545, 1543, 1544]
+ "children": [1567, 1565, 1566]
}
],
"sources": [
@@ -63530,20 +64006,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 156,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L156"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1624,
+ "id": 1646,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -63569,7 +64045,7 @@
},
"children": [
{
- "id": 1625,
+ "id": 1647,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -63579,12 +64055,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 289,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289"
}
],
"signatures": [
{
- "id": 1626,
+ "id": 1648,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -63594,12 +64070,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 289,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289"
}
],
"parameters": [
{
- "id": 1627,
+ "id": 1649,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -63612,25 +64088,25 @@
],
"type": {
"type": "reference",
- "target": 1624,
+ "target": 1646,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1630,
+ "id": 1652,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -63659,7 +64135,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -63688,7 +64164,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1631,
+ "id": 1653,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -63701,12 +64177,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1628,
+ "id": 1650,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -63718,7 +64194,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -63727,12 +64203,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1629,
+ "id": 1651,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -63752,7 +64228,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -63761,7 +64237,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -63769,11 +64245,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1625]
+ "children": [1647]
},
{
"title": "Properties",
- "children": [1630, 1628, 1629]
+ "children": [1652, 1650, 1651]
}
],
"sources": [
@@ -63781,20 +64257,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 288,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L288"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1531,
+ "id": 1553,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -63820,7 +64296,7 @@
},
"children": [
{
- "id": 1532,
+ "id": 1554,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -63830,12 +64306,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"signatures": [
{
- "id": 1533,
+ "id": 1555,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -63845,30 +64321,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"type": {
"type": "reference",
- "target": 1531,
+ "target": 1553,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1536,
+ "id": 1558,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -63897,7 +64373,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -63926,7 +64402,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1537,
+ "id": 1559,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -63939,12 +64415,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1534,
+ "id": 1556,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -63956,7 +64432,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -63965,12 +64441,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1535,
+ "id": 1557,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -63990,7 +64466,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -63999,7 +64475,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -64007,11 +64483,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1532]
+ "children": [1554]
},
{
"title": "Properties",
- "children": [1536, 1534, 1535]
+ "children": [1558, 1556, 1557]
}
],
"sources": [
@@ -64019,20 +64495,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L140"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1575,
+ "id": 1597,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -64058,7 +64534,7 @@
},
"children": [
{
- "id": 1576,
+ "id": 1598,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -64068,12 +64544,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"signatures": [
{
- "id": 1577,
+ "id": 1599,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -64083,12 +64559,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"parameters": [
{
- "id": 1578,
+ "id": 1600,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -64099,7 +64575,7 @@
}
},
{
- "id": 1579,
+ "id": 1601,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -64114,14 +64590,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1580,
+ "id": 1602,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1582,
+ "id": 1604,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -64131,7 +64607,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -64140,7 +64616,7 @@
}
},
{
- "id": 1581,
+ "id": 1603,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -64150,7 +64626,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -64162,7 +64638,7 @@
"groups": [
{
"title": "Properties",
- "children": [1582, 1581]
+ "children": [1604, 1603]
}
],
"sources": [
@@ -64170,7 +64646,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
]
}
@@ -64182,25 +64658,25 @@
],
"type": {
"type": "reference",
- "target": 1575,
+ "target": 1597,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1599,
+ "id": 1621,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -64229,7 +64705,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -64258,7 +64734,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1600,
+ "id": 1622,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -64271,12 +64747,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1583,
+ "id": 1605,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -64286,7 +64762,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -64299,14 +64775,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1584,
+ "id": 1606,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1586,
+ "id": 1608,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -64316,7 +64792,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -64325,7 +64801,7 @@
}
},
{
- "id": 1585,
+ "id": 1607,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -64335,7 +64811,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -64347,7 +64823,7 @@
"groups": [
{
"title": "Properties",
- "children": [1586, 1585]
+ "children": [1608, 1607]
}
],
"sources": [
@@ -64355,7 +64831,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -64365,7 +64841,7 @@
"defaultValue": "null"
},
{
- "id": 1597,
+ "id": 1619,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -64377,7 +64853,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -64386,12 +64862,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1598,
+ "id": 1620,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -64411,7 +64887,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -64420,12 +64896,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
},
{
- "id": 1587,
+ "id": 1609,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -64435,12 +64911,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"signatures": [
{
- "id": 1588,
+ "id": 1610,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -64450,20 +64926,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1589,
+ "id": 1611,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1593,
+ "id": 1615,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -64473,7 +64949,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 221,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L221"
}
],
"type": {
@@ -64486,14 +64962,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1594,
+ "id": 1616,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1596,
+ "id": 1618,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -64503,7 +64979,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -64512,7 +64988,7 @@
}
},
{
- "id": 1595,
+ "id": 1617,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -64522,7 +64998,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -64534,7 +65010,7 @@
"groups": [
{
"title": "Properties",
- "children": [1596, 1595]
+ "children": [1618, 1617]
}
],
"sources": [
@@ -64542,7 +65018,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -64552,7 +65028,7 @@
"defaultValue": "..."
},
{
- "id": 1591,
+ "id": 1613,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -64562,7 +65038,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 219,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L219"
}
],
"type": {
@@ -64572,7 +65048,7 @@
"defaultValue": "..."
},
{
- "id": 1590,
+ "id": 1612,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -64582,7 +65058,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L218"
}
],
"type": {
@@ -64592,7 +65068,7 @@
"defaultValue": "..."
},
{
- "id": 1592,
+ "id": 1614,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -64602,7 +65078,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 220,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L220"
}
],
"type": {
@@ -64615,7 +65091,7 @@
"groups": [
{
"title": "Properties",
- "children": [1593, 1591, 1590, 1592]
+ "children": [1615, 1613, 1612, 1614]
}
],
"sources": [
@@ -64623,7 +65099,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 217,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L217"
}
]
}
@@ -64635,15 +65111,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1576]
+ "children": [1598]
},
{
"title": "Properties",
- "children": [1599, 1583, 1597, 1598]
+ "children": [1621, 1605, 1619, 1620]
},
{
"title": "Methods",
- "children": [1587]
+ "children": [1609]
}
],
"sources": [
@@ -64651,20 +65127,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 208,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L208"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1602,
+ "id": 1624,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -64690,7 +65166,7 @@
},
"children": [
{
- "id": 1603,
+ "id": 1625,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -64700,12 +65176,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 237,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237"
}
],
"signatures": [
{
- "id": 1604,
+ "id": 1626,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -64715,12 +65191,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 237,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237"
}
],
"parameters": [
{
- "id": 1605,
+ "id": 1627,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -64731,7 +65207,7 @@
}
},
{
- "id": 1606,
+ "id": 1628,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -64744,25 +65220,25 @@
],
"type": {
"type": "reference",
- "target": 1602,
+ "target": 1624,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1609,
+ "id": 1631,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -64791,7 +65267,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -64820,7 +65296,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1610,
+ "id": 1632,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -64833,12 +65309,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1607,
+ "id": 1629,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -64850,7 +65326,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -64859,12 +65335,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1608,
+ "id": 1630,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -64884,7 +65360,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -64893,7 +65369,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -64901,11 +65377,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1603]
+ "children": [1625]
},
{
"title": "Properties",
- "children": [1609, 1607, 1608]
+ "children": [1631, 1629, 1630]
}
],
"sources": [
@@ -64913,20 +65389,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 236,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L236"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1523,
+ "id": 1545,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -64952,7 +65428,7 @@
},
"children": [
{
- "id": 1524,
+ "id": 1546,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -64962,12 +65438,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"signatures": [
{
- "id": 1525,
+ "id": 1547,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -64977,30 +65453,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"type": {
"type": "reference",
- "target": 1523,
+ "target": 1545,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1528,
+ "id": 1550,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -65029,7 +65505,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -65058,7 +65534,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1529,
+ "id": 1551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -65071,12 +65547,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1526,
+ "id": 1548,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -65088,7 +65564,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -65097,12 +65573,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1527,
+ "id": 1549,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -65122,7 +65598,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -65131,7 +65607,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -65139,11 +65615,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1524]
+ "children": [1546]
},
{
"title": "Properties",
- "children": [1528, 1526, 1527]
+ "children": [1550, 1548, 1549]
}
],
"sources": [
@@ -65151,20 +65627,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 120,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L120"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1501,
+ "id": 1523,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -65190,7 +65666,7 @@
},
"children": [
{
- "id": 1502,
+ "id": 1524,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -65200,12 +65676,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"signatures": [
{
- "id": 1503,
+ "id": 1525,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -65215,12 +65691,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"parameters": [
{
- "id": 1504,
+ "id": 1526,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -65231,7 +65707,7 @@
}
},
{
- "id": 1505,
+ "id": 1527,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -65244,25 +65720,25 @@
],
"type": {
"type": "reference",
- "target": 1501,
+ "target": 1523,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1505,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1504,
"name": "AuthError.constructor"
}
},
{
- "id": 1507,
+ "id": 1529,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -65291,7 +65767,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -65320,7 +65796,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1508,
+ "id": 1530,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -65333,12 +65809,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1487,
+ "target": 1509,
"name": "AuthError.code"
}
},
{
- "id": 1506,
+ "id": 1528,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -65348,7 +65824,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L80"
}
],
"type": {
@@ -65357,7 +65833,7 @@
}
},
{
- "id": 1509,
+ "id": 1531,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -65377,7 +65853,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -65395,7 +65871,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1511,
"name": "AuthError.status"
}
}
@@ -65403,11 +65879,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1502]
+ "children": [1524]
},
{
"title": "Properties",
- "children": [1507, 1506, 1509]
+ "children": [1529, 1528, 1531]
}
],
"sources": [
@@ -65415,20 +65891,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 79,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L79"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1612,
+ "id": 1634,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -65454,7 +65930,7 @@
},
"children": [
{
- "id": 1613,
+ "id": 1635,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -65464,12 +65940,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267"
}
],
"signatures": [
{
- "id": 1614,
+ "id": 1636,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -65479,12 +65955,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267"
}
],
"parameters": [
{
- "id": 1615,
+ "id": 1637,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -65495,7 +65971,7 @@
}
},
{
- "id": 1616,
+ "id": 1638,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -65506,7 +65982,7 @@
}
},
{
- "id": 1617,
+ "id": 1639,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -65535,25 +66011,25 @@
],
"type": {
"type": "reference",
- "target": 1612,
+ "target": 1634,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1621,
+ "id": 1643,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -65582,7 +66058,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -65611,7 +66087,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1622,
+ "id": 1644,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -65624,12 +66100,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1619,
+ "id": 1641,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -65641,7 +66117,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -65650,12 +66126,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1618,
+ "id": 1640,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -65673,7 +66149,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 265,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L265"
}
],
"type": {
@@ -65698,7 +66174,7 @@
}
},
{
- "id": 1620,
+ "id": 1642,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -65718,7 +66194,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -65727,7 +66203,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -65735,11 +66211,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1613]
+ "children": [1635]
},
{
"title": "Properties",
- "children": [1621, 1619, 1618, 1620]
+ "children": [1643, 1641, 1640, 1642]
}
],
"sources": [
@@ -65747,20 +66223,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 261,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L261"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1511,
+ "id": 1533,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -65786,7 +66262,7 @@
},
"children": [
{
- "id": 1512,
+ "id": 1534,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -65796,12 +66272,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"signatures": [
{
- "id": 1513,
+ "id": 1535,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -65811,12 +66287,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"parameters": [
{
- "id": 1514,
+ "id": 1536,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -65827,7 +66303,7 @@
}
},
{
- "id": 1515,
+ "id": 1537,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -65838,7 +66314,7 @@
}
},
{
- "id": 1516,
+ "id": 1538,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -65849,7 +66325,7 @@
}
},
{
- "id": 1517,
+ "id": 1539,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -65871,25 +66347,25 @@
],
"type": {
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1505,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1504,
"name": "AuthError.constructor"
}
},
{
- "id": 1520,
+ "id": 1542,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -65918,7 +66394,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -65947,7 +66423,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1521,
+ "id": 1543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -65960,12 +66436,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1487,
+ "target": 1509,
"name": "AuthError.code"
}
},
{
- "id": 1518,
+ "id": 1540,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -65975,7 +66451,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -65989,7 +66465,7 @@
}
},
{
- "id": 1519,
+ "id": 1541,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -66007,7 +66483,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -66016,7 +66492,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1489,
+ "target": 1511,
"name": "AuthError.status"
}
}
@@ -66024,11 +66500,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1512]
+ "children": [1534]
},
{
"title": "Properties",
- "children": [1520, 1518, 1519]
+ "children": [1542, 1540, 1541]
}
],
"sources": [
@@ -66036,13 +66512,13 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 99,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L99"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -66050,42 +66526,42 @@
"extendedBy": [
{
"type": "reference",
- "target": 1523,
+ "target": 1545,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1531,
+ "target": 1553,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1539,
+ "target": 1561,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1548,
+ "target": 1570,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1575,
+ "target": 1597,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1602,
+ "target": 1624,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1612,
+ "target": 1634,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1624,
+ "target": 1646,
"name": "AuthInvalidJwtError"
}
]
@@ -66108,7 +66584,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"signatures": [
@@ -66142,7 +66618,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"parameters": [
@@ -66174,7 +66650,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 70,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
}
],
"type": {
@@ -66403,7 +66879,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"type": {
@@ -66419,7 +66895,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"indexSignatures": [
@@ -66434,7 +66910,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 68,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
}
],
"parameters": [
@@ -66471,7 +66947,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
}
],
"type": {
@@ -66492,7 +66968,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 65,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
}
]
}
@@ -66528,12 +67004,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
}
],
"type": {
"type": "reference",
- "target": 1278,
+ "target": 1285,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -66557,12 +67033,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
}
],
"type": {
"type": "reference",
- "target": 1404,
+ "target": 1411,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -66578,7 +67054,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"signatures": [
@@ -66609,7 +67085,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"parameters": [
@@ -66621,7 +67097,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 878,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -66636,7 +67112,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -66658,7 +67134,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
}
],
"signatures": [
@@ -66689,7 +67165,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
}
],
"parameters": [
@@ -66750,7 +67226,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -66772,7 +67248,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"signatures": [
@@ -66795,7 +67271,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"parameters": [
@@ -66807,7 +67283,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1088,
+ "target": 1095,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -66822,7 +67298,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1089,
+ "target": 1096,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -66844,7 +67320,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"signatures": [
@@ -66867,7 +67343,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"parameters": [
@@ -66908,7 +67384,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -66930,7 +67406,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"signatures": [
@@ -66953,7 +67429,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"parameters": [
@@ -67028,7 +67504,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 129,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
}
],
"type": {
@@ -67057,7 +67533,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 132,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
}
],
"type": {
@@ -67077,7 +67553,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 127,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
}
]
}
@@ -67094,7 +67570,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -67116,7 +67592,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"signatures": [
@@ -67147,7 +67623,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"parameters": [
@@ -67185,7 +67661,7 @@
},
"type": {
"type": "reference",
- "target": 1299,
+ "target": 1306,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -67221,7 +67697,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -67247,7 +67723,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -67266,14 +67742,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -67291,14 +67767,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
},
{
"type": "reference",
- "target": 1292,
+ "target": 1299,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -67316,7 +67792,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -67336,7 +67812,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
@@ -67361,7 +67837,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -67384,7 +67860,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -67403,7 +67879,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -67420,12 +67896,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -67442,7 +67918,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -67467,7 +67943,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"signatures": [
@@ -67490,7 +67966,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"parameters": [
@@ -67574,7 +68050,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -67593,7 +68069,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -67605,7 +68081,7 @@
},
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -67624,7 +68100,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
]
}
@@ -67647,7 +68123,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 285,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
}
],
"signatures": [
@@ -67670,7 +68146,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 285,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
}
],
"parameters": [
@@ -67709,7 +68185,7 @@
},
"type": {
"type": "reference",
- "target": 878,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -67724,7 +68200,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -67755,7 +68231,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 32,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
}
]
},
@@ -67775,9 +68251,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 290,
+ "line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292"
}
],
"signatures": [
@@ -67809,9 +68285,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 290,
+ "line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292"
}
],
"parameters": [
@@ -67823,7 +68299,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 709,
+ "target": 716,
"name": "GoTrueClientOptions",
"package": "@supabase/auth-js"
}
@@ -67856,9 +68332,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 199,
+ "line": 201,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L201"
}
],
"type": {
@@ -67886,14 +68362,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 203,
+ "line": 205,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L205"
}
],
"type": {
"type": "reference",
- "target": 1148,
+ "target": 1155,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -67915,14 +68391,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 209,
+ "line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L211"
}
],
"type": {
"type": "reference",
- "target": 1447,
+ "target": 1462,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -67936,9 +68412,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 739,
+ "line": 743,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L739"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743"
}
],
"signatures": [
@@ -67959,9 +68435,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 739,
+ "line": 743,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L739"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743"
}
],
"parameters": [
@@ -67986,7 +68462,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 773,
+ "target": 780,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -67998,7 +68474,7 @@
]
},
{
- "id": 648,
+ "id": 655,
"name": "getClaims",
"variant": "declaration",
"kind": 2048,
@@ -68006,14 +68482,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3624,
+ "line": 3701,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701"
}
],
"signatures": [
{
- "id": 649,
+ "id": 656,
"name": "getClaims",
"variant": "signature",
"kind": 4096,
@@ -68055,14 +68531,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3624,
+ "line": 3701,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701"
}
],
"parameters": [
{
- "id": 650,
+ "id": 657,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -68092,7 +68568,7 @@
}
},
{
- "id": 651,
+ "id": 658,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -68108,14 +68584,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 652,
+ "id": 659,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 654,
+ "id": 661,
"name": "allowExpired",
"variant": "declaration",
"kind": 1024,
@@ -68149,9 +68625,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3633,
+ "line": 3710,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3633"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3710"
}
],
"type": {
@@ -68160,7 +68636,7 @@
}
},
{
- "id": 655,
+ "id": 662,
"name": "jwks",
"variant": "declaration",
"kind": 1024,
@@ -68178,22 +68654,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3636,
+ "line": 3713,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 656,
+ "id": 663,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 657,
+ "id": 664,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -68201,16 +68677,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3636,
+ "line": 3713,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1347,
+ "target": 1354,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -68220,22 +68696,22 @@
"groups": [
{
"title": "Properties",
- "children": [657]
+ "children": [664]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3636,
+ "line": 3713,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713"
}
]
}
}
},
{
- "id": 653,
+ "id": 660,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -68259,16 +68735,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3630,
+ "line": 3707,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3630"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3707"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1347,
+ "target": 1354,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -68278,15 +68754,15 @@
"groups": [
{
"title": "Properties",
- "children": [654, 655, 653]
+ "children": [661, 662, 660]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3626,
+ "line": 3703,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3626"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3703"
}
]
}
@@ -68307,14 +68783,14 @@
{
"type": "reflection",
"declaration": {
- "id": 658,
+ "id": 665,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 659,
+ "id": 666,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -68322,22 +68798,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 660,
+ "id": 667,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 661,
+ "id": 668,
"name": "claims",
"variant": "declaration",
"kind": 1024,
@@ -68345,20 +68821,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
"type": "reference",
- "target": 1327,
+ "target": 1334,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
},
{
- "id": 662,
+ "id": 669,
"name": "header",
"variant": "declaration",
"kind": 1024,
@@ -68366,20 +68842,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
"type": "reference",
- "target": 1312,
+ "target": 1319,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
},
{
- "id": 663,
+ "id": 670,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -68387,9 +68863,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
@@ -68406,22 +68882,22 @@
"groups": [
{
"title": "Properties",
- "children": [661, 662, 663]
+ "children": [668, 669, 670]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
]
}
}
},
{
- "id": 664,
+ "id": 671,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -68429,9 +68905,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3641,
+ "line": 3718,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3641"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3718"
}
],
"type": {
@@ -68443,15 +68919,15 @@
"groups": [
{
"title": "Properties",
- "children": [659, 664]
+ "children": [666, 671]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3639,
+ "line": 3716,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3716"
}
]
}
@@ -68459,14 +68935,14 @@
{
"type": "reflection",
"declaration": {
- "id": 665,
+ "id": 672,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 666,
+ "id": 673,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -68474,9 +68950,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3643,
+ "line": 3720,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720"
}
],
"type": {
@@ -68485,7 +68961,7 @@
}
},
{
- "id": 667,
+ "id": 674,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -68493,14 +68969,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3643,
+ "line": 3720,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -68509,15 +68985,15 @@
"groups": [
{
"title": "Properties",
- "children": [666, 667]
+ "children": [673, 674]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3643,
+ "line": 3720,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720"
}
]
}
@@ -68525,14 +69001,14 @@
{
"type": "reflection",
"declaration": {
- "id": 668,
+ "id": 675,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 669,
+ "id": 676,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -68540,9 +69016,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3644,
+ "line": 3721,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3644"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721"
}
],
"type": {
@@ -68551,7 +69027,7 @@
}
},
{
- "id": 670,
+ "id": 677,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -68559,9 +69035,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3644,
+ "line": 3721,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3644"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721"
}
],
"type": {
@@ -68573,15 +69049,15 @@
"groups": [
{
"title": "Properties",
- "children": [669, 670]
+ "children": [676, 677]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3644,
+ "line": 3721,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3644"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721"
}
]
}
@@ -68604,9 +69080,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1454,
+ "line": 1458,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458"
}
],
"signatures": [
@@ -68636,9 +69112,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1454,
+ "line": 1458,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458"
}
],
"type": {
@@ -68669,9 +69145,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1547,
+ "line": 1551,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1547"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551"
}
],
"type": {
@@ -68692,14 +69168,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1548,
+ "line": 1552,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1548"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1552"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -68714,9 +69190,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1547,
+ "line": 1551,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1547"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551"
}
]
}
@@ -68731,9 +69207,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1550,
+ "line": 1554,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1554"
}
],
"type": {
@@ -68751,9 +69227,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1546,
+ "line": 1550,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1546"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1550"
}
]
}
@@ -68776,9 +69252,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1553,
+ "line": 1557,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557"
}
],
"type": {
@@ -68799,9 +69275,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1554,
+ "line": 1558,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1554"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1558"
}
],
"type": {
@@ -68819,9 +69295,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1553,
+ "line": 1557,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557"
}
]
}
@@ -68836,14 +69312,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1556,
+ "line": 1560,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1556"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1560"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -68858,9 +69334,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1552,
+ "line": 1556,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1556"
}
]
}
@@ -68883,9 +69359,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1559,
+ "line": 1563,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1559"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563"
}
],
"type": {
@@ -68906,9 +69382,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1560,
+ "line": 1564,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1560"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1564"
}
],
"type": {
@@ -68926,9 +69402,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1559,
+ "line": 1563,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1559"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563"
}
]
}
@@ -68943,9 +69419,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1562,
+ "line": 1566,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1562"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1566"
}
],
"type": {
@@ -68963,9 +69439,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1558,
+ "line": 1562,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1558"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1562"
}
]
}
@@ -68988,9 +69464,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1696,
+ "line": 1700,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700"
}
],
"signatures": [
@@ -69011,9 +69487,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1696,
+ "line": 1700,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700"
}
],
"parameters": [
@@ -69048,7 +69524,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -69068,9 +69544,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2278,
+ "line": 2282,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2278"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282"
}
],
"signatures": [
@@ -69091,9 +69567,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2278,
+ "line": 2282,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2278"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282"
}
],
"type": {
@@ -69124,9 +69600,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284"
}
],
"type": {
@@ -69147,16 +69623,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2281,
+ "line": 2285,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2281"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2285"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 815,
+ "target": 822,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -69172,9 +69648,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2284,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284"
}
]
}
@@ -69189,9 +69665,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2283,
+ "line": 2287,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2283"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2287"
}
],
"type": {
@@ -69209,9 +69685,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2279,
+ "line": 2283,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2279"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2283"
}
]
}
@@ -69234,9 +69710,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2285,
+ "line": 2289,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289"
}
],
"type": {
@@ -69253,14 +69729,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2285,
+ "line": 2289,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -69275,9 +69751,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2285,
+ "line": 2289,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289"
}
]
}
@@ -69300,9 +69776,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 436,
+ "line": 440,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440"
}
],
"signatures": [
@@ -69323,9 +69799,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 436,
+ "line": 440,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440"
}
],
"type": {
@@ -69337,7 +69813,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1288,
+ "target": 1295,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -69359,9 +69835,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 400,
+ "line": 404,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404"
}
],
"signatures": [
@@ -69382,9 +69858,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 400,
+ "line": 404,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404"
}
],
"type": {
@@ -69403,21 +69879,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2303,
+ "line": 2307,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2303"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2308,
+ "line": 2312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2310,
+ "line": 2314,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2310"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2314"
}
],
"signatures": [
@@ -69438,9 +69914,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2303,
+ "line": 2307,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2303"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307"
}
],
"parameters": [
@@ -69452,7 +69928,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 938,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -69467,7 +69943,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 782,
+ "target": 789,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -69493,9 +69969,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2308,
+ "line": 2312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312"
}
],
"parameters": [
@@ -69507,7 +69983,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 950,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -69522,7 +69998,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 773,
+ "target": 780,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -69542,21 +70018,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2176,
+ "line": 2180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2180"
}
],
"signatures": [
@@ -69577,9 +70053,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
],
"parameters": [
@@ -69608,9 +70084,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
],
"signatures": [
@@ -69623,9 +70099,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
],
"parameters": [
@@ -69637,7 +70113,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 699,
+ "target": 706,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -69657,7 +70133,7 @@
},
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -69693,9 +70169,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2157,
+ "line": 2161,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161"
}
],
"type": {
@@ -69716,14 +70192,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2157,
+ "line": 2161,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161"
}
],
"type": {
"type": "reference",
- "target": 891,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -69738,9 +70214,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2157,
+ "line": 2161,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161"
}
]
}
@@ -69756,9 +70232,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 90,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
]
}
@@ -69800,9 +70276,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
],
"parameters": [
@@ -69831,9 +70307,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
],
"signatures": [
@@ -69846,9 +70322,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
],
"parameters": [
@@ -69860,7 +70336,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 699,
+ "target": 706,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -69880,7 +70356,7 @@
},
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -69927,9 +70403,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2173,
+ "line": 2177,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177"
}
],
"type": {
@@ -69950,14 +70426,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2173,
+ "line": 2177,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177"
}
],
"type": {
"type": "reference",
- "target": 891,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -69972,9 +70448,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2173,
+ "line": 2177,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177"
}
]
}
@@ -69990,9 +70466,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
]
}
@@ -70009,9 +70485,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1367,
+ "line": 1371,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371"
}
],
"signatures": [
@@ -70032,9 +70508,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1367,
+ "line": 1371,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371"
}
],
"type": {
@@ -70046,7 +70522,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -70066,9 +70542,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
],
"signatures": [
@@ -70089,9 +70565,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
],
"parameters": [
@@ -70129,9 +70605,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
],
"type": {
@@ -70149,9 +70625,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
]
}
@@ -70167,7 +70643,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -70187,9 +70663,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1402,
+ "line": 1406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1402"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406"
}
],
"signatures": [
@@ -70210,9 +70686,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1402,
+ "line": 1406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1402"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406"
}
],
"parameters": [
@@ -70224,7 +70700,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1034,
+ "target": 1041,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -70239,7 +70715,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 768,
+ "target": 775,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -70259,9 +70735,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2232,
+ "line": 2236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236"
}
],
"signatures": [
@@ -70282,9 +70758,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2232,
+ "line": 2236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236"
}
],
"parameters": [
@@ -70341,9 +70817,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2236,
+ "line": 2240,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2236"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2240"
}
],
"type": {
@@ -70370,9 +70846,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2235,
+ "line": 2239,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2239"
}
],
"type": {
@@ -70390,9 +70866,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2234,
+ "line": 2238,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2238"
}
]
}
@@ -70428,9 +70904,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2240,
+ "line": 2244,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2240"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2244"
}
],
"type": {
@@ -70453,9 +70929,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2241,
+ "line": 2245,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2241"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2245"
}
],
"type": {
@@ -70473,9 +70949,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2239,
+ "line": 2243,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2243"
}
]
}
@@ -70498,9 +70974,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2243,
+ "line": 2247,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247"
}
],
"type": {
@@ -70517,14 +70993,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2243,
+ "line": 2247,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -70539,9 +71015,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2243,
+ "line": 2247,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247"
}
]
}
@@ -70564,9 +71040,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1828,
+ "line": 1832,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832"
}
],
"signatures": [
@@ -70587,9 +71063,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1828,
+ "line": 1832,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832"
}
],
"parameters": [
@@ -70625,9 +71101,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1829,
+ "line": 1833,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1829"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1833"
}
],
"type": {
@@ -70644,9 +71120,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1830,
+ "line": 1834,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1830"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1834"
}
],
"type": {
@@ -70664,9 +71140,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1828,
+ "line": 1832,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832"
}
]
}
@@ -70682,7 +71158,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -70702,9 +71178,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 543,
+ "line": 547,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L543"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547"
}
],
"signatures": [
@@ -70736,9 +71212,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 543,
+ "line": 547,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L543"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547"
}
],
"parameters": [
@@ -70752,7 +71228,7 @@
},
"type": {
"type": "reference",
- "target": 901,
+ "target": 908,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -70767,7 +71243,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -70787,9 +71263,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1152,
+ "line": 1156,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1152"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156"
}
],
"signatures": [
@@ -70810,9 +71286,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1152,
+ "line": 1156,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1152"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156"
}
],
"parameters": [
@@ -70824,7 +71300,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 950,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -70839,7 +71315,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 773,
+ "target": 780,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -70859,9 +71335,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 727,
+ "line": 731,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L727"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731"
}
],
"signatures": [
@@ -70882,9 +71358,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 727,
+ "line": 731,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L727"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731"
}
],
"parameters": [
@@ -70896,7 +71372,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 938,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -70911,7 +71387,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 782,
+ "target": 789,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -70931,9 +71407,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1205,
+ "line": 1209,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1205"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209"
}
],
"signatures": [
@@ -70970,9 +71446,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1205,
+ "line": 1209,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1205"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209"
}
],
"parameters": [
@@ -70984,7 +71460,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 920,
+ "target": 927,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -70999,7 +71475,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 768,
+ "target": 775,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -71019,9 +71495,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 663,
+ "line": 667,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L663"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667"
}
],
"signatures": [
@@ -71042,9 +71518,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 663,
+ "line": 667,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L663"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667"
}
],
"parameters": [
@@ -71056,7 +71532,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 915,
+ "target": 922,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -71071,7 +71547,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 777,
+ "target": 784,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -71091,9 +71567,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1322,
+ "line": 1326,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326"
}
],
"signatures": [
@@ -71114,9 +71590,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1322,
+ "line": 1326,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326"
}
],
"parameters": [
@@ -71128,7 +71604,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1048,
+ "target": 1055,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -71143,7 +71619,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 795,
+ "target": 802,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -71163,9 +71639,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 754,
+ "line": 758,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L754"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758"
}
],
"signatures": [
@@ -71197,9 +71673,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 754,
+ "line": 758,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L754"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758"
}
],
"parameters": [
@@ -71211,7 +71687,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1011,
+ "target": 1018,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -71245,9 +71721,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
],
"type": {
@@ -71268,14 +71744,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -71289,14 +71765,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -71311,9 +71787,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
]
}
@@ -71328,9 +71804,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 757,
+ "line": 761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L757"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L761"
}
],
"type": {
@@ -71348,9 +71824,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 755,
+ "line": 759,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L759"
}
]
}
@@ -71373,9 +71849,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
@@ -71396,9 +71872,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
@@ -71415,9 +71891,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
@@ -71435,9 +71911,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
]
}
@@ -71452,14 +71928,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -71474,9 +71950,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
]
}
@@ -71499,9 +71975,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
],
"signatures": [
@@ -71562,9 +72038,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
],
"parameters": [
@@ -71576,7 +72052,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1303,
+ "target": 1310,
"name": "SignOut",
"package": "@supabase/auth-js"
},
@@ -71608,9 +72084,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
],
"type": {
@@ -71622,7 +72098,7 @@
},
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -71639,9 +72115,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
]
}
@@ -71662,9 +72138,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 586,
+ "line": 590,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590"
}
],
"signatures": [
@@ -71705,9 +72181,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 586,
+ "line": 590,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590"
}
],
"parameters": [
@@ -71719,7 +72195,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 907,
+ "target": 914,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -71734,7 +72210,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -71754,9 +72230,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2888,
+ "line": 2892,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2888"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892"
}
],
"signatures": [
@@ -71776,7 +72252,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueClientOptions#autoRefreshToken",
- "target": 718
+ "target": 725
},
{
"kind": "text",
@@ -71792,9 +72268,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2888,
+ "line": 2892,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2888"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892"
}
],
"type": {
@@ -71824,9 +72300,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2901,
+ "line": 2905,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2901"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905"
}
],
"signatures": [
@@ -71856,9 +72332,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2901,
+ "line": 2905,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2901"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905"
}
],
"type": {
@@ -71888,9 +72364,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2407,
+ "line": 2411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2407"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411"
}
],
"signatures": [
@@ -71911,9 +72387,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2407,
+ "line": 2411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2407"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411"
}
],
"parameters": [
@@ -71925,7 +72401,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 815,
+ "target": 822,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -71959,9 +72435,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2409,
+ "line": 2413,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2409"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2413"
}
],
"type": {
@@ -71984,9 +72460,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2410,
+ "line": 2414,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2410"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2414"
}
],
"type": {
@@ -72004,9 +72480,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2408,
+ "line": 2412,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2408"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2412"
}
]
}
@@ -72029,9 +72505,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2412,
+ "line": 2416,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416"
}
],
"type": {
@@ -72048,14 +72524,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2412,
+ "line": 2416,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -72070,9 +72546,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2412,
+ "line": 2416,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416"
}
]
}
@@ -72095,9 +72571,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1757,
+ "line": 1761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761"
}
],
"signatures": [
@@ -72118,9 +72594,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1757,
+ "line": 1761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761"
}
],
"parameters": [
@@ -72132,7 +72608,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 872,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -72163,9 +72639,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1760,
+ "line": 1764,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1760"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1764"
}
],
"type": {
@@ -72183,9 +72659,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1759,
+ "line": 1763,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1763"
}
]
}
@@ -72202,7 +72678,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -72222,9 +72698,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1261,
+ "line": 1265,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265"
}
],
"signatures": [
@@ -72245,9 +72721,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1261,
+ "line": 1265,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265"
}
],
"parameters": [
@@ -72259,7 +72735,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1012,
+ "target": 1019,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -72274,7 +72750,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -72298,7 +72774,7 @@
{
"title": "Methods",
"children": [
- 201, 648, 276, 339, 458, 185, 172, 468, 420, 269, 369, 273, 444, 357, 189, 257, 198,
+ 201, 655, 276, 339, 458, 185, 172, 468, 420, 269, 369, 273, 444, 357, 189, 257, 198,
260, 195, 266, 204, 410, 192, 534, 536, 479, 345, 263
]
}
@@ -72306,14 +72782,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 190,
+ "line": 192,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L192"
}
]
},
{
- "id": 681,
+ "id": 688,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "declaration",
"kind": 128,
@@ -72339,7 +72815,7 @@
},
"children": [
{
- "id": 682,
+ "id": 689,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -72349,12 +72825,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"signatures": [
{
- "id": 683,
+ "id": 690,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "signature",
"kind": 16384,
@@ -72364,12 +72840,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"parameters": [
{
- "id": 684,
+ "id": 691,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -72382,7 +72858,7 @@
],
"type": {
"type": "reference",
- "target": 681,
+ "target": 688,
"name": "NavigatorLockAcquireTimeoutError",
"package": "@supabase/auth-js"
},
@@ -72400,7 +72876,7 @@
}
},
{
- "id": 685,
+ "id": 692,
"name": "isAcquireTimeout",
"variant": "declaration",
"kind": 1024,
@@ -72414,7 +72890,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 35,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L35"
}
],
"type": {
@@ -72432,11 +72908,11 @@
"groups": [
{
"title": "Constructors",
- "children": [682]
+ "children": [689]
},
{
"title": "Properties",
- "children": [685]
+ "children": [692]
}
],
"sources": [
@@ -72444,7 +72920,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L52"
}
],
"extendedTypes": [
@@ -72460,14 +72936,14 @@
]
},
{
- "id": 878,
+ "id": 885,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 880,
+ "id": 887,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -72503,7 +72979,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 450,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L450"
}
],
"type": {
@@ -72512,7 +72988,7 @@
}
},
{
- "id": 883,
+ "id": 890,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -72532,7 +73008,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 476,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L476"
}
],
"type": {
@@ -72541,7 +73017,7 @@
}
},
{
- "id": 889,
+ "id": 896,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -72562,7 +73038,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 401,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L401"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401"
}
],
"type": {
@@ -72576,7 +73052,7 @@
}
},
{
- "id": 881,
+ "id": 888,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -72596,7 +73072,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L457"
}
],
"type": {
@@ -72605,7 +73081,7 @@
}
},
{
- "id": 886,
+ "id": 893,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -72641,7 +73117,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L501"
}
],
"type": {
@@ -72650,7 +73126,7 @@
}
},
{
- "id": 887,
+ "id": 894,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -72671,7 +73147,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 418,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418"
}
],
"type": {
@@ -72685,7 +73161,7 @@
}
},
{
- "id": 890,
+ "id": 897,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -72706,7 +73182,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411"
}
],
"type": {
@@ -72720,7 +73196,7 @@
}
},
{
- "id": 885,
+ "id": 892,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -72748,7 +73224,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 494,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L494"
}
],
"type": {
@@ -72757,7 +73233,7 @@
}
},
{
- "id": 888,
+ "id": 895,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -72778,7 +73254,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -72792,7 +73268,7 @@
}
},
{
- "id": 882,
+ "id": 889,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -72812,7 +73288,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L464"
}
],
"type": {
@@ -72821,7 +73297,7 @@
}
},
{
- "id": 884,
+ "id": 891,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -72873,7 +73349,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -72882,7 +73358,7 @@
}
},
{
- "id": 879,
+ "id": 886,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -72918,7 +73394,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L440"
}
],
"type": {
@@ -72930,7 +73406,7 @@
"groups": [
{
"title": "Properties",
- "children": [880, 883, 889, 881, 886, 887, 890, 885, 888, 882, 884, 879]
+ "children": [887, 890, 896, 888, 893, 894, 897, 892, 895, 889, 891, 886]
}
],
"sources": [
@@ -72938,7 +73414,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 429,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L429"
}
],
"extendedTypes": [
@@ -72951,7 +73427,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 872,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -72966,7 +73442,7 @@
]
},
{
- "id": 812,
+ "id": 819,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -72986,7 +73462,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1262
+ "target": 1269
},
{
"kind": "text",
@@ -72998,7 +73474,7 @@
},
"children": [
{
- "id": 813,
+ "id": 820,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -73016,18 +73492,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 286,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L286"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L286"
}
],
"type": {
"type": "reference",
- "target": 810,
+ "target": 817,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 814,
+ "id": 821,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -73045,7 +73521,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L292"
}
],
"type": {
@@ -73057,7 +73533,7 @@
"groups": [
{
"title": "Properties",
- "children": [813, 814]
+ "children": [820, 821]
}
],
"sources": [
@@ -73065,12 +73541,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 284,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L284"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L284"
}
]
},
{
- "id": 1447,
+ "id": 1462,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -73085,7 +73561,7 @@
},
"children": [
{
- "id": 1451,
+ "id": 1466,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -73093,14 +73569,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1753,
+ "line": 1778,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1753"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778"
}
],
"signatures": [
{
- "id": 1452,
+ "id": 1467,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -73127,14 +73603,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1753,
+ "line": 1778,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1753"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778"
}
],
"parameters": [
{
- "id": 1453,
+ "id": 1468,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -73153,7 +73629,160 @@
}
},
{
- "id": 1454,
+ "id": 1469,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional parameters including skipBrowserRedirect"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1470,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1471,
+ "name": "skipBrowserRedirect",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1780,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1780"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1471]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1780,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1780"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1451,
+ "name": "AuthOAuthConsentResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1472,
+ "name": "denyAuthorization",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1791,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1791"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1473,
+ "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": 1791,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1791"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1474,
+ "name": "authorizationId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID to deny"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1475,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -73171,14 +73800,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1455,
+ "id": 1476,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1456,
+ "id": 1477,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -73188,9 +73817,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1793,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793"
}
],
"type": {
@@ -73202,15 +73831,15 @@
"groups": [
{
"title": "Properties",
- "children": [1456]
+ "children": [1477]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1793,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793"
}
]
}
@@ -73226,7 +73855,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1444,
+ "target": 1451,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -73238,23 +73867,23 @@
]
},
{
- "id": 1457,
- "name": "denyAuthorization",
+ "id": 1463,
+ "name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
"flags": {},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1766,
+ "line": 1768,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1766"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768"
}
],
"signatures": [
{
- "id": 1458,
- "name": "denyAuthorization",
+ "id": 1464,
+ "name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
"flags": {},
@@ -73262,7 +73891,7 @@
"summary": [
{
"kind": "text",
- "text": "Denies an OAuth authorization request.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ "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": [
@@ -73271,7 +73900,7 @@
"content": [
{
"kind": "text",
- "text": "Redirect URL to send the user back to the OAuth client"
+ "text": "Authorization details including client info and requested scopes"
}
]
}
@@ -73280,14 +73909,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1766,
+ "line": 1768,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1766"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768"
}
],
"parameters": [
{
- "id": 1459,
+ "id": 1465,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -73296,7 +73925,7 @@
"summary": [
{
"kind": "text",
- "text": "The authorization ID to deny"
+ "text": "The authorization ID from the authorization request"
}
]
},
@@ -73304,70 +73933,74 @@
"type": "intrinsic",
"name": "string"
}
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
},
- {
- "id": 1460,
- "name": "options",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1450,
+ "name": "AuthOAuthAuthorizationDetailsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1478,
+ "name": "listGrants",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1802,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1802"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1479,
+ "name": "listGrants",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists all OAuth grants that the authenticated user has authorized.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
{
"kind": "text",
- "text": "Optional parameters including skipBrowserRedirect"
+ "text": "Response with array of OAuth grants with client information and granted scopes"
}
]
- },
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 1461,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 1462,
- "name": "skipBrowserRedirect",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1768,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1768"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [1462]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1768,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1768"
- }
- ]
- }
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1802,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1802"
}
],
"type": {
@@ -73379,8 +74012,8 @@
"typeArguments": [
{
"type": "reference",
- "target": 1444,
- "name": "AuthOAuthConsentResponse",
+ "target": 1459,
+ "name": "AuthOAuthGrantsResponse",
"package": "@supabase/auth-js"
}
],
@@ -73391,23 +74024,23 @@
]
},
{
- "id": 1448,
- "name": "getAuthorizationDetails",
+ "id": 1480,
+ "name": "revokeGrant",
"variant": "declaration",
"kind": 2048,
"flags": {},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1743,
+ "line": 1815,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1743"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
}
],
"signatures": [
{
- "id": 1449,
- "name": "getAuthorizationDetails",
+ "id": 1481,
+ "name": "revokeGrant",
"variant": "signature",
"kind": 4096,
"flags": {},
@@ -73415,7 +74048,7 @@
"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."
+ "text": "Revokes a user's OAuth grant for a specific client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nRevocation marks consent as revoked, deletes active sessions for that OAuth client,\nand invalidates associated refresh tokens."
}
],
"blockTags": [
@@ -73424,7 +74057,7 @@
"content": [
{
"kind": "text",
- "text": "Authorization details including client info and requested scopes"
+ "text": "Empty response on successful revocation"
}
]
}
@@ -73433,15 +74066,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1743,
+ "line": 1815,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1743"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
}
],
"parameters": [
{
- "id": 1450,
- "name": "authorizationId",
+ "id": 1482,
+ "name": "options",
"variant": "param",
"kind": 32768,
"flags": {},
@@ -73449,13 +74082,62 @@
"summary": [
{
"kind": "text",
- "text": "The authorization ID from the authorization request"
+ "text": "Revocation options"
}
]
},
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reflection",
+ "declaration": {
+ "id": 1483,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1484,
+ "name": "clientId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The OAuth client identifier (UUID) to revoke access for"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1815,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1484]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1815,
+ "character": 23,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
+ }
+ ]
+ }
}
}
],
@@ -73468,8 +74150,8 @@
"typeArguments": [
{
"type": "reference",
- "target": 1443,
- "name": "AuthOAuthAuthorizationDetailsResponse",
+ "target": 1460,
+ "name": "AuthOAuthRevokeGrantResponse",
"package": "@supabase/auth-js"
}
],
@@ -73483,27 +74165,27 @@
"groups": [
{
"title": "Methods",
- "children": [1451, 1457, 1448]
+ "children": [1466, 1472, 1463, 1478, 1480]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1730,
+ "line": 1755,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1730"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1755"
}
]
},
{
- "id": 1085,
+ "id": 1092,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1086,
+ "id": 1093,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -73539,7 +74221,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 855,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L855"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L855"
}
],
"type": {
@@ -73548,7 +74230,7 @@
}
},
{
- "id": 1087,
+ "id": 1094,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -73568,7 +74250,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 857,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L857"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L857"
}
],
"type": {
@@ -73580,7 +74262,7 @@
"groups": [
{
"title": "Properties",
- "children": [1086, 1087]
+ "children": [1093, 1094]
}
],
"sources": [
@@ -73588,12 +74270,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 849,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L849"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L849"
}
]
},
{
- "id": 1278,
+ "id": 1285,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -73614,7 +74296,7 @@
},
"children": [
{
- "id": 1282,
+ "id": 1289,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -73624,12 +74306,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1298,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298"
}
],
"signatures": [
{
- "id": 1283,
+ "id": 1290,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -73649,7 +74331,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1251
+ "target": 1258
}
]
},
@@ -73664,19 +74346,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1298,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298"
}
],
"parameters": [
{
- "id": 1284,
+ "id": 1291,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1268,
+ "target": 1275,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -73691,7 +74373,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1265,
+ "target": 1272,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -73703,7 +74385,7 @@
]
},
{
- "id": 1279,
+ "id": 1286,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -73713,12 +74395,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1288,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288"
}
],
"signatures": [
{
- "id": 1280,
+ "id": 1287,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -73736,19 +74418,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1288,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288"
}
],
"parameters": [
{
- "id": 1281,
+ "id": 1288,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1275,
+ "target": 1282,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -73763,7 +74445,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1272,
+ "target": 1279,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -73778,7 +74460,7 @@
"groups": [
{
"title": "Methods",
- "children": [1282, 1279]
+ "children": [1289, 1286]
}
],
"sources": [
@@ -73786,12 +74468,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1283,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1283"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1283"
}
]
},
{
- "id": 1404,
+ "id": 1411,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -73806,7 +74488,7 @@
},
"children": [
{
- "id": 1408,
+ "id": 1415,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -73816,12 +74498,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1637,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1637"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637"
}
],
"signatures": [
{
- "id": 1409,
+ "id": 1416,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -73847,19 +74529,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1637,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1637"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637"
}
],
"parameters": [
{
- "id": 1410,
+ "id": 1417,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1383,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -73874,7 +74556,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -73886,7 +74568,7 @@
]
},
{
- "id": 1418,
+ "id": 1425,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -73896,12 +74578,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"signatures": [
{
- "id": 1419,
+ "id": 1426,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -73927,12 +74609,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"parameters": [
{
- "id": 1420,
+ "id": 1427,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -73953,14 +74635,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1421,
+ "id": 1428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1422,
+ "id": 1429,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -73970,7 +74652,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"type": {
@@ -73979,7 +74661,7 @@
}
},
{
- "id": 1423,
+ "id": 1430,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -73989,7 +74671,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"type": {
@@ -74001,7 +74683,7 @@
},
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -74012,7 +74694,7 @@
"groups": [
{
"title": "Properties",
- "children": [1422, 1423]
+ "children": [1429, 1430]
}
],
"sources": [
@@ -74020,7 +74702,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
]
}
@@ -74033,7 +74715,7 @@
]
},
{
- "id": 1411,
+ "id": 1418,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -74043,12 +74725,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1645,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1645"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645"
}
],
"signatures": [
{
- "id": 1412,
+ "id": 1419,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -74074,12 +74756,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1645,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1645"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645"
}
],
"parameters": [
{
- "id": 1413,
+ "id": 1420,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -74099,7 +74781,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -74111,7 +74793,7 @@
]
},
{
- "id": 1405,
+ "id": 1412,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -74121,12 +74803,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1629,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1629"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629"
}
],
"signatures": [
{
- "id": 1406,
+ "id": 1413,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -74152,12 +74834,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1629,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1629"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629"
}
],
"parameters": [
{
- "id": 1407,
+ "id": 1414,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -74166,7 +74848,7 @@
},
"type": {
"type": "reference",
- "target": 1299,
+ "target": 1306,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -74181,7 +74863,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1392,
+ "target": 1399,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -74193,7 +74875,7 @@
]
},
{
- "id": 1424,
+ "id": 1431,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -74203,12 +74885,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1669"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669"
}
],
"signatures": [
{
- "id": 1425,
+ "id": 1432,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -74234,12 +74916,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1669"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669"
}
],
"parameters": [
{
- "id": 1426,
+ "id": 1433,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -74259,7 +74941,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -74271,7 +74953,7 @@
]
},
{
- "id": 1414,
+ "id": 1421,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -74281,12 +74963,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1653,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1653"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653"
}
],
"signatures": [
{
- "id": 1415,
+ "id": 1422,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -74312,12 +74994,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1653,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1653"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653"
}
],
"parameters": [
{
- "id": 1416,
+ "id": 1423,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -74328,14 +75010,14 @@
}
},
{
- "id": 1417,
+ "id": 1424,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1384,
+ "target": 1391,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -74350,7 +75032,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -74365,7 +75047,7 @@
"groups": [
{
"title": "Methods",
- "children": [1408, 1418, 1411, 1405, 1424, 1414]
+ "children": [1415, 1425, 1418, 1412, 1431, 1421]
}
],
"sources": [
@@ -74373,12 +75055,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1622,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1622"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1622"
}
]
},
{
- "id": 1148,
+ "id": 1155,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -74393,7 +75075,7 @@
},
"children": [
{
- "id": 1264,
+ "id": 1271,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -74403,7 +75085,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1241,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1241"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1241"
}
],
"type": {
@@ -74417,7 +75099,7 @@
}
},
{
- "id": 1169,
+ "id": 1176,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -74427,30 +75109,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1191,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1192,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192"
}
],
"signatures": [
{
- "id": 1170,
+ "id": 1177,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -74468,12 +75150,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189"
}
],
"parameters": [
{
- "id": 1171,
+ "id": 1178,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -74481,14 +75163,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1172,
+ "id": 1179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1173,
+ "id": 1180,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -74506,7 +75188,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 963,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963"
}
],
"type": {
@@ -74518,7 +75200,7 @@
"groups": [
{
"title": "Properties",
- "children": [1173]
+ "children": [1180]
}
],
"sources": [
@@ -74526,7 +75208,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -74546,14 +75228,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1174,
+ "id": 1181,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1175,
+ "id": 1182,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -74563,7 +75245,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -74572,7 +75254,7 @@
}
},
{
- "id": 1176,
+ "id": 1183,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -74582,12 +75264,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -74596,7 +75278,7 @@
"groups": [
{
"title": "Properties",
- "children": [1175, 1176]
+ "children": [1182, 1183]
}
],
"sources": [
@@ -74604,7 +75286,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -74612,14 +75294,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1177,
+ "id": 1184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1178,
+ "id": 1185,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -74629,20 +75311,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1179,
+ "id": 1186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1182,
+ "id": 1189,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -74660,7 +75342,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1059,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1059"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059"
}
],
"type": {
@@ -74669,7 +75351,7 @@
}
},
{
- "id": 1180,
+ "id": 1187,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -74687,7 +75369,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1053,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1053"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053"
}
],
"type": {
@@ -74696,7 +75378,7 @@
}
},
{
- "id": 1181,
+ "id": 1188,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -74714,7 +75396,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
@@ -74726,7 +75408,7 @@
"groups": [
{
"title": "Properties",
- "children": [1182, 1180, 1181]
+ "children": [1189, 1187, 1188]
}
],
"sources": [
@@ -74734,14 +75416,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
}
},
{
- "id": 1183,
+ "id": 1190,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -74751,7 +75433,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -74763,7 +75445,7 @@
"groups": [
{
"title": "Properties",
- "children": [1178, 1183]
+ "children": [1185, 1190]
}
],
"sources": [
@@ -74771,7 +75453,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -74784,7 +75466,7 @@
}
},
{
- "id": 1184,
+ "id": 1191,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -74794,12 +75476,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190"
}
],
"parameters": [
{
- "id": 1185,
+ "id": 1192,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -74807,14 +75489,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1186,
+ "id": 1193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1188,
+ "id": 1195,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -74832,7 +75514,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 973,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L973"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L973"
}
],
"type": {
@@ -74850,7 +75532,7 @@
}
},
{
- "id": 1187,
+ "id": 1194,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -74868,7 +75550,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 963,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963"
}
],
"type": {
@@ -74880,7 +75562,7 @@
"groups": [
{
"title": "Properties",
- "children": [1188, 1187]
+ "children": [1195, 1194]
}
],
"sources": [
@@ -74888,7 +75570,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -74908,14 +75590,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1189,
+ "id": 1196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1190,
+ "id": 1197,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -74925,7 +75607,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -74934,7 +75616,7 @@
}
},
{
- "id": 1191,
+ "id": 1198,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -74944,12 +75626,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -74958,7 +75640,7 @@
"groups": [
{
"title": "Properties",
- "children": [1190, 1191]
+ "children": [1197, 1198]
}
],
"sources": [
@@ -74966,7 +75648,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -74974,14 +75656,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1192,
+ "id": 1199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1193,
+ "id": 1200,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -74991,20 +75673,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1194,
+ "id": 1201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1197,
+ "id": 1204,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -75022,7 +75704,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1059,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1059"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059"
}
],
"type": {
@@ -75031,7 +75713,7 @@
}
},
{
- "id": 1195,
+ "id": 1202,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -75049,7 +75731,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1053,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1053"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053"
}
],
"type": {
@@ -75058,7 +75740,7 @@
}
},
{
- "id": 1196,
+ "id": 1203,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -75076,7 +75758,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
@@ -75088,7 +75770,7 @@
"groups": [
{
"title": "Properties",
- "children": [1197, 1195, 1196]
+ "children": [1204, 1202, 1203]
}
],
"sources": [
@@ -75096,14 +75778,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
}
},
{
- "id": 1198,
+ "id": 1205,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -75113,7 +75795,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -75125,7 +75807,7 @@
"groups": [
{
"title": "Properties",
- "children": [1193, 1198]
+ "children": [1200, 1205]
}
],
"sources": [
@@ -75133,7 +75815,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -75146,7 +75828,7 @@
}
},
{
- "id": 1199,
+ "id": 1206,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -75156,12 +75838,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1191,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191"
}
],
"parameters": [
{
- "id": 1200,
+ "id": 1207,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -75169,14 +75851,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1201,
+ "id": 1208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1202,
+ "id": 1209,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -75194,7 +75876,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 963,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963"
}
],
"type": {
@@ -75203,7 +75885,7 @@
}
},
{
- "id": 1203,
+ "id": 1210,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -75213,20 +75895,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 982,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1204,
+ "id": 1211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1205,
+ "id": 1212,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -75244,7 +75926,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 984,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L984"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -75253,7 +75935,7 @@
}
},
{
- "id": 1206,
+ "id": 1213,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -75273,7 +75955,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 986,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L986"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -75288,7 +75970,7 @@
"groups": [
{
"title": "Properties",
- "children": [1205, 1206]
+ "children": [1212, 1213]
}
],
"sources": [
@@ -75296,7 +75978,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 982,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982"
}
]
}
@@ -75306,7 +75988,7 @@
"groups": [
{
"title": "Properties",
- "children": [1202, 1203]
+ "children": [1209, 1210]
}
],
"sources": [
@@ -75314,7 +75996,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -75334,14 +76016,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1207,
+ "id": 1214,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1208,
+ "id": 1215,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -75351,7 +76033,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -75360,7 +76042,7 @@
}
},
{
- "id": 1209,
+ "id": 1216,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -75370,12 +76052,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -75384,7 +76066,7 @@
"groups": [
{
"title": "Properties",
- "children": [1208, 1209]
+ "children": [1215, 1216]
}
],
"sources": [
@@ -75392,7 +76074,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -75400,14 +76082,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1210,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1211,
+ "id": 1218,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -75417,20 +76099,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1212,
+ "id": 1219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1215,
+ "id": 1222,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -75448,7 +76130,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1059,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1059"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059"
}
],
"type": {
@@ -75457,7 +76139,7 @@
}
},
{
- "id": 1213,
+ "id": 1220,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -75475,7 +76157,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1053,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1053"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053"
}
],
"type": {
@@ -75484,7 +76166,7 @@
}
},
{
- "id": 1214,
+ "id": 1221,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -75502,7 +76184,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
@@ -75511,7 +76193,7 @@
}
},
{
- "id": 1216,
+ "id": 1223,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -75521,7 +76203,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1079,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1079"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1079"
}
],
"type": {
@@ -75530,14 +76212,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1217,
+ "id": 1224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1219,
+ "id": 1226,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -75547,20 +76229,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1082,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1082"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1220,
+ "id": 1227,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1221,
+ "id": 1228,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -75570,7 +76252,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1082,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1082"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082"
}
],
"type": {
@@ -75587,7 +76269,7 @@
"groups": [
{
"title": "Properties",
- "children": [1221]
+ "children": [1228]
}
],
"sources": [
@@ -75595,14 +76277,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1082,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1082"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082"
}
]
}
}
},
{
- "id": 1218,
+ "id": 1225,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -75612,7 +76294,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1081,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1081"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1081"
}
],
"type": {
@@ -75624,7 +76306,7 @@
"groups": [
{
"title": "Properties",
- "children": [1219, 1218]
+ "children": [1226, 1225]
}
],
"sources": [
@@ -75632,7 +76314,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1080,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1080"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1080"
}
]
}
@@ -75640,14 +76322,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1222,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1224,
+ "id": 1231,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -75657,20 +76339,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1086,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1086"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1225,
+ "id": 1232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1226,
+ "id": 1233,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -75680,7 +76362,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1086,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1086"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086"
}
],
"type": {
@@ -75697,7 +76379,7 @@
"groups": [
{
"title": "Properties",
- "children": [1226]
+ "children": [1233]
}
],
"sources": [
@@ -75705,14 +76387,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1086,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1086"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086"
}
]
}
}
},
{
- "id": 1223,
+ "id": 1230,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -75722,7 +76404,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1085,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1085"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1085"
}
],
"type": {
@@ -75734,7 +76416,7 @@
"groups": [
{
"title": "Properties",
- "children": [1224, 1223]
+ "children": [1231, 1230]
}
],
"sources": [
@@ -75742,7 +76424,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1084,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1084"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1084"
}
]
}
@@ -75754,7 +76436,7 @@
"groups": [
{
"title": "Properties",
- "children": [1215, 1213, 1214, 1216]
+ "children": [1222, 1220, 1221, 1223]
}
],
"sources": [
@@ -75762,14 +76444,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
}
},
{
- "id": 1227,
+ "id": 1234,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -75779,7 +76461,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -75791,7 +76473,7 @@
"groups": [
{
"title": "Properties",
- "children": [1211, 1227]
+ "children": [1218, 1234]
}
],
"sources": [
@@ -75799,7 +76481,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -75812,7 +76494,7 @@
}
},
{
- "id": 1228,
+ "id": 1235,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -75822,19 +76504,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1192,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192"
}
],
"parameters": [
{
- "id": 1229,
+ "id": 1236,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1118,
+ "target": 1125,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -75849,7 +76531,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1137,
+ "target": 1144,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -75861,7 +76543,7 @@
]
},
{
- "id": 1254,
+ "id": 1261,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -75871,12 +76553,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1213"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213"
}
],
"signatures": [
{
- "id": 1255,
+ "id": 1262,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -75894,12 +76576,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1213"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213"
}
],
"parameters": [
{
- "id": 1256,
+ "id": 1263,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -75907,14 +76589,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1257,
+ "id": 1264,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1259,
+ "id": 1266,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -75932,7 +76614,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 917,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L917"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917"
}
],
"type": {
@@ -75941,7 +76623,7 @@
}
},
{
- "id": 1258,
+ "id": 1265,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -75959,7 +76641,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -75971,7 +76653,7 @@
"groups": [
{
"title": "Properties",
- "children": [1259, 1258]
+ "children": [1266, 1265]
}
],
"sources": [
@@ -75979,7 +76661,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -75995,7 +76677,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -76007,7 +76689,7 @@
]
},
{
- "id": 1149,
+ "id": 1156,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -76017,30 +76699,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183"
}
],
"signatures": [
{
- "id": 1150,
+ "id": 1157,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -76074,12 +76756,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180"
}
],
"parameters": [
{
- "id": 1151,
+ "id": 1158,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -76087,14 +76769,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1152,
+ "id": 1159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1153,
+ "id": 1160,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -76112,7 +76794,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -76121,7 +76803,7 @@
}
},
{
- "id": 1154,
+ "id": 1161,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -76141,7 +76823,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359"
}
],
"type": {
@@ -76150,7 +76832,7 @@
}
},
{
- "id": 1155,
+ "id": 1162,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -76170,7 +76852,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1364,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1364"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1364"
}
],
"type": {
@@ -76182,7 +76864,7 @@
"groups": [
{
"title": "Properties",
- "children": [1153, 1154, 1155]
+ "children": [1160, 1161, 1162]
}
],
"sources": [
@@ -76190,7 +76872,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -76206,7 +76888,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1309,
+ "target": 1316,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -76216,7 +76898,7 @@
}
},
{
- "id": 1156,
+ "id": 1163,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -76226,12 +76908,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181"
}
],
"parameters": [
{
- "id": 1157,
+ "id": 1164,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -76239,14 +76921,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1158,
+ "id": 1165,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1159,
+ "id": 1166,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -76264,7 +76946,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -76273,7 +76955,7 @@
}
},
{
- "id": 1160,
+ "id": 1167,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -76293,7 +76975,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359"
}
],
"type": {
@@ -76302,7 +76984,7 @@
}
},
{
- "id": 1161,
+ "id": 1168,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -76320,7 +77002,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1371,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1371"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1371"
}
],
"type": {
@@ -76332,7 +77014,7 @@
"groups": [
{
"title": "Properties",
- "children": [1159, 1160, 1161]
+ "children": [1166, 1167, 1168]
}
],
"sources": [
@@ -76340,7 +77022,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -76356,7 +77038,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1310,
+ "target": 1317,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -76366,7 +77048,7 @@
}
},
{
- "id": 1162,
+ "id": 1169,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -76376,12 +77058,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182"
}
],
"parameters": [
{
- "id": 1163,
+ "id": 1170,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -76389,14 +77071,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1164,
+ "id": 1171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1165,
+ "id": 1172,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -76414,7 +77096,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -76423,7 +77105,7 @@
}
},
{
- "id": 1166,
+ "id": 1173,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -76443,7 +77125,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359"
}
],
"type": {
@@ -76455,7 +77137,7 @@
"groups": [
{
"title": "Properties",
- "children": [1165, 1166]
+ "children": [1172, 1173]
}
],
"sources": [
@@ -76463,7 +77145,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -76479,7 +77161,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1311,
+ "target": 1318,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -76489,7 +77171,7 @@
}
},
{
- "id": 1167,
+ "id": 1174,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -76499,19 +77181,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183"
}
],
"parameters": [
{
- "id": 1168,
+ "id": 1175,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1101,
+ "target": 1108,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -76526,7 +77208,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1128,
+ "target": 1135,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -76538,7 +77220,7 @@
]
},
{
- "id": 1262,
+ "id": 1269,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -76548,12 +77230,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1238"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238"
}
],
"signatures": [
{
- "id": 1263,
+ "id": 1270,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -76595,7 +77277,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1238"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238"
}
],
"type": {
@@ -76607,7 +77289,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1143,
+ "target": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -76619,7 +77301,7 @@
]
},
{
- "id": 1260,
+ "id": 1267,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -76629,12 +77311,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1223,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1223"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223"
}
],
"signatures": [
{
- "id": 1261,
+ "id": 1268,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -76658,7 +77340,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1149
+ "target": 1156
},
{
"kind": "text",
@@ -76672,7 +77354,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1262
+ "target": 1269
},
{
"kind": "text",
@@ -76701,7 +77383,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1223,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1223"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223"
}
],
"type": {
@@ -76713,7 +77395,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1138,
+ "target": 1145,
"typeArguments": [
{
"type": "typeOperator",
@@ -76748,7 +77430,7 @@
]
},
{
- "id": 1251,
+ "id": 1258,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -76758,12 +77440,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1207,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1207"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207"
}
],
"signatures": [
{
- "id": 1252,
+ "id": 1259,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -76797,19 +77479,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1207,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1207"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207"
}
],
"parameters": [
{
- "id": 1253,
+ "id": 1260,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1102,
+ "target": 1109,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -76824,7 +77506,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1129,
+ "target": 1136,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -76836,7 +77518,7 @@
]
},
{
- "id": 1230,
+ "id": 1237,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -76846,30 +77528,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1201,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201"
}
],
"signatures": [
{
- "id": 1231,
+ "id": 1238,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -76887,12 +77569,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198"
}
],
"parameters": [
{
- "id": 1232,
+ "id": 1239,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -76900,14 +77582,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1233,
+ "id": 1240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1235,
+ "id": 1242,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -76925,7 +77607,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 912,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L912"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
@@ -76934,7 +77616,7 @@
}
},
{
- "id": 1236,
+ "id": 1243,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -76952,7 +77634,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 917,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L917"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917"
}
],
"type": {
@@ -76961,7 +77643,7 @@
}
},
{
- "id": 1234,
+ "id": 1241,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -76979,7 +77661,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -76991,7 +77673,7 @@
"groups": [
{
"title": "Properties",
- "children": [1235, 1236, 1234]
+ "children": [1242, 1243, 1241]
}
],
"sources": [
@@ -76999,7 +77681,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -77015,7 +77697,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -77025,7 +77707,7 @@
}
},
{
- "id": 1237,
+ "id": 1244,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -77035,12 +77717,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199"
}
],
"parameters": [
{
- "id": 1238,
+ "id": 1245,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -77048,14 +77730,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1246,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1241,
+ "id": 1248,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -77073,7 +77755,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 912,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L912"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
@@ -77082,7 +77764,7 @@
}
},
{
- "id": 1242,
+ "id": 1249,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -77100,7 +77782,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 917,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L917"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917"
}
],
"type": {
@@ -77109,7 +77791,7 @@
}
},
{
- "id": 1240,
+ "id": 1247,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -77127,7 +77809,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -77139,7 +77821,7 @@
"groups": [
{
"title": "Properties",
- "children": [1241, 1242, 1240]
+ "children": [1248, 1249, 1247]
}
],
"sources": [
@@ -77147,7 +77829,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -77163,7 +77845,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -77173,7 +77855,7 @@
}
},
{
- "id": 1243,
+ "id": 1250,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -77183,12 +77865,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200"
}
],
"parameters": [
{
- "id": 1244,
+ "id": 1251,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -77196,14 +77878,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1245,
+ "id": 1252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1247,
+ "id": 1254,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -77221,7 +77903,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 912,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L912"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
@@ -77230,7 +77912,7 @@
}
},
{
- "id": 1246,
+ "id": 1253,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -77248,7 +77930,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -77257,7 +77939,7 @@
}
},
{
- "id": 1248,
+ "id": 1255,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -77267,7 +77949,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 947,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L947"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947"
}
],
"type": {
@@ -77313,7 +77995,7 @@
"groups": [
{
"title": "Properties",
- "children": [1247, 1246, 1248]
+ "children": [1254, 1253, 1255]
}
],
"sources": [
@@ -77321,7 +78003,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -77337,7 +78019,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -77347,7 +78029,7 @@
}
},
{
- "id": 1249,
+ "id": 1256,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -77357,19 +78039,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1201,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201"
}
],
"parameters": [
{
- "id": 1250,
+ "id": 1257,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1113,
+ "target": 1120,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -77384,7 +78066,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -77399,11 +78081,11 @@
"groups": [
{
"title": "Properties",
- "children": [1264]
+ "children": [1271]
},
{
"title": "Methods",
- "children": [1169, 1254, 1149, 1262, 1260, 1251, 1230]
+ "children": [1176, 1261, 1156, 1269, 1267, 1258, 1237]
}
],
"sources": [
@@ -77411,19 +78093,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1170,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1170"
}
]
},
{
- "id": 1347,
+ "id": 1354,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1350,
+ "id": 1357,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -77435,7 +78117,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1494,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1494"
}
],
"type": {
@@ -77444,7 +78126,7 @@
}
},
{
- "id": 1349,
+ "id": 1356,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -77454,7 +78136,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1493,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1493"
}
],
"type": {
@@ -77466,7 +78148,7 @@
}
},
{
- "id": 1351,
+ "id": 1358,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -77478,7 +78160,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1495,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1495"
}
],
"type": {
@@ -77487,7 +78169,7 @@
}
},
{
- "id": 1348,
+ "id": 1355,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -77497,7 +78179,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1492"
}
],
"type": {
@@ -77522,7 +78204,7 @@
"groups": [
{
"title": "Properties",
- "children": [1350, 1349, 1351, 1348]
+ "children": [1357, 1356, 1358, 1355]
}
],
"sources": [
@@ -77530,12 +78212,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1491,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1491"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1491"
}
],
"indexSignatures": [
{
- "id": 1352,
+ "id": 1359,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -77545,12 +78227,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1496,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1496"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1496"
}
],
"parameters": [
{
- "id": 1353,
+ "id": 1360,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -77569,7 +78251,7 @@
]
},
{
- "id": 1327,
+ "id": 1334,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -77595,7 +78277,7 @@
},
"children": [
{
- "id": 1343,
+ "id": 1350,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -77607,12 +78289,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459"
}
],
"type": {
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -77623,7 +78305,7 @@
}
},
{
- "id": 1335,
+ "id": 1342,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -77635,21 +78317,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1482,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1482"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1482"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 812,
+ "target": 819,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1333,
+ "id": 1340,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -77661,18 +78343,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1480,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1480"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1480"
}
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 845,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1339,
+ "id": 1346,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -77684,7 +78366,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455"
}
],
"type": {
@@ -77710,7 +78392,7 @@
}
},
{
- "id": 1328,
+ "id": 1335,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -77722,7 +78404,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1473,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1473"
}
],
"type": {
@@ -77731,7 +78413,7 @@
}
},
{
- "id": 1340,
+ "id": 1347,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -77743,7 +78425,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1456"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456"
}
],
"type": {
@@ -77757,7 +78439,7 @@
}
},
{
- "id": 1341,
+ "id": 1348,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -77769,7 +78451,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457"
}
],
"type": {
@@ -77783,7 +78465,7 @@
}
},
{
- "id": 1330,
+ "id": 1337,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -77795,7 +78477,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1475,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1475"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1475"
}
],
"type": {
@@ -77804,7 +78486,7 @@
}
},
{
- "id": 1337,
+ "id": 1344,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -77816,7 +78498,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1453"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453"
}
],
"type": {
@@ -77830,7 +78512,7 @@
}
},
{
- "id": 1331,
+ "id": 1338,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -77842,7 +78524,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1478"
}
],
"type": {
@@ -77851,7 +78533,7 @@
}
},
{
- "id": 1332,
+ "id": 1339,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -77863,7 +78545,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1479,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1479"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1479"
}
],
"type": {
@@ -77872,7 +78554,7 @@
}
},
{
- "id": 1329,
+ "id": 1336,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -77884,7 +78566,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1474,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1474"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1474"
}
],
"type": {
@@ -77893,7 +78575,7 @@
}
},
{
- "id": 1336,
+ "id": 1343,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -77905,7 +78587,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1485"
}
],
"type": {
@@ -77914,7 +78596,7 @@
}
},
{
- "id": 1342,
+ "id": 1349,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -77926,7 +78608,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1458,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1458"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458"
}
],
"type": {
@@ -77940,7 +78622,7 @@
}
},
{
- "id": 1344,
+ "id": 1351,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -77952,7 +78634,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1460,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460"
}
],
"type": {
@@ -77966,7 +78648,7 @@
}
},
{
- "id": 1338,
+ "id": 1345,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -77978,7 +78660,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454"
}
],
"type": {
@@ -77992,7 +78674,7 @@
}
},
{
- "id": 1334,
+ "id": 1341,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -78004,12 +78686,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1481,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1481"
}
],
"type": {
"type": "reference",
- "target": 843,
+ "target": 850,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -78019,8 +78701,8 @@
{
"title": "Properties",
"children": [
- 1343, 1335, 1333, 1339, 1328, 1340, 1341, 1330, 1337, 1331, 1332, 1329, 1336, 1342,
- 1344, 1338, 1334
+ 1350, 1342, 1340, 1346, 1335, 1347, 1348, 1337, 1344, 1338, 1339, 1336, 1343, 1349,
+ 1351, 1345, 1341
]
}
],
@@ -78029,12 +78711,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1471,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1471"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1471"
}
],
"indexSignatures": [
{
- "id": 1345,
+ "id": 1352,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -78044,12 +78726,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1488,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1488"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1488"
}
],
"parameters": [
{
- "id": 1346,
+ "id": 1353,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -78069,21 +78751,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1317,
+ "target": 1324,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 801,
+ "id": 808,
"name": "Session",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 804,
+ "id": 811,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -78101,7 +78783,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L239"
}
],
"type": {
@@ -78110,7 +78792,7 @@
}
},
{
- "id": 807,
+ "id": 814,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -78130,7 +78812,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L251"
}
],
"type": {
@@ -78139,7 +78821,7 @@
}
},
{
- "id": 806,
+ "id": 813,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -78157,7 +78839,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L247"
}
],
"type": {
@@ -78166,7 +78848,7 @@
}
},
{
- "id": 803,
+ "id": 810,
"name": "provider_refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -78186,7 +78868,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L235"
}
],
"type": {
@@ -78204,7 +78886,7 @@
}
},
{
- "id": 802,
+ "id": 809,
"name": "provider_token",
"variant": "declaration",
"kind": 1024,
@@ -78224,7 +78906,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L230"
}
],
"type": {
@@ -78242,7 +78924,7 @@
}
},
{
- "id": 805,
+ "id": 812,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -78260,7 +78942,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 243,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L243"
}
],
"type": {
@@ -78269,7 +78951,7 @@
}
},
{
- "id": 808,
+ "id": 815,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -78279,7 +78961,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 252,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L252"
}
],
"type": {
@@ -78288,7 +78970,7 @@
}
},
{
- "id": 809,
+ "id": 816,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -78306,12 +78988,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 257,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L257"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -78320,7 +79002,7 @@
"groups": [
{
"title": "Properties",
- "children": [804, 807, 806, 803, 802, 805, 808, 809]
+ "children": [811, 814, 813, 810, 809, 812, 815, 816]
}
],
"sources": [
@@ -78328,19 +79010,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 226,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L226"
}
]
},
{
- "id": 891,
+ "id": 898,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 893,
+ "id": 900,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -78358,13 +79040,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 514,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 894,
+ "id": 901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -78374,12 +79056,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 514,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"signatures": [
{
- "id": 895,
+ "id": 902,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -78389,25 +79071,25 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 514,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"parameters": [
{
- "id": 896,
+ "id": 903,
"name": "event",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 699,
+ "target": 706,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
},
{
- "id": 897,
+ "id": 904,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -78421,7 +79103,7 @@
},
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -78439,7 +79121,7 @@
}
},
{
- "id": 892,
+ "id": 899,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -78457,7 +79139,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 510,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L510"
}
],
"type": {
@@ -78475,7 +79157,7 @@
}
},
{
- "id": 898,
+ "id": 905,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -78493,13 +79175,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 518,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 899,
+ "id": 906,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -78509,12 +79191,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 518,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518"
}
],
"signatures": [
{
- "id": 900,
+ "id": 907,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -78524,7 +79206,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 518,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518"
}
],
"type": {
@@ -78540,7 +79222,7 @@
"groups": [
{
"title": "Properties",
- "children": [893, 892, 898]
+ "children": [900, 899, 905]
}
],
"sources": [
@@ -78548,19 +79230,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 504,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L504"
}
]
},
{
- "id": 846,
+ "id": 853,
"name": "User",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 857,
+ "id": 864,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -78572,7 +79254,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 380,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L380"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L380"
}
],
"type": {
@@ -78581,7 +79263,7 @@
}
},
{
- "id": 848,
+ "id": 855,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -78591,18 +79273,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 371,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L371"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L371"
}
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 845,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 850,
+ "id": 857,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -78612,7 +79294,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 373,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L373"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L373"
}
],
"type": {
@@ -78621,7 +79303,7 @@
}
},
{
- "id": 851,
+ "id": 858,
"name": "confirmation_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -78633,7 +79315,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 374,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L374"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L374"
}
],
"type": {
@@ -78642,7 +79324,7 @@
}
},
{
- "id": 861,
+ "id": 868,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -78654,7 +79336,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 384,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L384"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L384"
}
],
"type": {
@@ -78663,7 +79345,7 @@
}
},
{
- "id": 860,
+ "id": 867,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -78673,7 +79355,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L383"
}
],
"type": {
@@ -78682,7 +79364,7 @@
}
},
{
- "id": 871,
+ "id": 878,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -78694,7 +79376,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 394,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L394"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L394"
}
],
"type": {
@@ -78703,7 +79385,7 @@
}
},
{
- "id": 858,
+ "id": 865,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -78715,7 +79397,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L381"
}
],
"type": {
@@ -78724,7 +79406,7 @@
}
},
{
- "id": 853,
+ "id": 860,
"name": "email_change_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -78736,7 +79418,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 376,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L376"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L376"
}
],
"type": {
@@ -78745,7 +79427,7 @@
}
},
{
- "id": 862,
+ "id": 869,
"name": "email_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -78757,7 +79439,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 385,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L385"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L385"
}
],
"type": {
@@ -78766,7 +79448,7 @@
}
},
{
- "id": 870,
+ "id": 877,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -78778,7 +79460,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 393,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L393"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L393"
}
],
"type": {
@@ -78788,7 +79470,7 @@
"types": [
{
"type": "reference",
- "target": 828,
+ "target": 835,
"typeArguments": [
{
"type": "union",
@@ -78817,7 +79499,7 @@
},
{
"type": "reference",
- "target": 828,
+ "target": 835,
"typeArguments": [
{
"type": "union",
@@ -78849,7 +79531,7 @@
}
},
{
- "id": 847,
+ "id": 854,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -78859,7 +79541,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L370"
}
],
"type": {
@@ -78868,7 +79550,7 @@
}
},
{
- "id": 867,
+ "id": 874,
"name": "identities",
"variant": "declaration",
"kind": 1024,
@@ -78880,21 +79562,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 390,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L390"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 815,
+ "target": 822,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 856,
+ "id": 863,
"name": "invited_at",
"variant": "declaration",
"kind": 1024,
@@ -78906,7 +79588,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 379,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L379"
}
],
"type": {
@@ -78915,7 +79597,7 @@
}
},
{
- "id": 868,
+ "id": 875,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -78927,7 +79609,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 391,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L391"
}
],
"type": {
@@ -78936,7 +79618,7 @@
}
},
{
- "id": 869,
+ "id": 876,
"name": "is_sso_user",
"variant": "declaration",
"kind": 1024,
@@ -78948,7 +79630,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 392,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L392"
}
],
"type": {
@@ -78957,7 +79639,7 @@
}
},
{
- "id": 864,
+ "id": 871,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -78969,7 +79651,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 387,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L387"
}
],
"type": {
@@ -78978,7 +79660,7 @@
}
},
{
- "id": 854,
+ "id": 861,
"name": "new_email",
"variant": "declaration",
"kind": 1024,
@@ -78990,7 +79672,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 377,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L377"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L377"
}
],
"type": {
@@ -78999,7 +79681,7 @@
}
},
{
- "id": 855,
+ "id": 862,
"name": "new_phone",
"variant": "declaration",
"kind": 1024,
@@ -79011,7 +79693,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L378"
}
],
"type": {
@@ -79020,7 +79702,7 @@
}
},
{
- "id": 859,
+ "id": 866,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -79032,7 +79714,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L382"
}
],
"type": {
@@ -79041,7 +79723,7 @@
}
},
{
- "id": 863,
+ "id": 870,
"name": "phone_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -79053,7 +79735,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 386,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L386"
}
],
"type": {
@@ -79062,7 +79744,7 @@
}
},
{
- "id": 852,
+ "id": 859,
"name": "recovery_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -79074,7 +79756,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 375,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L375"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L375"
}
],
"type": {
@@ -79083,7 +79765,7 @@
}
},
{
- "id": 865,
+ "id": 872,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -79095,7 +79777,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 388,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L388"
}
],
"type": {
@@ -79104,7 +79786,7 @@
}
},
{
- "id": 866,
+ "id": 873,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -79116,7 +79798,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 389,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L389"
}
],
"type": {
@@ -79125,7 +79807,7 @@
}
},
{
- "id": 849,
+ "id": 856,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -79135,12 +79817,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 372,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L372"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L372"
}
],
"type": {
"type": "reference",
- "target": 843,
+ "target": 850,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -79150,8 +79832,8 @@
{
"title": "Properties",
"children": [
- 857, 848, 850, 851, 861, 860, 871, 858, 853, 862, 870, 847, 867, 856, 868, 869, 864,
- 854, 855, 859, 863, 852, 865, 866, 849
+ 864, 855, 857, 858, 868, 867, 878, 865, 860, 869, 877, 854, 874, 863, 875, 876, 871,
+ 861, 862, 866, 870, 859, 872, 873, 856
]
}
],
@@ -79160,19 +79842,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 369,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L369"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L369"
}
]
},
{
- "id": 838,
+ "id": 845,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 839,
+ "id": 846,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -79192,7 +79874,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L357"
}
],
"type": {
@@ -79201,7 +79883,7 @@
}
},
{
- "id": 840,
+ "id": 847,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -79221,7 +79903,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L361"
}
],
"type": {
@@ -79236,7 +79918,7 @@
"groups": [
{
"title": "Properties",
- "children": [839, 840]
+ "children": [846, 847]
}
],
"sources": [
@@ -79244,12 +79926,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 353,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L353"
}
],
"indexSignatures": [
{
- "id": 841,
+ "id": 848,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -79259,12 +79941,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 362,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L362"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L362"
}
],
"parameters": [
{
- "id": 842,
+ "id": 849,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -79283,14 +79965,14 @@
]
},
{
- "id": 872,
+ "id": 879,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 877,
+ "id": 884,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -79326,7 +80008,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L426"
}
],
"type": {
@@ -79335,7 +80017,7 @@
}
},
{
- "id": 873,
+ "id": 880,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -79355,7 +80037,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 401,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L401"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401"
}
],
"type": {
@@ -79364,7 +80046,7 @@
}
},
{
- "id": 876,
+ "id": 883,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -79384,7 +80066,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 418,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418"
}
],
"type": {
@@ -79393,7 +80075,7 @@
}
},
{
- "id": 875,
+ "id": 882,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -79413,7 +80095,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411"
}
],
"type": {
@@ -79422,7 +80104,7 @@
}
},
{
- "id": 874,
+ "id": 881,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -79442,7 +80124,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -79454,7 +80136,7 @@
"groups": [
{
"title": "Properties",
- "children": [877, 873, 876, 875, 874]
+ "children": [884, 880, 883, 882, 881]
}
],
"sources": [
@@ -79462,19 +80144,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 397,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L397"
}
]
},
{
- "id": 815,
+ "id": 822,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 824,
+ "id": 831,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -79486,7 +80168,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 303,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L303"
}
],
"type": {
@@ -79495,7 +80177,7 @@
}
},
{
- "id": 816,
+ "id": 823,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -79505,7 +80187,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 296,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L296"
}
],
"type": {
@@ -79514,7 +80196,7 @@
}
},
{
- "id": 818,
+ "id": 825,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -79526,13 +80208,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 298,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 819,
+ "id": 826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -79542,12 +80224,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 298,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298"
}
],
"indexSignatures": [
{
- "id": 820,
+ "id": 827,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -79557,12 +80239,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 299,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L299"
}
],
"parameters": [
{
- "id": 821,
+ "id": 828,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -79583,7 +80265,7 @@
}
},
{
- "id": 822,
+ "id": 829,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -79593,7 +80275,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 301,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L301"
}
],
"type": {
@@ -79602,7 +80284,7 @@
}
},
{
- "id": 825,
+ "id": 832,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -79614,7 +80296,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L304"
}
],
"type": {
@@ -79623,7 +80305,7 @@
}
},
{
- "id": 823,
+ "id": 830,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -79633,7 +80315,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 302,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L302"
}
],
"type": {
@@ -79642,7 +80324,7 @@
}
},
{
- "id": 826,
+ "id": 833,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -79654,7 +80336,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 305,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L305"
}
],
"type": {
@@ -79663,7 +80345,7 @@
}
},
{
- "id": 817,
+ "id": 824,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -79673,7 +80355,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L297"
}
],
"type": {
@@ -79685,7 +80367,7 @@
"groups": [
{
"title": "Properties",
- "children": [824, 816, 818, 822, 825, 823, 826, 817]
+ "children": [831, 823, 825, 829, 832, 830, 833, 824]
}
],
"sources": [
@@ -79693,12 +80375,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 295,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L295"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L295"
}
]
},
{
- "id": 843,
+ "id": 850,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -79708,12 +80390,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 365,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L365"
}
],
"indexSignatures": [
{
- "id": 844,
+ "id": 851,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -79723,12 +80405,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 366,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L366"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L366"
}
],
"parameters": [
{
- "id": 845,
+ "id": 852,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -79747,14 +80429,14 @@
]
},
{
- "id": 1021,
+ "id": 1028,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1022,
+ "id": 1029,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -79772,7 +80454,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 733,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L733"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L733"
}
],
"type": {
@@ -79781,7 +80463,7 @@
}
},
{
- "id": 1025,
+ "id": 1032,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -79793,20 +80475,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 738,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L738"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1026,
+ "id": 1033,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1028,
+ "id": 1035,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -79832,7 +80514,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 746,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L746"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L746"
}
],
"type": {
@@ -79841,7 +80523,7 @@
}
},
{
- "id": 1027,
+ "id": 1034,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -79861,7 +80543,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 740,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L740"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L740"
}
],
"type": {
@@ -79873,7 +80555,7 @@
"groups": [
{
"title": "Properties",
- "children": [1028, 1027]
+ "children": [1035, 1034]
}
],
"sources": [
@@ -79881,14 +80563,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 738,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L738"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738"
}
]
}
}
},
{
- "id": 1023,
+ "id": 1030,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -79906,7 +80588,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 735,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L735"
}
],
"type": {
@@ -79915,7 +80597,7 @@
}
},
{
- "id": 1024,
+ "id": 1031,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -79933,12 +80615,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 737,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L737"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L737"
}
],
"type": {
"type": "reference",
- "target": 1033,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -79947,7 +80629,7 @@
"groups": [
{
"title": "Properties",
- "children": [1022, 1025, 1023, 1024]
+ "children": [1029, 1032, 1030, 1031]
}
],
"sources": [
@@ -79955,19 +80637,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 731,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L731"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L731"
}
]
},
{
- "id": 1013,
+ "id": 1020,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1017,
+ "id": 1024,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -79979,20 +80661,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 719,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1018,
+ "id": 1025,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1020,
+ "id": 1027,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -80018,7 +80700,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 728,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L728"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L728"
}
],
"type": {
@@ -80027,7 +80709,7 @@
}
},
{
- "id": 1019,
+ "id": 1026,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -80047,7 +80729,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 721,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L721"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L721"
}
],
"type": {
@@ -80059,7 +80741,7 @@
"groups": [
{
"title": "Properties",
- "children": [1020, 1019]
+ "children": [1027, 1026]
}
],
"sources": [
@@ -80067,14 +80749,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 719,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719"
}
]
}
}
},
{
- "id": 1014,
+ "id": 1021,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -80092,7 +80774,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 714,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L714"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L714"
}
],
"type": {
@@ -80101,7 +80783,7 @@
}
},
{
- "id": 1015,
+ "id": 1022,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -80119,7 +80801,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 716,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L716"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L716"
}
],
"type": {
@@ -80128,7 +80810,7 @@
}
},
{
- "id": 1016,
+ "id": 1023,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -80146,12 +80828,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 718,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L718"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L718"
}
],
"type": {
"type": "reference",
- "target": 1032,
+ "target": 1039,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -80160,7 +80842,7 @@
"groups": [
{
"title": "Properties",
- "children": [1017, 1014, 1015, 1016]
+ "children": [1024, 1021, 1022, 1023]
}
],
"sources": [
@@ -80168,19 +80850,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 712,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L712"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L712"
}
]
},
{
- "id": 1029,
+ "id": 1036,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1030,
+ "id": 1037,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -80198,7 +80880,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 752,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L752"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L752"
}
],
"type": {
@@ -80207,7 +80889,7 @@
}
},
{
- "id": 1031,
+ "id": 1038,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -80225,12 +80907,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 755,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L755"
}
],
"type": {
"type": "reference",
- "target": 1033,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -80239,7 +80921,7 @@
"groups": [
{
"title": "Properties",
- "children": [1030, 1031]
+ "children": [1037, 1038]
}
],
"sources": [
@@ -80247,12 +80929,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 750,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L750"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L750"
}
]
},
{
- "id": 810,
+ "id": 817,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -80262,7 +80944,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 274,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274"
}
],
"type": {
@@ -80298,7 +80980,7 @@
{
"type": "reflection",
"declaration": {
- "id": 811,
+ "id": 818,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -80308,7 +80990,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 274,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274"
}
]
}
@@ -80319,7 +81001,7 @@
}
},
{
- "id": 699,
+ "id": 706,
"name": "AuthChangeEvent",
"variant": "declaration",
"kind": 2097152,
@@ -80329,7 +81011,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 44,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -80361,7 +81043,7 @@
},
{
"type": "reference",
- "target": 698,
+ "target": 705,
"name": "AuthChangeEventMFA",
"package": "@supabase/auth-js"
}
@@ -80369,7 +81051,7 @@
}
},
{
- "id": 698,
+ "id": 705,
"name": "AuthChangeEventMFA",
"variant": "declaration",
"kind": 2097152,
@@ -80379,7 +81061,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 42,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L42"
}
],
"type": {
@@ -80388,7 +81070,7 @@
}
},
{
- "id": 1142,
+ "id": 1149,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -80398,7 +81080,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1144,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1144"
}
],
"type": {
@@ -80416,7 +81098,7 @@
}
},
{
- "id": 937,
+ "id": 944,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -80426,7 +81108,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 593,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L593"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L593"
}
],
"type": {
@@ -80444,7 +81126,7 @@
}
},
{
- "id": 1268,
+ "id": 1275,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -80463,20 +81145,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1254,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1269,
+ "id": 1276,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1270,
+ "id": 1277,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -80494,7 +81176,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1256"
}
],
"type": {
@@ -80503,7 +81185,7 @@
}
},
{
- "id": 1271,
+ "id": 1278,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -80521,7 +81203,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1259"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1259"
}
],
"type": {
@@ -80533,7 +81215,7 @@
"groups": [
{
"title": "Properties",
- "children": [1270, 1271]
+ "children": [1277, 1278]
}
],
"sources": [
@@ -80541,14 +81223,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1254,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254"
}
]
}
}
},
{
- "id": 1265,
+ "id": 1272,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -80567,24 +81249,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1247,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1266,
+ "id": 1273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1267,
+ "id": 1274,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -80602,7 +81284,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1249,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1249"
}
],
"type": {
@@ -80614,7 +81296,7 @@
"groups": [
{
"title": "Properties",
- "children": [1267]
+ "children": [1274]
}
],
"sources": [
@@ -80622,7 +81304,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1247,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247"
}
]
}
@@ -80633,7 +81315,7 @@
}
},
{
- "id": 1275,
+ "id": 1282,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -80652,20 +81334,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1273,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1273"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1276,
+ "id": 1283,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1277,
+ "id": 1284,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -80683,7 +81365,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1275,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1275"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1275"
}
],
"type": {
@@ -80695,7 +81377,7 @@
"groups": [
{
"title": "Properties",
- "children": [1277]
+ "children": [1284]
}
],
"sources": [
@@ -80703,14 +81385,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1273,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1273"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273"
}
]
}
}
},
{
- "id": 1272,
+ "id": 1279,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -80729,24 +81411,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1265,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1273,
+ "id": 1280,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1274,
+ "id": 1281,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -80764,14 +81446,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1267"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1267"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 828,
+ "target": 835,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -80781,7 +81463,7 @@
"groups": [
{
"title": "Properties",
- "children": [1274]
+ "children": [1281]
}
],
"sources": [
@@ -80789,7 +81471,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1265,
"character": 60,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265"
}
]
}
@@ -80800,7 +81482,7 @@
}
},
{
- "id": 1133,
+ "id": 1140,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -80810,16 +81492,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1074,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1074"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1074"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -80860,7 +81542,7 @@
}
},
{
- "id": 1137,
+ "id": 1144,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -80870,7 +81552,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1126,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1126"
}
],
"type": {
@@ -80878,19 +81560,19 @@
"types": [
{
"type": "reference",
- "target": 1132,
+ "target": 1139,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1133,
+ "target": 1140,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1134,
+ "target": 1141,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -80898,7 +81580,7 @@
}
},
{
- "id": 1132,
+ "id": 1139,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -80908,16 +81590,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1066,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1066"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1066"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -80958,7 +81640,7 @@
}
},
{
- "id": 1134,
+ "id": 1141,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -80989,16 +81671,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1095,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1095"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1095"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -81039,7 +81721,7 @@
}
},
{
- "id": 1135,
+ "id": 1142,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -81057,12 +81739,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1115,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1115"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -81099,7 +81781,7 @@
}
},
{
- "id": 1136,
+ "id": 1143,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -81117,16 +81799,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1123,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1123"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1135,
+ "target": 1142,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -81136,7 +81818,7 @@
}
},
{
- "id": 1310,
+ "id": 1317,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -81146,16 +81828,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1429,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1429"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -81196,7 +81878,7 @@
}
},
{
- "id": 1128,
+ "id": 1135,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -81206,7 +81888,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1041,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1041"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1041"
}
],
"type": {
@@ -81214,19 +81896,19 @@
"types": [
{
"type": "reference",
- "target": 1309,
+ "target": 1316,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1310,
+ "target": 1317,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1311,
+ "target": 1318,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -81234,7 +81916,7 @@
}
},
{
- "id": 1309,
+ "id": 1316,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -81244,16 +81926,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1420,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1420"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1420"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -81294,7 +81976,7 @@
}
},
{
- "id": 1311,
+ "id": 1318,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -81325,16 +82007,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1442,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1442"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -81375,7 +82057,7 @@
}
},
{
- "id": 1143,
+ "id": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -81385,24 +82067,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1146,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1144,
+ "id": 1151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1147,
+ "id": 1154,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -81420,21 +82102,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1163"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1163"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 812,
+ "target": 819,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1145,
+ "id": 1152,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -81452,7 +82134,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1148"
}
],
"type": {
@@ -81460,7 +82142,7 @@
"types": [
{
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -81472,7 +82154,7 @@
}
},
{
- "id": 1146,
+ "id": 1153,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -81492,7 +82174,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1169
+ "target": 1176
}
]
}
@@ -81503,7 +82185,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1156,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1156"
}
],
"type": {
@@ -81511,7 +82193,7 @@
"types": [
{
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -81526,7 +82208,7 @@
"groups": [
{
"title": "Properties",
- "children": [1147, 1145, 1146]
+ "children": [1154, 1152, 1153]
}
],
"sources": [
@@ -81534,7 +82216,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1146,
"character": 74,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146"
}
]
}
@@ -81545,7 +82227,7 @@
}
},
{
- "id": 1138,
+ "id": 1145,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -81563,12 +82245,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1132,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1132"
}
],
"typeParameters": [
{
- "id": 1141,
+ "id": 1148,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -81603,7 +82285,7 @@
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "intersection",
@@ -81611,14 +82293,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1139,
+ "id": 1146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1140,
+ "id": 1147,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -81636,18 +82318,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1136,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1136"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "reference",
- "target": 828,
+ "target": 835,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -81661,7 +82343,7 @@
"groups": [
{
"title": "Properties",
- "children": [1140]
+ "children": [1147]
}
],
"sources": [
@@ -81669,7 +82351,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1134,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1134"
}
]
}
@@ -81685,7 +82367,7 @@
},
"objectType": {
"type": "reference",
- "target": 1141,
+ "target": 1148,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -81695,11 +82377,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "reference",
- "target": 828,
+ "target": 835,
"typeArguments": [
{
"type": "reference",
@@ -81733,7 +82415,7 @@
}
},
{
- "id": 1129,
+ "id": 1136,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -81743,24 +82425,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1046,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1046"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1130,
+ "id": 1137,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1131,
+ "id": 1138,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -81778,7 +82460,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1048,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1048"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1048"
}
],
"type": {
@@ -81790,7 +82472,7 @@
"groups": [
{
"title": "Properties",
- "children": [1131]
+ "children": [1138]
}
],
"sources": [
@@ -81798,7 +82480,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1046,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1046"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046"
}
]
}
@@ -81809,7 +82491,7 @@
}
},
{
- "id": 1127,
+ "id": 1134,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -81827,16 +82509,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1039,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1039"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1039"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1120,
+ "target": 1127,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -81846,7 +82528,7 @@
}
},
{
- "id": 1120,
+ "id": 1127,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -81864,20 +82546,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1018,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1018"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1121,
+ "id": 1128,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1122,
+ "id": 1129,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -81895,7 +82577,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1020,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1020"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1020"
}
],
"type": {
@@ -81904,7 +82586,7 @@
}
},
{
- "id": 1124,
+ "id": 1131,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -81922,7 +82604,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1026,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1026"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1026"
}
],
"type": {
@@ -81931,7 +82613,7 @@
}
},
{
- "id": 1125,
+ "id": 1132,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -81949,7 +82631,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1029,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1029"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1029"
}
],
"type": {
@@ -81958,7 +82640,7 @@
}
},
{
- "id": 1123,
+ "id": 1130,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -81984,7 +82666,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1023,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1023"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1023"
}
],
"type": {
@@ -81993,7 +82675,7 @@
}
},
{
- "id": 1126,
+ "id": 1133,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -82011,12 +82693,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1032,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1032"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1032"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -82025,7 +82707,7 @@
"groups": [
{
"title": "Properties",
- "children": [1122, 1124, 1125, 1123, 1126]
+ "children": [1129, 1131, 1132, 1130, 1133]
}
],
"sources": [
@@ -82033,14 +82715,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1018,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1018"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018"
}
]
}
}
},
{
- "id": 1443,
+ "id": 1450,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -82058,16 +82740,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1713,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1713"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1713"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1433,
+ "target": 1440,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
}
@@ -82077,7 +82759,7 @@
}
},
{
- "id": 1444,
+ "id": 1451,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -82095,24 +82777,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1719,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1445,
+ "id": 1452,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1446,
+ "id": 1453,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -82130,7 +82812,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1721,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1721"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1721"
}
],
"type": {
@@ -82142,7 +82824,7 @@
"groups": [
{
"title": "Properties",
- "children": [1446]
+ "children": [1453]
}
],
"sources": [
@@ -82150,7 +82832,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1719,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719"
}
]
}
@@ -82161,7 +82843,96 @@
}
},
{
- "id": 768,
+ "id": 1459,
+ "name": "AuthOAuthGrantsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for listing user's OAuth grants.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1741,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1741"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 749,
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1454,
+ "name": "OAuthGrant",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1460,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for revoking an OAuth grant.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1747,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1747"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 749,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1461,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1747,
+ "character": 57,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1747"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 775,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -82184,24 +82955,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 178,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 769,
+ "id": 776,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 772,
+ "id": 779,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -82213,7 +82984,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -82231,7 +83002,7 @@
}
},
{
- "id": 771,
+ "id": 778,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -82241,7 +83012,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L180"
}
],
"type": {
@@ -82250,7 +83021,7 @@
}
},
{
- "id": 770,
+ "id": 777,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -82260,7 +83031,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L179"
}
],
"type": {
@@ -82272,7 +83043,7 @@
"groups": [
{
"title": "Properties",
- "children": [772, 771, 770]
+ "children": [779, 778, 777]
}
],
"sources": [
@@ -82280,7 +83051,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 178,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178"
}
]
}
@@ -82291,7 +83062,7 @@
}
},
{
- "id": 759,
+ "id": 766,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -82301,24 +83072,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 162,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 760,
+ "id": 767,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 762,
+ "id": 769,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -82328,7 +83099,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L164"
}
],
"type": {
@@ -82336,7 +83107,7 @@
"types": [
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -82348,7 +83119,7 @@
}
},
{
- "id": 761,
+ "id": 768,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -82358,7 +83129,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L163"
}
],
"type": {
@@ -82366,7 +83137,7 @@
"types": [
{
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -82381,7 +83152,7 @@
"groups": [
{
"title": "Properties",
- "children": [762, 761]
+ "children": [769, 768]
}
],
"sources": [
@@ -82389,7 +83160,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 162,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162"
}
]
}
@@ -82400,7 +83171,7 @@
}
},
{
- "id": 763,
+ "id": 770,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -82410,24 +83181,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 167,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 764,
+ "id": 771,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 766,
+ "id": 773,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -82437,7 +83208,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L169"
}
],
"type": {
@@ -82445,7 +83216,7 @@
"types": [
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -82457,7 +83228,7 @@
}
},
{
- "id": 765,
+ "id": 772,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -82467,7 +83238,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 168,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L168"
}
],
"type": {
@@ -82475,7 +83246,7 @@
"types": [
{
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -82487,7 +83258,7 @@
}
},
{
- "id": 767,
+ "id": 774,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -82499,7 +83270,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 170,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L170"
}
],
"type": {
@@ -82507,7 +83278,7 @@
"types": [
{
"type": "reference",
- "target": 733,
+ "target": 740,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -82522,7 +83293,7 @@
"groups": [
{
"title": "Properties",
- "children": [766, 765, 767]
+ "children": [773, 772, 774]
}
],
"sources": [
@@ -82530,7 +83301,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 167,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167"
}
]
}
@@ -82541,7 +83312,7 @@
}
},
{
- "id": 773,
+ "id": 780,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -82551,24 +83322,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 184,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 774,
+ "id": 781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 776,
+ "id": 783,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -82578,18 +83349,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L186"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 775,
+ "id": 782,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -82599,12 +83370,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 185,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L185"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -82613,7 +83384,7 @@
"groups": [
{
"title": "Properties",
- "children": [776, 775]
+ "children": [783, 782]
}
],
"sources": [
@@ -82621,7 +83392,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 184,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184"
}
]
}
@@ -82632,7 +83403,7 @@
}
},
{
- "id": 777,
+ "id": 784,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -82642,24 +83413,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 189,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 778,
+ "id": 785,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 780,
+ "id": 787,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -82669,18 +83440,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 191,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L191"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 779,
+ "id": 786,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -82690,18 +83461,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L190"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
},
{
- "id": 781,
+ "id": 788,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -82713,12 +83484,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 192,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L192"
}
],
"type": {
"type": "reference",
- "target": 733,
+ "target": 740,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -82727,7 +83498,7 @@
"groups": [
{
"title": "Properties",
- "children": [780, 779, 781]
+ "children": [787, 786, 788]
}
],
"sources": [
@@ -82735,7 +83506,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 189,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189"
}
]
}
@@ -82746,7 +83517,7 @@
}
},
{
- "id": 1291,
+ "id": 1298,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -82756,16 +83527,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1325,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1325"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1325"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -82775,7 +83546,7 @@
}
},
{
- "id": 1376,
+ "id": 1383,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -82793,20 +83564,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1565,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1565"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1377,
+ "id": 1384,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1378,
+ "id": 1385,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -82824,7 +83595,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1567,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1567"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1567"
}
],
"type": {
@@ -82833,7 +83604,7 @@
}
},
{
- "id": 1379,
+ "id": 1386,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -82853,7 +83624,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1569,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1569"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1569"
}
],
"type": {
@@ -82862,7 +83633,7 @@
}
},
{
- "id": 1381,
+ "id": 1388,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -82882,21 +83653,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1573,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1573"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1573"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1356,
+ "target": 1363,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1380,
+ "id": 1387,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -82914,7 +83685,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1571"
}
],
"type": {
@@ -82926,7 +83697,7 @@
}
},
{
- "id": 1382,
+ "id": 1389,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -82946,21 +83717,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1575,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1575"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1575"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1357,
+ "target": 1364,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1383,
+ "id": 1390,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -82980,7 +83751,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1577,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1577"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1577"
}
],
"type": {
@@ -82992,7 +83763,7 @@
"groups": [
{
"title": "Properties",
- "children": [1378, 1379, 1381, 1380, 1382, 1383]
+ "children": [1385, 1386, 1388, 1387, 1389, 1390]
}
],
"sources": [
@@ -83000,14 +83771,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1565,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1565"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565"
}
]
}
}
},
{
- "id": 1033,
+ "id": 1040,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -83017,7 +83788,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 759,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L759"
}
],
"type": {
@@ -83051,7 +83822,7 @@
}
},
{
- "id": 993,
+ "id": 1000,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -83061,7 +83832,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 670,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L670"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L670"
}
],
"type": {
@@ -83075,7 +83846,7 @@
}
},
{
- "id": 994,
+ "id": 1001,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -83085,7 +83856,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 672,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L672"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L672"
}
],
"type": {
@@ -83094,14 +83865,14 @@
{
"type": "reflection",
"declaration": {
- "id": 995,
+ "id": 1002,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 996,
+ "id": 1003,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -83111,7 +83882,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 674,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L674"
}
],
"type": {
@@ -83120,7 +83891,7 @@
}
},
{
- "id": 999,
+ "id": 1006,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -83132,20 +83903,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 682,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L682"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1000,
+ "id": 1007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1002,
+ "id": 1009,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -83165,7 +83936,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 687,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L687"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L687"
}
],
"type": {
@@ -83174,7 +83945,7 @@
}
},
{
- "id": 1003,
+ "id": 1010,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -83186,7 +83957,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 689,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L689"
}
],
"type": {
@@ -83243,7 +84014,7 @@
}
},
{
- "id": 1001,
+ "id": 1008,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -83263,7 +84034,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 684,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L684"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L684"
}
],
"type": {
@@ -83275,7 +84046,7 @@
"groups": [
{
"title": "Properties",
- "children": [1002, 1003, 1001]
+ "children": [1009, 1010, 1008]
}
],
"sources": [
@@ -83283,14 +84054,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 682,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L682"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682"
}
]
}
}
},
{
- "id": 998,
+ "id": 1005,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -83310,7 +84081,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 680,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L680"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L680"
}
],
"type": {
@@ -83319,7 +84090,7 @@
}
},
{
- "id": 997,
+ "id": 1004,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -83347,12 +84118,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 677,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L677"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"type": {
"type": "reference",
- "target": 993,
+ "target": 1000,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -83361,7 +84132,7 @@
"groups": [
{
"title": "Properties",
- "children": [996, 999, 998, 997]
+ "children": [1003, 1006, 1005, 1004]
}
],
"sources": [
@@ -83369,7 +84140,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 673,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L673"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L673"
}
]
}
@@ -83377,14 +84148,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1004,
+ "id": 1011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1005,
+ "id": 1012,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -83394,7 +84165,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 695,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L695"
}
],
"type": {
@@ -83403,7 +84174,7 @@
}
},
{
- "id": 1006,
+ "id": 1013,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -83445,7 +84216,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 698,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L698"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L698"
}
],
"type": {
@@ -83454,7 +84225,7 @@
}
},
{
- "id": 1008,
+ "id": 1015,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -83466,20 +84237,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 703,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L703"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1009,
+ "id": 1016,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1010,
+ "id": 1017,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -83499,7 +84270,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 705,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L705"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L705"
}
],
"type": {
@@ -83511,7 +84282,7 @@
"groups": [
{
"title": "Properties",
- "children": [1010]
+ "children": [1017]
}
],
"sources": [
@@ -83519,14 +84290,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 703,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L703"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703"
}
]
}
}
},
{
- "id": 1007,
+ "id": 1014,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -83544,7 +84315,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 701,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L701"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L701"
}
],
"type": {
@@ -83561,7 +84332,7 @@
"groups": [
{
"title": "Properties",
- "children": [1005, 1006, 1008, 1007]
+ "children": [1012, 1013, 1015, 1014]
}
],
"sources": [
@@ -83569,7 +84340,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 694,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L694"
}
]
}
@@ -83578,7 +84349,7 @@
}
},
{
- "id": 828,
+ "id": 835,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -83602,7 +84373,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1149
+ "target": 1156
},
{
"kind": "text",
@@ -83616,7 +84387,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1260
+ "target": 1267
},
{
"kind": "text",
@@ -83644,31 +84415,31 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 329,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L329"
}
],
"typeParameters": [
{
- "id": 836,
+ "id": 843,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 827,
+ "target": 834,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 827,
+ "target": 834,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 837,
+ "id": 844,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -83707,14 +84478,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 829,
+ "id": 836,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 834,
+ "id": 841,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -83724,7 +84495,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 349,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L349"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L349"
}
],
"type": {
@@ -83733,7 +84504,7 @@
}
},
{
- "id": 832,
+ "id": 839,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -83767,19 +84538,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 342,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L342"
}
],
"type": {
"type": "reference",
- "target": 836,
+ "target": 843,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 831,
+ "id": 838,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -83799,7 +84570,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 337,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L337"
}
],
"type": {
@@ -83808,7 +84579,7 @@
}
},
{
- "id": 830,
+ "id": 837,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -83826,7 +84597,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 334,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L334"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L334"
}
],
"type": {
@@ -83835,7 +84606,7 @@
}
},
{
- "id": 833,
+ "id": 840,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -83881,19 +84652,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 347,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L347"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L347"
}
],
"type": {
"type": "reference",
- "target": 837,
+ "target": 844,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 835,
+ "id": 842,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -83903,7 +84674,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 350,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L350"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L350"
}
],
"type": {
@@ -83915,7 +84686,7 @@
"groups": [
{
"title": "Properties",
- "children": [834, 832, 831, 830, 833, 835]
+ "children": [841, 839, 838, 837, 840, 842]
}
],
"sources": [
@@ -83923,14 +84694,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 332,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L332"
}
]
}
}
},
{
- "id": 827,
+ "id": 834,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -83964,7 +84735,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 313,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L313"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L313"
}
],
"type": {
@@ -83989,7 +84760,7 @@
}
},
{
- "id": 1079,
+ "id": 1086,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -83999,20 +84770,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 838,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L838"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1080,
+ "id": 1087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1082,
+ "id": 1089,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -84030,7 +84801,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 841,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L841"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L841"
}
],
"type": {
@@ -84039,7 +84810,7 @@
}
},
{
- "id": 1083,
+ "id": 1090,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -84057,7 +84828,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 845,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L845"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L845"
}
],
"type": {
@@ -84066,7 +84837,7 @@
}
},
{
- "id": 1084,
+ "id": 1091,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -84078,7 +84849,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 846,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L846"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L846"
}
],
"type": {
@@ -84090,7 +84861,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -84104,7 +84875,7 @@
}
},
{
- "id": 1081,
+ "id": 1088,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -84114,7 +84885,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 839,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L839"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L839"
}
],
"type": {
@@ -84135,7 +84906,7 @@
"groups": [
{
"title": "Properties",
- "children": [1082, 1083, 1084, 1081]
+ "children": [1089, 1090, 1091, 1088]
}
],
"sources": [
@@ -84143,14 +84914,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 838,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L838"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838"
}
]
}
}
},
{
- "id": 1069,
+ "id": 1076,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -84160,20 +84931,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 824,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L824"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1070,
+ "id": 1077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1072,
+ "id": 1079,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -84191,7 +84962,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 827,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L827"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L827"
}
],
"type": {
@@ -84200,7 +84971,7 @@
}
},
{
- "id": 1073,
+ "id": 1080,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -84212,7 +84983,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 828,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L828"
}
],
"type": {
@@ -84224,7 +84995,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -84247,7 +85018,7 @@
}
},
{
- "id": 1071,
+ "id": 1078,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -84257,7 +85028,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 825,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L825"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L825"
}
],
"type": {
@@ -84278,7 +85049,7 @@
"groups": [
{
"title": "Properties",
- "children": [1072, 1073, 1071]
+ "children": [1079, 1080, 1078]
}
],
"sources": [
@@ -84286,14 +85057,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 824,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L824"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824"
}
]
}
}
},
{
- "id": 1088,
+ "id": 1095,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -84303,7 +85074,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 860,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L860"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L860"
}
],
"type": {
@@ -84311,25 +85082,25 @@
"types": [
{
"type": "reference",
- "target": 1063,
+ "target": 1070,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1069,
+ "target": 1076,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1074,
+ "target": 1081,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1079,
+ "target": 1086,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -84337,7 +85108,7 @@
}
},
{
- "id": 1093,
+ "id": 1100,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -84355,20 +85126,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 872,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L872"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1094,
+ "id": 1101,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1095,
+ "id": 1102,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -84386,7 +85157,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 877,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L877"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L877"
}
],
"type": {
@@ -84395,7 +85166,7 @@
}
},
{
- "id": 1096,
+ "id": 1103,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -84413,7 +85184,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 882,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L882"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L882"
}
],
"type": {
@@ -84422,7 +85193,7 @@
}
},
{
- "id": 1097,
+ "id": 1104,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -84440,7 +85211,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 886,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L886"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L886"
}
],
"type": {
@@ -84449,7 +85220,7 @@
}
},
{
- "id": 1098,
+ "id": 1105,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -84467,7 +85238,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 888,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L888"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L888"
}
],
"type": {
@@ -84476,7 +85247,7 @@
}
},
{
- "id": 1099,
+ "id": 1106,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -84494,12 +85265,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 890,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L890"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L890"
}
],
"type": {
"type": "reference",
- "target": 1100,
+ "target": 1107,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -84508,7 +85279,7 @@
"groups": [
{
"title": "Properties",
- "children": [1095, 1096, 1097, 1098, 1099]
+ "children": [1102, 1103, 1104, 1105, 1106]
}
],
"sources": [
@@ -84516,14 +85287,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 872,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L872"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872"
}
]
}
}
},
{
- "id": 1089,
+ "id": 1096,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -84533,24 +85304,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 866,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L866"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1090,
+ "id": 1097,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1091,
+ "id": 1098,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -84560,18 +85331,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 867,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L867"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L867"
}
],
"type": {
"type": "reference",
- "target": 1093,
+ "target": 1100,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1092,
+ "id": 1099,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -84581,12 +85352,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 868,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L868"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L868"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -84595,7 +85366,7 @@
"groups": [
{
"title": "Properties",
- "children": [1091, 1092]
+ "children": [1098, 1099]
}
],
"sources": [
@@ -84603,7 +85374,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 866,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L866"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866"
}
]
}
@@ -84614,7 +85385,7 @@
}
},
{
- "id": 1100,
+ "id": 1107,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -84624,7 +85395,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 893,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L893"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L893"
}
],
"type": {
@@ -84658,7 +85429,7 @@
}
},
{
- "id": 1074,
+ "id": 1081,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -84668,20 +85439,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 831,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L831"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1075,
+ "id": 1082,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1077,
+ "id": 1084,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -84699,7 +85470,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 834,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L834"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L834"
}
],
"type": {
@@ -84708,7 +85479,7 @@
}
},
{
- "id": 1078,
+ "id": 1085,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -84720,7 +85491,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 835,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L835"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L835"
}
],
"type": {
@@ -84732,7 +85503,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -84746,7 +85517,7 @@
}
},
{
- "id": 1076,
+ "id": 1083,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -84756,7 +85527,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 832,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L832"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L832"
}
],
"type": {
@@ -84768,7 +85539,7 @@
"groups": [
{
"title": "Properties",
- "children": [1077, 1078, 1076]
+ "children": [1084, 1085, 1083]
}
],
"sources": [
@@ -84776,14 +85547,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 831,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L831"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831"
}
]
}
}
},
{
- "id": 1063,
+ "id": 1070,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -84793,20 +85564,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 817,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1064,
+ "id": 1071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1066,
+ "id": 1073,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -84816,7 +85587,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 819,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L819"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L819"
}
],
"type": {
@@ -84825,7 +85596,7 @@
}
},
{
- "id": 1068,
+ "id": 1075,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -84837,7 +85608,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 821,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L821"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L821"
}
],
"type": {
@@ -84849,7 +85620,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -84872,7 +85643,7 @@
}
},
{
- "id": 1067,
+ "id": 1074,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -84882,7 +85653,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 820,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L820"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L820"
}
],
"type": {
@@ -84891,7 +85662,7 @@
}
},
{
- "id": 1065,
+ "id": 1072,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -84901,7 +85672,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 818,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L818"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L818"
}
],
"type": {
@@ -84913,7 +85684,7 @@
"groups": [
{
"title": "Properties",
- "children": [1066, 1068, 1067, 1065]
+ "children": [1073, 1075, 1074, 1072]
}
],
"sources": [
@@ -84921,14 +85692,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 817,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817"
}
]
}
}
},
{
- "id": 709,
+ "id": 716,
"name": "GoTrueClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -84938,20 +85709,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 70,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 710,
+ "id": 717,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 718,
+ "id": 725,
"name": "autoRefreshToken",
"variant": "declaration",
"kind": 1024,
@@ -84963,7 +85734,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L80"
}
],
"type": {
@@ -84972,7 +85743,7 @@
}
},
{
- "id": 724,
+ "id": 731,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -84984,7 +85755,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -84997,7 +85768,7 @@
{
"type": "reflection",
"declaration": {
- "id": 725,
+ "id": 732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -85007,19 +85778,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 98,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98"
}
],
"signatures": [
{
- "id": 726,
+ "id": 733,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 727,
+ "id": 734,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -85030,7 +85801,7 @@
}
},
{
- "id": 728,
+ "id": 735,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -85058,7 +85829,7 @@
}
},
{
- "id": 717,
+ "id": 724,
"name": "detectSessionInUrl",
"variant": "declaration",
"kind": 1024,
@@ -85070,7 +85841,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -85079,7 +85850,7 @@
}
},
{
- "id": 722,
+ "id": 729,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -85091,7 +85862,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -85105,7 +85876,7 @@
}
},
{
- "id": 723,
+ "id": 730,
"name": "flowType",
"variant": "declaration",
"kind": 1024,
@@ -85117,18 +85888,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L96"
}
],
"type": {
"type": "reference",
- "target": 937,
+ "target": 944,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
},
{
- "id": 730,
+ "id": 737,
"name": "hasCustomAuthorizationHeader",
"variant": "declaration",
"kind": 1024,
@@ -85149,7 +85920,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L109"
}
],
"type": {
@@ -85158,7 +85929,7 @@
}
},
{
- "id": 712,
+ "id": 719,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -85170,13 +85941,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 713,
+ "id": 720,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -85186,12 +85957,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"indexSignatures": [
{
- "id": 714,
+ "id": 721,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -85201,12 +85972,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"parameters": [
{
- "id": 715,
+ "id": 722,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -85227,7 +85998,7 @@
}
},
{
- "id": 729,
+ "id": 736,
"name": "lock",
"variant": "declaration",
"kind": 1024,
@@ -85248,18 +86019,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L104"
}
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 707,
"name": "LockFunc",
"package": "@supabase/auth-js"
}
},
{
- "id": 719,
+ "id": 726,
"name": "persistSession",
"variant": "declaration",
"kind": 1024,
@@ -85271,7 +86042,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L82"
}
],
"type": {
@@ -85280,7 +86051,7 @@
}
},
{
- "id": 720,
+ "id": 727,
"name": "storage",
"variant": "declaration",
"kind": 1024,
@@ -85292,18 +86063,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L84"
}
],
"type": {
"type": "reference",
- "target": 1285,
+ "target": 1292,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
},
{
- "id": 716,
+ "id": 723,
"name": "storageKey",
"variant": "declaration",
"kind": 1024,
@@ -85315,7 +86086,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L76"
}
],
"type": {
@@ -85324,7 +86095,7 @@
}
},
{
- "id": 731,
+ "id": 738,
"name": "throwOnError",
"variant": "declaration",
"kind": 1024,
@@ -85344,7 +86115,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L114"
}
],
"type": {
@@ -85353,7 +86124,7 @@
}
},
{
- "id": 711,
+ "id": 718,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -85365,7 +86136,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -85374,7 +86145,7 @@
}
},
{
- "id": 721,
+ "id": 728,
"name": "userStorage",
"variant": "declaration",
"kind": 1024,
@@ -85435,12 +86206,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L92"
}
],
"type": {
"type": "reference",
- "target": 1285,
+ "target": 1292,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -85449,7 +86220,7 @@
"groups": [
{
"title": "Properties",
- "children": [718, 724, 717, 722, 723, 730, 712, 729, 719, 720, 716, 731, 711, 721]
+ "children": [725, 731, 724, 729, 730, 737, 719, 736, 726, 727, 723, 738, 718, 728]
}
],
"sources": [
@@ -85457,14 +86228,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 70,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70"
}
]
}
}
},
{
- "id": 1288,
+ "id": 1295,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -85474,20 +86245,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1323,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1323"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1289,
+ "id": 1296,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1290,
+ "id": 1297,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -85497,7 +86268,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1323,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1323"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323"
}
],
"type": {
@@ -85505,7 +86276,7 @@
"types": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -85520,7 +86291,7 @@
"groups": [
{
"title": "Properties",
- "children": [1290]
+ "children": [1297]
}
],
"sources": [
@@ -85528,14 +86299,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1323,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1323"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323"
}
]
}
}
},
{
- "id": 1312,
+ "id": 1319,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -85545,20 +86316,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1446,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1313,
+ "id": 1320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1314,
+ "id": 1321,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -85568,7 +86339,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1447,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1447"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1447"
}
],
"type": {
@@ -85590,7 +86361,7 @@
}
},
{
- "id": 1315,
+ "id": 1322,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -85600,7 +86371,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1448,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1448"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1448"
}
],
"type": {
@@ -85609,7 +86380,7 @@
}
},
{
- "id": 1316,
+ "id": 1323,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -85619,7 +86390,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1449"
}
],
"type": {
@@ -85631,7 +86402,7 @@
"groups": [
{
"title": "Properties",
- "children": [1314, 1315, 1316]
+ "children": [1321, 1322, 1323]
}
],
"sources": [
@@ -85639,14 +86410,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1446,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446"
}
]
}
}
},
{
- "id": 700,
+ "id": 707,
"name": "LockFunc",
"variant": "declaration",
"kind": 2097152,
@@ -85673,13 +86444,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 701,
+ "id": 708,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -85689,19 +86460,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"signatures": [
{
- "id": 702,
+ "id": 709,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"typeParameters": [
{
- "id": 708,
+ "id": 715,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -85710,7 +86481,7 @@
],
"parameters": [
{
- "id": 703,
+ "id": 710,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -85729,7 +86500,7 @@
}
},
{
- "id": 704,
+ "id": 711,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -85756,7 +86527,7 @@
}
},
{
- "id": 705,
+ "id": 712,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -85772,7 +86543,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 706,
+ "id": 713,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -85782,12 +86553,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"signatures": [
{
- "id": 707,
+ "id": 714,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -85801,7 +86572,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 708,
+ "target": 715,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -85825,7 +86596,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 708,
+ "target": 715,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -85840,7 +86611,7 @@
}
},
{
- "id": 1119,
+ "id": 1126,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -85850,7 +86621,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1012,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1012"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1012"
}
],
"type": {
@@ -85864,7 +86635,7 @@
}
},
{
- "id": 1118,
+ "id": 1125,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -85874,7 +86645,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 999,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L999"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L999"
}
],
"type": {
@@ -85882,19 +86653,19 @@
"types": [
{
"type": "reference",
- "target": 1115,
+ "target": 1122,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1116,
+ "target": 1123,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1117,
+ "target": 1124,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -85902,7 +86673,7 @@
}
},
{
- "id": 1116,
+ "id": 1123,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -85912,12 +86683,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 976,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L976"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L976"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -85948,7 +86719,7 @@
}
},
{
- "id": 1115,
+ "id": 1122,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -85958,12 +86729,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 969,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L969"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L969"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "reference",
@@ -85980,7 +86751,7 @@
}
},
{
- "id": 1117,
+ "id": 1124,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -86011,12 +86782,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 995,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L995"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L995"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -86047,7 +86818,7 @@
}
},
{
- "id": 1101,
+ "id": 1108,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -86057,7 +86828,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 901,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L901"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L901"
}
],
"type": {
@@ -86065,19 +86836,19 @@
"types": [
{
"type": "reference",
- "target": 1306,
+ "target": 1313,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1307,
+ "target": 1314,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1308,
+ "target": 1315,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -86085,7 +86856,7 @@
}
},
{
- "id": 1307,
+ "id": 1314,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -86095,12 +86866,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1373,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1373"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1373"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -86137,7 +86908,7 @@
}
},
{
- "id": 1306,
+ "id": 1313,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -86147,12 +86918,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1367,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1367"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -86189,7 +86960,7 @@
}
},
{
- "id": 1308,
+ "id": 1315,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -86220,12 +86991,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1386,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1386"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -86262,7 +87033,7 @@
}
},
{
- "id": 1114,
+ "id": 1121,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -86272,7 +87043,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 967,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L967"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L967"
}
],
"type": {
@@ -86297,7 +87068,7 @@
}
},
{
- "id": 1102,
+ "id": 1109,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -86307,20 +87078,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 903,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1103,
+ "id": 1110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1104,
+ "id": 1111,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -86338,7 +87109,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 905,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L905"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L905"
}
],
"type": {
@@ -86350,7 +87121,7 @@
"groups": [
{
"title": "Properties",
- "children": [1104]
+ "children": [1111]
}
],
"sources": [
@@ -86358,14 +87129,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 903,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903"
}
]
}
}
},
{
- "id": 1113,
+ "id": 1120,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -86375,7 +87146,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 959,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L959"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L959"
}
],
"type": {
@@ -86383,19 +87154,19 @@
"types": [
{
"type": "reference",
- "target": 1105,
+ "target": 1112,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1106,
+ "target": 1113,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1111,
+ "target": 1118,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -86403,7 +87174,7 @@
}
},
{
- "id": 1106,
+ "id": 1113,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -86413,12 +87184,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 924,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L924"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L924"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -86449,7 +87220,7 @@
}
},
{
- "id": 1105,
+ "id": 1112,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -86459,12 +87230,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 920,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L920"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L920"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -86495,7 +87266,7 @@
}
},
{
- "id": 1107,
+ "id": 1114,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -86513,12 +87284,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 946,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L946"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946"
}
],
"typeParameters": [
{
- "id": 1110,
+ "id": 1117,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -86562,14 +87333,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1108,
+ "id": 1115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1109,
+ "id": 1116,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -86579,7 +87350,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 947,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L947"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947"
}
],
"type": {
@@ -86603,7 +87374,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1110,
+ "target": 1117,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -86619,7 +87390,7 @@
"groups": [
{
"title": "Properties",
- "children": [1109]
+ "children": [1116]
}
],
"sources": [
@@ -86627,14 +87398,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 946,
"character": 98,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L946"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946"
}
]
}
}
},
{
- "id": 1111,
+ "id": 1118,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -86665,12 +87436,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 956,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L956"
}
],
"typeParameters": [
{
- "id": 1112,
+ "id": 1119,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -86713,7 +87484,7 @@
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -86729,11 +87500,11 @@
},
{
"type": "reference",
- "target": 1107,
+ "target": 1114,
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1119,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -86750,7 +87521,7 @@
}
},
{
- "id": 1032,
+ "id": 1039,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -86760,7 +87531,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 758,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L758"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L758"
}
],
"type": {
@@ -86778,7 +87549,7 @@
}
},
{
- "id": 1427,
+ "id": 1434,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -86796,21 +87567,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1676,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1676"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1428,
+ "id": 1435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1429,
- "name": "client_id",
+ "id": 1436,
+ "name": "id",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -86827,7 +87598,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1678,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1678"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1678"
}
],
"type": {
@@ -86836,8 +87607,8 @@
}
},
{
- "id": 1430,
- "name": "client_name",
+ "id": 1439,
+ "name": "logo_uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -86845,16 +87616,16 @@
"summary": [
{
"kind": "text",
- "text": "Human-readable name of the OAuth client"
+ "text": "URI of the OAuth client's logo"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1680,
+ "line": 1684,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1680"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1684"
}
],
"type": {
@@ -86863,8 +87634,8 @@
}
},
{
- "id": 1431,
- "name": "client_uri",
+ "id": 1437,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -86872,16 +87643,16 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's website"
+ "text": "Human-readable name of the OAuth client"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1682,
+ "line": 1680,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1682"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1680"
}
],
"type": {
@@ -86890,8 +87661,8 @@
}
},
{
- "id": 1432,
- "name": "logo_uri",
+ "id": 1438,
+ "name": "uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -86899,16 +87670,16 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's logo"
+ "text": "URI of the OAuth client's website"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1684,
+ "line": 1682,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1684"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1682"
}
],
"type": {
@@ -86920,7 +87691,7 @@
"groups": [
{
"title": "Properties",
- "children": [1429, 1430, 1431, 1432]
+ "children": [1436, 1439, 1437, 1438]
}
],
"sources": [
@@ -86928,14 +87699,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1676,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1676"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676"
}
]
}
}
},
{
- "id": 1433,
+ "id": 1440,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -86953,20 +87724,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1691,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1691"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1434,
+ "id": 1441,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1435,
+ "id": 1442,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -86984,7 +87755,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1693,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1693"
}
],
"type": {
@@ -86993,7 +87764,7 @@
}
},
{
- "id": 1437,
+ "id": 1444,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -87011,18 +87782,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1697,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1697"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1697"
}
],
"type": {
"type": "reference",
- "target": 1427,
+ "target": 1434,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1436,
+ "id": 1443,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -87042,7 +87813,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1695,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1695"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1695"
}
],
"type": {
@@ -87051,7 +87822,7 @@
}
},
{
- "id": 1442,
+ "id": 1449,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -87069,7 +87840,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1706,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1706"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1706"
}
],
"type": {
@@ -87078,7 +87849,7 @@
}
},
{
- "id": 1438,
+ "id": 1445,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -87096,20 +87867,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1699,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1699"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1439,
+ "id": 1446,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1441,
+ "id": 1448,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -87127,7 +87898,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1703,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1703"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1703"
}
],
"type": {
@@ -87136,7 +87907,7 @@
}
},
{
- "id": 1440,
+ "id": 1447,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -87154,7 +87925,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1701,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1701"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1701"
}
],
"type": {
@@ -87166,7 +87937,7 @@
"groups": [
{
"title": "Properties",
- "children": [1441, 1440]
+ "children": [1448, 1447]
}
],
"sources": [
@@ -87174,7 +87945,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1699,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1699"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699"
}
]
}
@@ -87184,7 +87955,7 @@
"groups": [
{
"title": "Properties",
- "children": [1435, 1437, 1436, 1442, 1438]
+ "children": [1442, 1444, 1443, 1449, 1445]
}
],
"sources": [
@@ -87192,14 +87963,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1691,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1691"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691"
}
]
}
}
},
{
- "id": 1360,
+ "id": 1367,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -87217,20 +87988,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1530,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1361,
+ "id": 1368,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1362,
+ "id": 1369,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -87248,7 +88019,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1532"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1532"
}
],
"type": {
@@ -87257,7 +88028,7 @@
}
},
{
- "id": 1363,
+ "id": 1370,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -87275,7 +88046,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1534,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1534"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1534"
}
],
"type": {
@@ -87284,7 +88055,7 @@
}
},
{
- "id": 1364,
+ "id": 1371,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -87304,7 +88075,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1536"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1536"
}
],
"type": {
@@ -87313,7 +88084,7 @@
}
},
{
- "id": 1365,
+ "id": 1372,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -87331,18 +88102,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1538"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1538"
}
],
"type": {
"type": "reference",
- "target": 1358,
+ "target": 1365,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1368,
+ "id": 1375,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -87362,7 +88133,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1544,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1544"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1544"
}
],
"type": {
@@ -87371,7 +88142,7 @@
}
},
{
- "id": 1374,
+ "id": 1381,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -87389,7 +88160,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1556,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1556"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1556"
}
],
"type": {
@@ -87398,7 +88169,7 @@
}
},
{
- "id": 1371,
+ "id": 1378,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -87416,21 +88187,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1550,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1550"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1356,
+ "target": 1363,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1369,
+ "id": 1376,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -87450,7 +88221,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1546,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1546"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1546"
}
],
"type": {
@@ -87459,7 +88230,7 @@
}
},
{
- "id": 1370,
+ "id": 1377,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -87477,7 +88248,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1548,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1548"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1548"
}
],
"type": {
@@ -87489,7 +88260,7 @@
}
},
{
- "id": 1367,
+ "id": 1374,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -87507,18 +88278,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1542,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1542"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1542"
}
],
"type": {
"type": "reference",
- "target": 1359,
+ "target": 1366,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1372,
+ "id": 1379,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -87536,21 +88307,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1552,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1552"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1357,
+ "target": 1364,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1373,
+ "id": 1380,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -87570,7 +88341,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1554,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1554"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1554"
}
],
"type": {
@@ -87579,7 +88350,7 @@
}
},
{
- "id": 1366,
+ "id": 1373,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -87597,7 +88368,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1540"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1540"
}
],
"type": {
@@ -87606,7 +88377,7 @@
}
},
{
- "id": 1375,
+ "id": 1382,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -87624,7 +88395,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1558,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1558"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1558"
}
],
"type": {
@@ -87637,8 +88408,8 @@
{
"title": "Properties",
"children": [
- 1362, 1363, 1364, 1365, 1368, 1374, 1371, 1369, 1370, 1367, 1372, 1373, 1366,
- 1375
+ 1369, 1370, 1371, 1372, 1375, 1381, 1378, 1376, 1377, 1374, 1379, 1380, 1373,
+ 1382
]
}
],
@@ -87647,14 +88418,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1530,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530"
}
]
}
}
},
{
- "id": 1356,
+ "id": 1363,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -87672,7 +88443,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1506,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1506"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1506"
}
],
"type": {
@@ -87690,7 +88461,7 @@
}
},
{
- "id": 1392,
+ "id": 1399,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -87708,7 +88479,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1608,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1608"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1608"
}
],
"type": {
@@ -87717,14 +88488,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1393,
+ "id": 1400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1394,
+ "id": 1401,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -87734,7 +88505,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
],
"type": {
@@ -87743,14 +88514,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1395,
+ "id": 1402,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1397,
+ "id": 1404,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -87760,7 +88531,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
],
"type": {
@@ -87769,7 +88540,7 @@
}
},
{
- "id": 1396,
+ "id": 1403,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -87779,14 +88550,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1360,
+ "target": 1367,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -87796,7 +88567,7 @@
"groups": [
{
"title": "Properties",
- "children": [1397, 1396]
+ "children": [1404, 1403]
}
],
"sources": [
@@ -87804,14 +88575,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
]
}
},
{
"type": "reference",
- "target": 1292,
+ "target": 1299,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -87819,7 +88590,7 @@
}
},
{
- "id": 1398,
+ "id": 1405,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -87829,7 +88600,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1611,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1611"
}
],
"type": {
@@ -87841,7 +88612,7 @@
"groups": [
{
"title": "Properties",
- "children": [1394, 1398]
+ "children": [1401, 1405]
}
],
"sources": [
@@ -87849,7 +88620,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1609,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1609"
}
]
}
@@ -87857,14 +88628,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1399,
+ "id": 1406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1400,
+ "id": 1407,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -87874,20 +88645,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1614,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1401,
+ "id": 1408,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1402,
+ "id": 1409,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -87897,7 +88668,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1614,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614"
}
],
"type": {
@@ -87908,7 +88679,7 @@
"groups": [
{
"title": "Properties",
- "children": [1402]
+ "children": [1409]
}
],
"sources": [
@@ -87916,14 +88687,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1614,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614"
}
]
}
}
},
{
- "id": 1403,
+ "id": 1410,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -87933,12 +88704,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1615,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1615"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1615"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -87947,7 +88718,7 @@
"groups": [
{
"title": "Properties",
- "children": [1400, 1403]
+ "children": [1407, 1410]
}
],
"sources": [
@@ -87955,7 +88726,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1613,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1613"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1613"
}
]
}
@@ -87964,7 +88735,7 @@
}
},
{
- "id": 1359,
+ "id": 1366,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -87982,7 +88753,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1524,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1524"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1524"
}
],
"type": {
@@ -88000,7 +88771,7 @@
}
},
{
- "id": 1391,
+ "id": 1398,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -88018,16 +88789,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1602,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1602"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1602"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1360,
+ "target": 1367,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -88037,7 +88808,7 @@
}
},
{
- "id": 1357,
+ "id": 1364,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -88055,7 +88826,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1512,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1512"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1512"
}
],
"type": {
@@ -88064,7 +88835,7 @@
}
},
{
- "id": 1358,
+ "id": 1365,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -88082,7 +88853,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1518,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1518"
}
],
"type": {
@@ -88100,7 +88871,142 @@
}
},
{
- "id": 782,
+ "id": 1454,
+ "name": "OAuthGrant",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An OAuth grant representing a user's authorization of an OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1728,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1728"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1455,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1456,
+ "name": "client",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client information"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1730,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1730"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1434,
+ "name": "OAuthAuthorizationClient",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1458,
+ "name": "granted_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the grant was created (ISO 8601 date-time)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1734,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1734"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1457,
+ "name": "scopes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of scopes granted to this client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1732,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1732"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1456, 1458, 1457]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1728,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1728"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 789,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -88110,7 +89016,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 195,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L195"
}
],
"type": {
@@ -88119,14 +89025,14 @@
{
"type": "reflection",
"declaration": {
- "id": 783,
+ "id": 790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 784,
+ "id": 791,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -88136,20 +89042,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 785,
+ "id": 792,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 786,
+ "id": 793,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -88159,18 +89065,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L198"
}
],
"type": {
"type": "reference",
- "target": 697,
+ "target": 704,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 787,
+ "id": 794,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -88180,7 +89086,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L199"
}
],
"type": {
@@ -88192,7 +89098,7 @@
"groups": [
{
"title": "Properties",
- "children": [786, 787]
+ "children": [793, 794]
}
],
"sources": [
@@ -88200,14 +89106,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 197,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197"
}
]
}
}
},
{
- "id": 788,
+ "id": 795,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -88217,7 +89123,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 201,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L201"
}
],
"type": {
@@ -88229,7 +89135,7 @@
"groups": [
{
"title": "Properties",
- "children": [784, 788]
+ "children": [791, 795]
}
],
"sources": [
@@ -88237,7 +89143,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 196,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -88245,14 +89151,14 @@
{
"type": "reflection",
"declaration": {
- "id": 789,
+ "id": 796,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 790,
+ "id": 797,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -88262,20 +89168,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 791,
+ "id": 798,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 792,
+ "id": 799,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -88285,18 +89191,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 205,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L205"
}
],
"type": {
"type": "reference",
- "target": 697,
+ "target": 704,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 793,
+ "id": 800,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -88306,7 +89212,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L206"
}
],
"type": {
@@ -88318,7 +89224,7 @@
"groups": [
{
"title": "Properties",
- "children": [792, 793]
+ "children": [799, 800]
}
],
"sources": [
@@ -88326,14 +89232,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 204,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204"
}
]
}
}
},
{
- "id": 794,
+ "id": 801,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -88343,12 +89249,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 208,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L208"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -88357,7 +89263,7 @@
"groups": [
{
"title": "Properties",
- "children": [790, 794]
+ "children": [797, 801]
}
],
"sources": [
@@ -88365,7 +89271,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 203,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L203"
}
]
}
@@ -88374,7 +89280,7 @@
}
},
{
- "id": 1299,
+ "id": 1306,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -88384,20 +89290,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1334,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1334"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1300,
+ "id": 1307,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1301,
+ "id": 1308,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -88417,7 +89323,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1336,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1336"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1336"
}
],
"type": {
@@ -88426,7 +89332,7 @@
}
},
{
- "id": 1302,
+ "id": 1309,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -88446,7 +89352,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1338,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1338"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1338"
}
],
"type": {
@@ -88458,7 +89364,7 @@
"groups": [
{
"title": "Properties",
- "children": [1301, 1302]
+ "children": [1308, 1309]
}
],
"sources": [
@@ -88466,14 +89372,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1334,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1334"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334"
}
]
}
}
},
{
- "id": 1292,
+ "id": 1299,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -88483,20 +89389,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1327,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1293,
+ "id": 1300,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1295,
+ "id": 1302,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -88506,7 +89412,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1330"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1330"
}
],
"type": {
@@ -88515,7 +89421,7 @@
}
},
{
- "id": 1294,
+ "id": 1301,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -88525,7 +89431,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1329"
}
],
"type": {
@@ -88543,7 +89449,7 @@
}
},
{
- "id": 1296,
+ "id": 1303,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -88553,7 +89459,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1331"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1331"
}
],
"type": {
@@ -88565,7 +89471,7 @@
"groups": [
{
"title": "Properties",
- "children": [1295, 1294, 1296]
+ "children": [1302, 1301, 1303]
}
],
"sources": [
@@ -88573,12 +89479,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1327,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327"
}
],
"indexSignatures": [
{
- "id": 1297,
+ "id": 1304,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -88588,12 +89494,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1328"
}
],
"parameters": [
{
- "id": 1298,
+ "id": 1305,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -88614,7 +89520,7 @@
}
},
{
- "id": 737,
+ "id": 744,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -88632,12 +89538,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
],
"typeParameters": [
{
- "id": 738,
+ "id": 745,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -88648,7 +89554,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -88664,7 +89570,7 @@
},
"trueType": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -88677,7 +89583,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -88697,7 +89603,7 @@
},
"objectType": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -88707,7 +89613,7 @@
}
},
{
- "id": 697,
+ "id": 704,
"name": "Provider",
"variant": "declaration",
"kind": 2097152,
@@ -88725,7 +89631,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -88823,7 +89729,7 @@
}
},
{
- "id": 742,
+ "id": 749,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -88841,19 +89747,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 141,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L141"
}
],
"typeParameters": [
{
- "id": 749,
+ "id": 756,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 750,
+ "id": 757,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -88869,7 +89775,7 @@
},
"default": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -88881,14 +89787,14 @@
{
"type": "reflection",
"declaration": {
- "id": 743,
+ "id": 750,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 744,
+ "id": 751,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -88898,19 +89804,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reference",
- "target": 749,
+ "target": 756,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 745,
+ "id": 752,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -88920,7 +89826,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -88932,7 +89838,7 @@
"groups": [
{
"title": "Properties",
- "children": [744, 745]
+ "children": [751, 752]
}
],
"sources": [
@@ -88940,7 +89846,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 142,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L142"
}
]
}
@@ -88948,14 +89854,14 @@
{
"type": "reflection",
"declaration": {
- "id": 746,
+ "id": 753,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 747,
+ "id": 754,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -88965,7 +89871,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -88974,7 +89880,7 @@
}
},
{
- "id": 748,
+ "id": 755,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -88984,7 +89890,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
@@ -89000,19 +89906,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 750,
+ "target": 757,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -89023,7 +89929,7 @@
"groups": [
{
"title": "Properties",
- "children": [747, 748]
+ "children": [754, 755]
}
],
"sources": [
@@ -89031,7 +89937,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 146,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L146"
}
]
}
@@ -89040,7 +89946,7 @@
}
},
{
- "id": 751,
+ "id": 758,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -89063,12 +89969,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 155,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L155"
}
],
"typeParameters": [
{
- "id": 758,
+ "id": 765,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -89081,14 +89987,14 @@
{
"type": "reflection",
"declaration": {
- "id": 752,
+ "id": 759,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 753,
+ "id": 760,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -89098,19 +90004,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 156,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156"
}
],
"type": {
"type": "reference",
- "target": 758,
+ "target": 765,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 754,
+ "id": 761,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -89120,7 +90026,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 156,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156"
}
],
"type": {
@@ -89132,7 +90038,7 @@
"groups": [
{
"title": "Properties",
- "children": [753, 754]
+ "children": [760, 761]
}
],
"sources": [
@@ -89140,7 +90046,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 156,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156"
}
]
}
@@ -89148,14 +90054,14 @@
{
"type": "reflection",
"declaration": {
- "id": 755,
+ "id": 762,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 756,
+ "id": 763,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -89165,14 +90071,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 158,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L158"
}
],
"type": {
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 758,
+ "target": 765,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -89189,7 +90095,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 758,
+ "target": 765,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -89207,7 +90113,7 @@
}
},
{
- "id": 757,
+ "id": 764,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -89217,12 +90123,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 159,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L159"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -89231,7 +90137,7 @@
"groups": [
{
"title": "Properties",
- "children": [756, 757]
+ "children": [763, 764]
}
],
"sources": [
@@ -89239,7 +90145,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 157,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L157"
}
]
}
@@ -89248,7 +90154,7 @@
}
},
{
- "id": 1317,
+ "id": 1324,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -89258,20 +90164,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1452,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1452"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1318,
+ "id": 1325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1325,
+ "id": 1332,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -89281,18 +90187,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459"
}
],
"type": {
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1321,
+ "id": 1328,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -89302,7 +90208,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455"
}
],
"type": {
@@ -89323,7 +90229,7 @@
}
},
{
- "id": 1322,
+ "id": 1329,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -89333,7 +90239,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1456"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456"
}
],
"type": {
@@ -89342,7 +90248,7 @@
}
},
{
- "id": 1323,
+ "id": 1330,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -89352,7 +90258,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457"
}
],
"type": {
@@ -89361,7 +90267,7 @@
}
},
{
- "id": 1319,
+ "id": 1326,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -89371,7 +90277,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1453"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453"
}
],
"type": {
@@ -89380,7 +90286,7 @@
}
},
{
- "id": 1324,
+ "id": 1331,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -89390,7 +90296,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1458,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1458"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458"
}
],
"type": {
@@ -89399,7 +90305,7 @@
}
},
{
- "id": 1326,
+ "id": 1333,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -89409,7 +90315,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1460,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460"
}
],
"type": {
@@ -89418,7 +90324,7 @@
}
},
{
- "id": 1320,
+ "id": 1327,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -89428,7 +90334,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454"
}
],
"type": {
@@ -89440,7 +90346,7 @@
"groups": [
{
"title": "Properties",
- "children": [1325, 1321, 1322, 1323, 1319, 1324, 1326, 1320]
+ "children": [1332, 1328, 1329, 1330, 1326, 1331, 1333, 1327]
}
],
"sources": [
@@ -89448,7 +90354,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1452,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1452"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452"
}
]
}
@@ -89456,13 +90362,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1327,
+ "target": 1334,
"name": "JwtPayload"
}
]
},
{
- "id": 1034,
+ "id": 1041,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -89472,7 +90378,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 761,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L761"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L761"
}
],
"type": {
@@ -89481,14 +90387,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1035,
+ "id": 1042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1037,
+ "id": 1044,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -89498,7 +90404,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 764,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L764"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L764"
}
],
"type": {
@@ -89507,7 +90413,7 @@
}
},
{
- "id": 1038,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -89519,20 +90425,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 765,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L765"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1039,
+ "id": 1046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1041,
+ "id": 1048,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -89552,7 +90458,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 769,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L769"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L769"
}
],
"type": {
@@ -89561,7 +90467,7 @@
}
},
{
- "id": 1040,
+ "id": 1047,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -89581,7 +90487,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 767,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L767"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L767"
}
],
"type": {
@@ -89593,7 +90499,7 @@
"groups": [
{
"title": "Properties",
- "children": [1041, 1040]
+ "children": [1048, 1047]
}
],
"sources": [
@@ -89601,14 +90507,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 765,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L765"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765"
}
]
}
}
},
{
- "id": 1036,
+ "id": 1043,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -89618,7 +90524,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 763,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L763"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L763"
}
],
"type": {
@@ -89630,7 +90536,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1033,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -89656,7 +90562,7 @@
"groups": [
{
"title": "Properties",
- "children": [1037, 1038, 1036]
+ "children": [1044, 1045, 1043]
}
],
"sources": [
@@ -89664,7 +90570,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 762,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L762"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L762"
}
]
}
@@ -89672,14 +90578,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1042,
+ "id": 1049,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1045,
+ "id": 1052,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -89691,20 +90597,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 775,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L775"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1046,
+ "id": 1053,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1054,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -89724,7 +90630,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 777,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L777"
}
],
"type": {
@@ -89736,7 +90642,7 @@
"groups": [
{
"title": "Properties",
- "children": [1047]
+ "children": [1054]
}
],
"sources": [
@@ -89744,14 +90650,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 775,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L775"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775"
}
]
}
}
},
{
- "id": 1044,
+ "id": 1051,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -89761,7 +90667,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 774,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L774"
}
],
"type": {
@@ -89770,7 +90676,7 @@
}
},
{
- "id": 1043,
+ "id": 1050,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -89780,7 +90686,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 773,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L773"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L773"
}
],
"type": {
@@ -89792,7 +90698,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1032,
+ "target": 1039,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -89818,7 +90724,7 @@
"groups": [
{
"title": "Properties",
- "children": [1045, 1044, 1043]
+ "children": [1052, 1051, 1050]
}
],
"sources": [
@@ -89826,7 +90732,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 772,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L772"
}
]
}
@@ -89835,7 +90741,7 @@
}
},
{
- "id": 901,
+ "id": 908,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -89845,20 +90751,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 521,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 902,
+ "id": 909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 903,
+ "id": 910,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -89870,20 +90776,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 904,
+ "id": 911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 906,
+ "id": 913,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -89903,7 +90809,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 530,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L530"
}
],
"type": {
@@ -89912,7 +90818,7 @@
}
},
{
- "id": 905,
+ "id": 912,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -89948,7 +90854,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 528,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L528"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L528"
}
],
"type": {
@@ -89960,7 +90866,7 @@
"groups": [
{
"title": "Properties",
- "children": [906, 905]
+ "children": [913, 912]
}
],
"sources": [
@@ -89968,7 +90874,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 522,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522"
}
]
}
@@ -89978,7 +90884,7 @@
"groups": [
{
"title": "Properties",
- "children": [903]
+ "children": [910]
}
],
"sources": [
@@ -89986,14 +90892,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 521,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521"
}
]
}
}
},
{
- "id": 950,
+ "id": 957,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -90003,20 +90909,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 609,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 951,
+ "id": 958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 955,
+ "id": 962,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -90044,7 +90950,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 615,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L615"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L615"
}
],
"type": {
@@ -90053,7 +90959,7 @@
}
},
{
- "id": 956,
+ "id": 963,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -90081,7 +90987,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 617,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L617"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L617"
}
],
"type": {
@@ -90090,7 +90996,7 @@
}
},
{
- "id": 957,
+ "id": 964,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -90102,20 +91008,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 618,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 958,
+ "id": 965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 959,
+ "id": 966,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -90135,7 +91041,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 620,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L620"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L620"
}
],
"type": {
@@ -90147,7 +91053,7 @@
"groups": [
{
"title": "Properties",
- "children": [959]
+ "children": [966]
}
],
"sources": [
@@ -90155,14 +91061,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 618,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618"
}
]
}
}
},
{
- "id": 952,
+ "id": 959,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -90236,7 +91142,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 611,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611"
}
],
"type": {
@@ -90272,7 +91178,7 @@
{
"type": "reflection",
"declaration": {
- "id": 953,
+ "id": 960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -90282,7 +91188,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 611,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611"
}
]
}
@@ -90293,7 +91199,7 @@
}
},
{
- "id": 954,
+ "id": 961,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -90343,7 +91249,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 613,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L613"
}
],
"type": {
@@ -90355,7 +91261,7 @@
"groups": [
{
"title": "Properties",
- "children": [955, 956, 957, 952, 954]
+ "children": [962, 963, 964, 959, 961]
}
],
"sources": [
@@ -90363,14 +91269,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 609,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609"
}
]
}
}
},
{
- "id": 938,
+ "id": 945,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -90380,20 +91286,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 594,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 939,
+ "id": 946,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 941,
+ "id": 948,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -90405,20 +91311,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 597,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 942,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 945,
+ "id": 952,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -90438,13 +91344,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 603,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 946,
+ "id": 953,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -90454,12 +91360,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 603,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603"
}
],
"indexSignatures": [
{
- "id": 947,
+ "id": 954,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -90469,12 +91375,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 603,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603"
}
],
"parameters": [
{
- "id": 948,
+ "id": 955,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -90495,7 +91401,7 @@
}
},
{
- "id": 943,
+ "id": 950,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -90515,7 +91421,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 599,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L599"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L599"
}
],
"type": {
@@ -90524,7 +91430,7 @@
}
},
{
- "id": 944,
+ "id": 951,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -90544,7 +91450,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 601,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L601"
}
],
"type": {
@@ -90553,7 +91459,7 @@
}
},
{
- "id": 949,
+ "id": 956,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -90573,7 +91479,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 605,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L605"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L605"
}
],
"type": {
@@ -90585,7 +91491,7 @@
"groups": [
{
"title": "Properties",
- "children": [945, 943, 944, 949]
+ "children": [952, 950, 951, 956]
}
],
"sources": [
@@ -90593,14 +91499,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 597,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597"
}
]
}
}
},
{
- "id": 940,
+ "id": 947,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -90618,12 +91524,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 596,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L596"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L596"
}
],
"type": {
"type": "reference",
- "target": 697,
+ "target": 704,
"name": "Provider",
"package": "@supabase/auth-js"
}
@@ -90632,7 +91538,7 @@
"groups": [
{
"title": "Properties",
- "children": [941, 940]
+ "children": [948, 947]
}
],
"sources": [
@@ -90640,14 +91546,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 594,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594"
}
]
}
}
},
{
- "id": 915,
+ "id": 922,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -90657,7 +91563,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 549,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549"
}
],
"type": {
@@ -90675,14 +91581,14 @@
{
"type": "reflection",
"declaration": {
- "id": 916,
+ "id": 923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 917,
+ "id": 924,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -90694,20 +91600,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 550,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 918,
+ "id": 925,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 919,
+ "id": 926,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -90719,7 +91625,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 551,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L551"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L551"
}
],
"type": {
@@ -90731,7 +91637,7 @@
"groups": [
{
"title": "Properties",
- "children": [919]
+ "children": [926]
}
],
"sources": [
@@ -90739,7 +91645,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 550,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550"
}
]
}
@@ -90749,7 +91655,7 @@
"groups": [
{
"title": "Properties",
- "children": [917]
+ "children": [924]
}
],
"sources": [
@@ -90757,7 +91663,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 549,
"character": 70,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549"
}
]
}
@@ -90766,7 +91672,7 @@
}
},
{
- "id": 920,
+ "id": 927,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -90776,7 +91682,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 555,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L555"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L555"
}
],
"type": {
@@ -90785,14 +91691,14 @@
{
"type": "reflection",
"declaration": {
- "id": 921,
+ "id": 928,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 922,
+ "id": 929,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -90810,7 +91716,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 558,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L558"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L558"
}
],
"type": {
@@ -90819,7 +91725,7 @@
}
},
{
- "id": 923,
+ "id": 930,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -90831,20 +91737,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 559,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L559"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 924,
+ "id": 931,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 928,
+ "id": 935,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -90864,7 +91770,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 571,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L571"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L571"
}
],
"type": {
@@ -90873,7 +91779,7 @@
}
},
{
- "id": 927,
+ "id": 934,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -90909,7 +91815,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 569,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L569"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L569"
}
],
"type": {
@@ -90918,7 +91824,7 @@
}
},
{
- "id": 925,
+ "id": 932,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -90938,7 +91844,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 561,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L561"
}
],
"type": {
@@ -90947,7 +91853,7 @@
}
},
{
- "id": 926,
+ "id": 933,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -90967,7 +91873,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 563,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L563"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L563"
}
],
"type": {
@@ -90979,7 +91885,7 @@
"groups": [
{
"title": "Properties",
- "children": [928, 927, 925, 926]
+ "children": [935, 934, 932, 933]
}
],
"sources": [
@@ -90987,7 +91893,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 559,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L559"
}
]
}
@@ -90997,7 +91903,7 @@
"groups": [
{
"title": "Properties",
- "children": [922, 923]
+ "children": [929, 930]
}
],
"sources": [
@@ -91005,7 +91911,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 556,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L556"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L556"
}
]
}
@@ -91013,14 +91919,14 @@
{
"type": "reflection",
"declaration": {
- "id": 929,
+ "id": 936,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 931,
+ "id": 938,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -91032,20 +91938,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 577,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L577"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L577"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 932,
+ "id": 939,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 935,
+ "id": 942,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -91065,7 +91971,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 587,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L587"
}
],
"type": {
@@ -91074,7 +91980,7 @@
}
},
{
- "id": 936,
+ "id": 943,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -91094,7 +92000,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 589,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L589"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L589"
}
],
"type": {
@@ -91112,7 +92018,7 @@
}
},
{
- "id": 934,
+ "id": 941,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91148,7 +92054,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 585,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L585"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L585"
}
],
"type": {
@@ -91157,7 +92063,7 @@
}
},
{
- "id": 933,
+ "id": 940,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -91177,7 +92083,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 579,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L579"
}
],
"type": {
@@ -91189,7 +92095,7 @@
"groups": [
{
"title": "Properties",
- "children": [935, 936, 934, 933]
+ "children": [942, 943, 941, 940]
}
],
"sources": [
@@ -91197,14 +92103,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 577,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L577"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L577"
}
]
}
}
},
{
- "id": 930,
+ "id": 937,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -91222,7 +92128,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 576,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L576"
}
],
"type": {
@@ -91234,7 +92140,7 @@
"groups": [
{
"title": "Properties",
- "children": [931, 930]
+ "children": [938, 937]
}
],
"sources": [
@@ -91242,7 +92148,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 574,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L574"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L574"
}
]
}
@@ -91251,7 +92157,7 @@
}
},
{
- "id": 1048,
+ "id": 1055,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -91261,7 +92167,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 781,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L781"
}
],
"type": {
@@ -91270,14 +92176,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1049,
+ "id": 1056,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1051,
+ "id": 1058,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -91289,20 +92195,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 786,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1052,
+ "id": 1059,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1054,
+ "id": 1061,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -91322,7 +92228,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 790,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L790"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L790"
}
],
"type": {
@@ -91331,7 +92237,7 @@
}
},
{
- "id": 1053,
+ "id": 1060,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -91351,7 +92257,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 788,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L788"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L788"
}
],
"type": {
@@ -91360,7 +92266,7 @@
}
},
{
- "id": 1055,
+ "id": 1062,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -91380,7 +92286,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 796,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L796"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L796"
}
],
"type": {
@@ -91392,7 +92298,7 @@
"groups": [
{
"title": "Properties",
- "children": [1054, 1053, 1055]
+ "children": [1061, 1060, 1062]
}
],
"sources": [
@@ -91400,14 +92306,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 786,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786"
}
]
}
}
},
{
- "id": 1050,
+ "id": 1057,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -91425,7 +92331,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 784,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L784"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L784"
}
],
"type": {
@@ -91437,7 +92343,7 @@
"groups": [
{
"title": "Properties",
- "children": [1051, 1050]
+ "children": [1058, 1057]
}
],
"sources": [
@@ -91445,7 +92351,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 782,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L782"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L782"
}
]
}
@@ -91453,14 +92359,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1056,
+ "id": 1063,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1057,
+ "id": 1064,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -91478,7 +92384,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 801,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L801"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L801"
}
],
"type": {
@@ -91487,7 +92393,7 @@
}
},
{
- "id": 1058,
+ "id": 1065,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -91499,20 +92405,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 803,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1059,
+ "id": 1066,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1061,
+ "id": 1068,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -91532,7 +92438,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 807,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L807"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L807"
}
],
"type": {
@@ -91541,7 +92447,7 @@
}
},
{
- "id": 1060,
+ "id": 1067,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -91561,7 +92467,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 805,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L805"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L805"
}
],
"type": {
@@ -91570,7 +92476,7 @@
}
},
{
- "id": 1062,
+ "id": 1069,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -91590,7 +92496,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 813,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L813"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L813"
}
],
"type": {
@@ -91602,7 +92508,7 @@
"groups": [
{
"title": "Properties",
- "children": [1061, 1060, 1062]
+ "children": [1068, 1067, 1069]
}
],
"sources": [
@@ -91610,7 +92516,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 803,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803"
}
]
}
@@ -91620,7 +92526,7 @@
"groups": [
{
"title": "Properties",
- "children": [1057, 1058]
+ "children": [1064, 1065]
}
],
"sources": [
@@ -91628,7 +92534,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 799,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L799"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L799"
}
]
}
@@ -91637,7 +92543,7 @@
}
},
{
- "id": 1303,
+ "id": 1310,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -91647,20 +92553,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1341,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1341"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1304,
+ "id": 1311,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1305,
+ "id": 1312,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -91680,7 +92586,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1352,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1352"
}
],
"type": {
@@ -91705,7 +92611,7 @@
"groups": [
{
"title": "Properties",
- "children": [1305]
+ "children": [1312]
}
],
"sources": [
@@ -91713,14 +92619,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1341"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341"
}
]
}
}
},
{
- "id": 1355,
+ "id": 1362,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -91730,7 +92636,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1500,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1500"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1500"
}
],
"type": {
@@ -91743,7 +92649,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1354,
+ "target": 1361,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -91751,7 +92657,7 @@
}
},
{
- "id": 907,
+ "id": 914,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -91761,12 +92667,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 534,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L534"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L534"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -91783,14 +92689,14 @@
{
"type": "reflection",
"declaration": {
- "id": 908,
+ "id": 915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 909,
+ "id": 916,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -91802,20 +92708,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 536,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 910,
+ "id": 917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 913,
+ "id": 920,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -91827,7 +92733,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 539,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L539"
}
],
"type": {
@@ -91836,7 +92742,7 @@
}
},
{
- "id": 914,
+ "id": 921,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -91848,7 +92754,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 540,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L540"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L540"
}
],
"type": {
@@ -91866,7 +92772,7 @@
}
},
{
- "id": 912,
+ "id": 919,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91878,7 +92784,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 538,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L538"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L538"
}
],
"type": {
@@ -91887,7 +92793,7 @@
}
},
{
- "id": 911,
+ "id": 918,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -91899,7 +92805,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 537,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L537"
}
],
"type": {
@@ -91911,7 +92817,7 @@
"groups": [
{
"title": "Properties",
- "children": [913, 914, 912, 911]
+ "children": [920, 921, 919, 918]
}
],
"sources": [
@@ -91919,7 +92825,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 536,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536"
}
]
}
@@ -91929,7 +92835,7 @@
"groups": [
{
"title": "Properties",
- "children": [909]
+ "children": [916]
}
],
"sources": [
@@ -91937,7 +92843,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 535,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L535"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L535"
}
]
}
@@ -91950,7 +92856,7 @@
}
},
{
- "id": 960,
+ "id": 967,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -91960,20 +92866,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 624,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 961,
+ "id": 968,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 966,
+ "id": 973,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -91985,7 +92891,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 626,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626"
}
],
"type": {
@@ -91994,14 +92900,14 @@
{
"type": "reflection",
"declaration": {
- "id": 967,
+ "id": 974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 968,
+ "id": 975,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -92011,13 +92917,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 627,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L627"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 969,
+ "id": 976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -92027,12 +92933,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 627,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L627"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627"
}
],
"signatures": [
{
- "id": 970,
+ "id": 977,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -92050,7 +92956,7 @@
"groups": [
{
"title": "Properties",
- "children": [968]
+ "children": [975]
}
],
"sources": [
@@ -92058,7 +92964,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 626,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626"
}
]
}
@@ -92071,7 +92977,7 @@
}
},
{
- "id": 962,
+ "id": 969,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -92083,13 +92989,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 625,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 963,
+ "id": 970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -92099,19 +93005,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 625,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625"
}
],
"signatures": [
{
- "id": 964,
+ "id": 971,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 965,
+ "id": 972,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -92175,7 +93081,7 @@
}
},
{
- "id": 971,
+ "id": 978,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -92187,13 +93093,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 630,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L630"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 972,
+ "id": 979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -92203,19 +93109,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 630,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L630"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630"
}
],
"signatures": [
{
- "id": 973,
+ "id": 980,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 974,
+ "id": 981,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -92231,7 +93137,7 @@
}
},
{
- "id": 975,
+ "id": 982,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -92291,7 +93197,7 @@
"groups": [
{
"title": "Properties",
- "children": [966, 962, 971]
+ "children": [973, 969, 978]
}
],
"sources": [
@@ -92299,14 +93205,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 624,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624"
}
]
}
}
},
{
- "id": 976,
+ "id": 983,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -92316,7 +93222,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 633,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L633"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L633"
}
],
"type": {
@@ -92325,14 +93231,14 @@
{
"type": "reflection",
"declaration": {
- "id": 977,
+ "id": 984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 978,
+ "id": 985,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -92342,7 +93248,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 635,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L635"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L635"
}
],
"type": {
@@ -92351,7 +93257,7 @@
}
},
{
- "id": 981,
+ "id": 988,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -92363,20 +93269,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 643,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 982,
+ "id": 989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 984,
+ "id": 991,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -92396,7 +93302,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 648,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L648"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L648"
}
],
"type": {
@@ -92405,7 +93311,7 @@
}
},
{
- "id": 985,
+ "id": 992,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -92417,7 +93323,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 650,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L650"
}
],
"type": {
@@ -92478,7 +93384,7 @@
}
},
{
- "id": 983,
+ "id": 990,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -92498,7 +93404,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 645,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L645"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L645"
}
],
"type": {
@@ -92510,7 +93416,7 @@
"groups": [
{
"title": "Properties",
- "children": [984, 985, 983]
+ "children": [991, 992, 990]
}
],
"sources": [
@@ -92518,14 +93424,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 643,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643"
}
]
}
}
},
{
- "id": 980,
+ "id": 987,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -92545,7 +93451,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 641,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L641"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L641"
}
],
"type": {
@@ -92554,7 +93460,7 @@
}
},
{
- "id": 979,
+ "id": 986,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -92582,12 +93488,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 638,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L638"
}
],
"type": {
"type": "reference",
- "target": 960,
+ "target": 967,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -92596,7 +93502,7 @@
"groups": [
{
"title": "Properties",
- "children": [978, 981, 980, 979]
+ "children": [985, 988, 987, 986]
}
],
"sources": [
@@ -92604,7 +93510,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 634,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L634"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L634"
}
]
}
@@ -92612,14 +93518,14 @@
{
"type": "reflection",
"declaration": {
- "id": 986,
+ "id": 993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 987,
+ "id": 994,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -92629,7 +93535,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 656,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L656"
}
],
"type": {
@@ -92638,7 +93544,7 @@
}
},
{
- "id": 988,
+ "id": 995,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -92680,7 +93586,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 659,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L659"
}
],
"type": {
@@ -92689,7 +93595,7 @@
}
},
{
- "id": 990,
+ "id": 997,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -92701,20 +93607,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 664,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 991,
+ "id": 998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 992,
+ "id": 999,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -92734,7 +93640,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 666,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L666"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L666"
}
],
"type": {
@@ -92746,7 +93652,7 @@
"groups": [
{
"title": "Properties",
- "children": [992]
+ "children": [999]
}
],
"sources": [
@@ -92754,14 +93660,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 664,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664"
}
]
}
}
},
{
- "id": 989,
+ "id": 996,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -92779,7 +93685,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 662,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L662"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L662"
}
],
"type": {
@@ -92796,7 +93702,7 @@
"groups": [
{
"title": "Properties",
- "children": [987, 988, 990, 989]
+ "children": [994, 995, 997, 996]
}
],
"sources": [
@@ -92804,7 +93710,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 655,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L655"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L655"
}
]
}
@@ -92813,7 +93719,7 @@
}
},
{
- "id": 795,
+ "id": 802,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -92823,24 +93729,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 211,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 796,
+ "id": 803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 797,
+ "id": 804,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -92866,7 +93772,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L219"
}
],
"type": {
@@ -92878,7 +93784,7 @@
"groups": [
{
"title": "Properties",
- "children": [797]
+ "children": [804]
}
],
"sources": [
@@ -92886,7 +93792,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 211,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211"
}
]
}
@@ -92897,7 +93803,7 @@
}
},
{
- "id": 739,
+ "id": 746,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -92915,19 +93821,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 136,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L136"
}
],
"typeParameters": [
{
- "id": 740,
+ "id": 747,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 741,
+ "id": 748,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -92937,7 +93843,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 740,
+ "target": 747,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -92954,14 +93860,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 747,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 741,
+ "target": 748,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -92972,7 +93878,7 @@
}
},
{
- "id": 1285,
+ "id": 1292,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -92982,7 +93888,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1310,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1310"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1310"
}
],
"type": {
@@ -93039,14 +93945,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1286,
+ "id": 1293,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1287,
+ "id": 1294,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -93074,7 +93980,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1320,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1320"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1320"
}
],
"type": {
@@ -93086,7 +93992,7 @@
"groups": [
{
"title": "Properties",
- "children": [1287]
+ "children": [1294]
}
],
"sources": [
@@ -93094,7 +94000,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1312,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1312"
}
]
}
@@ -93103,7 +94009,7 @@
}
},
{
- "id": 1384,
+ "id": 1391,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -93121,20 +94027,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1585,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1585"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1385,
+ "id": 1392,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1386,
+ "id": 1393,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -93154,7 +94060,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1587,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1587"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1587"
}
],
"type": {
@@ -93163,7 +94069,7 @@
}
},
{
- "id": 1387,
+ "id": 1394,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -93183,7 +94089,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1589,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1589"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1589"
}
],
"type": {
@@ -93192,7 +94098,7 @@
}
},
{
- "id": 1390,
+ "id": 1397,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -93212,21 +94118,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1595,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1595"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1595"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1356,
+ "target": 1363,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1388,
+ "id": 1395,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -93246,7 +94152,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1591,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1591"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1591"
}
],
"type": {
@@ -93255,7 +94161,7 @@
}
},
{
- "id": 1389,
+ "id": 1396,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -93275,7 +94181,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1593,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1593"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1593"
}
],
"type": {
@@ -93290,7 +94196,7 @@
"groups": [
{
"title": "Properties",
- "children": [1386, 1387, 1390, 1388, 1389]
+ "children": [1393, 1394, 1397, 1395, 1396]
}
],
"sources": [
@@ -93298,14 +94204,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1585,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1585"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585"
}
]
}
}
},
{
- "id": 798,
+ "id": 805,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -93315,24 +94221,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 222,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 799,
+ "id": 806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 800,
+ "id": 807,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -93342,12 +94248,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 223,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L223"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -93356,7 +94262,7 @@
"groups": [
{
"title": "Properties",
- "children": [800]
+ "children": [807]
}
],
"sources": [
@@ -93364,7 +94270,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 222,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222"
}
]
}
@@ -93375,7 +94281,7 @@
}
},
{
- "id": 1012,
+ "id": 1019,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -93385,7 +94291,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 711,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L711"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L711"
}
],
"type": {
@@ -93393,19 +94299,19 @@
"types": [
{
"type": "reference",
- "target": 1013,
+ "target": 1020,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1021,
+ "target": 1028,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1029,
+ "target": 1036,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -93413,7 +94319,7 @@
}
},
{
- "id": 733,
+ "id": 740,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -93423,20 +94329,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 734,
+ "id": 741,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 736,
+ "id": 743,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -93446,7 +94352,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L122"
}
],
"type": {
@@ -93455,7 +94361,7 @@
}
},
{
- "id": 735,
+ "id": 742,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -93465,14 +94371,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L121"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 732,
+ "target": 739,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -93482,7 +94388,7 @@
"groups": [
{
"title": "Properties",
- "children": [736, 735]
+ "children": [743, 742]
}
],
"sources": [
@@ -93490,14 +94396,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120"
}
]
}
}
},
{
- "id": 732,
+ "id": 739,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -93507,7 +94413,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 119,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L119"
}
],
"type": {
@@ -93532,7 +94438,7 @@
}
},
{
- "id": 1011,
+ "id": 1018,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -93542,7 +94448,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 709,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L709"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L709"
}
],
"type": {
@@ -93550,13 +94456,13 @@
"types": [
{
"type": "reference",
- "target": 976,
+ "target": 983,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 994,
+ "target": 1001,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -93564,7 +94470,7 @@
}
},
{
- "id": 671,
+ "id": 678,
"name": "AuthAdminApi",
"variant": "declaration",
"kind": 32,
@@ -93576,7 +94482,7 @@
"fileName": "packages/core/auth-js/src/AuthAdminApi.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/AuthAdminApi.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthAdminApi.ts#L3"
}
],
"type": {
@@ -93591,7 +94497,7 @@
"defaultValue": "GoTrueAdminApi"
},
{
- "id": 672,
+ "id": 679,
"name": "AuthClient",
"variant": "declaration",
"kind": 32,
@@ -93603,7 +94509,7 @@
"fileName": "packages/core/auth-js/src/AuthClient.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/AuthClient.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthClient.ts#L3"
}
],
"type": {
@@ -93618,7 +94524,7 @@
"defaultValue": "GoTrueClient"
},
{
- "id": 686,
+ "id": 693,
"name": "lockInternals",
"variant": "declaration",
"kind": 32,
@@ -93634,20 +94540,20 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 687,
+ "id": 694,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 688,
+ "id": 695,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -93661,7 +94567,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L10"
}
],
"type": {
@@ -93674,7 +94580,7 @@
"groups": [
{
"title": "Properties",
- "children": [688]
+ "children": [695]
}
],
"sources": [
@@ -93682,7 +94588,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6"
}
]
}
@@ -93690,7 +94596,7 @@
"defaultValue": "..."
},
{
- "id": 1354,
+ "id": 1361,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -93702,7 +94608,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1499,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1499"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1499"
}
],
"type": {
@@ -93729,7 +94635,7 @@
"defaultValue": "..."
},
{
- "id": 1466,
+ "id": 1488,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -93739,12 +94645,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"signatures": [
{
- "id": 1467,
+ "id": 1489,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -93754,12 +94660,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"parameters": [
{
- "id": 1468,
+ "id": 1490,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -93776,7 +94682,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1491,
+ "target": 1513,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -93785,7 +94691,7 @@
]
},
{
- "id": 1463,
+ "id": 1485,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -93795,12 +94701,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"signatures": [
{
- "id": 1464,
+ "id": 1486,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -93810,12 +94716,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"parameters": [
{
- "id": 1465,
+ "id": 1487,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -93832,7 +94738,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -93841,7 +94747,7 @@
]
},
{
- "id": 1472,
+ "id": 1494,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -93851,12 +94757,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"signatures": [
{
- "id": 1473,
+ "id": 1495,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -93866,12 +94772,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"parameters": [
{
- "id": 1474,
+ "id": 1496,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -93888,7 +94794,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1548,
+ "target": 1570,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -93897,7 +94803,7 @@
]
},
{
- "id": 1475,
+ "id": 1497,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -93907,12 +94813,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 242,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242"
}
],
"signatures": [
{
- "id": 1476,
+ "id": 1498,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -93922,12 +94828,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 242,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242"
}
],
"parameters": [
{
- "id": 1477,
+ "id": 1499,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -93944,7 +94850,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1602,
+ "target": 1624,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -93953,7 +94859,7 @@
]
},
{
- "id": 1469,
+ "id": 1491,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -93963,12 +94869,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"signatures": [
{
- "id": 1470,
+ "id": 1492,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -93978,12 +94884,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"parameters": [
{
- "id": 1471,
+ "id": 1493,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -94000,7 +94906,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1523,
+ "target": 1545,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -94009,7 +94915,7 @@
]
},
{
- "id": 1478,
+ "id": 1500,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -94019,12 +94925,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"signatures": [
{
- "id": 1479,
+ "id": 1501,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -94034,12 +94940,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"parameters": [
{
- "id": 1480,
+ "id": 1502,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -94056,7 +94962,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1612,
+ "target": 1634,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -94065,7 +94971,7 @@
]
},
{
- "id": 673,
+ "id": 680,
"name": "navigatorLock",
"variant": "declaration",
"kind": 64,
@@ -94075,12 +94981,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"signatures": [
{
- "id": 674,
+ "id": 681,
"name": "navigatorLock",
"variant": "signature",
"kind": 4096,
@@ -94151,12 +95057,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"typeParameters": [
{
- "id": 675,
+ "id": 682,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -94165,7 +95071,7 @@
],
"parameters": [
{
- "id": 676,
+ "id": 683,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -94184,7 +95090,7 @@
}
},
{
- "id": 677,
+ "id": 684,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -94211,7 +95117,7 @@
}
},
{
- "id": 678,
+ "id": 685,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -94227,7 +95133,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 679,
+ "id": 686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -94237,12 +95143,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"signatures": [
{
- "id": 680,
+ "id": 687,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -94252,7 +95158,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"type": {
@@ -94264,7 +95170,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 675,
+ "target": 682,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -94288,7 +95194,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 675,
+ "target": 682,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -94301,7 +95207,7 @@
]
},
{
- "id": 689,
+ "id": 696,
"name": "processLock",
"variant": "declaration",
"kind": 64,
@@ -94311,12 +95217,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 214,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214"
}
],
"signatures": [
{
- "id": 690,
+ "id": 697,
"name": "processLock",
"variant": "signature",
"kind": 4096,
@@ -94354,12 +95260,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 214,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214"
}
],
"typeParameters": [
{
- "id": 691,
+ "id": 698,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -94368,7 +95274,7 @@
],
"parameters": [
{
- "id": 692,
+ "id": 699,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -94387,7 +95293,7 @@
}
},
{
- "id": 693,
+ "id": 700,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -94414,7 +95320,7 @@
}
},
{
- "id": 694,
+ "id": 701,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -94430,7 +95336,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 695,
+ "id": 702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -94440,12 +95346,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217"
}
],
"signatures": [
{
- "id": 696,
+ "id": 703,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -94455,7 +95361,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217"
}
],
"type": {
@@ -94467,7 +95373,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 691,
+ "target": 698,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -94491,7 +95397,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 691,
+ "target": 698,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -94508,35 +95414,36 @@
{
"title": "Classes",
"children": [
- 1491, 1481, 1548, 1539, 1624, 1531, 1575, 1602, 1523, 1501, 1612, 1511, 1, 107, 681
+ 1513, 1503, 1570, 1561, 1646, 1553, 1597, 1624, 1545, 1523, 1634, 1533, 1, 107, 688
]
},
{
"title": "Interfaces",
"children": [
- 878, 812, 1447, 1085, 1278, 1404, 1148, 1347, 1327, 801, 891, 846, 838, 872, 815, 843,
- 1021, 1013, 1029
+ 885, 819, 1462, 1092, 1285, 1411, 1155, 1354, 1334, 808, 898, 853, 845, 879, 822, 850,
+ 1028, 1020, 1036
]
},
{
"title": "Type Aliases",
"children": [
- 810, 699, 698, 1142, 937, 1268, 1265, 1275, 1272, 1133, 1137, 1132, 1134, 1135, 1136,
- 1310, 1128, 1309, 1311, 1143, 1138, 1129, 1127, 1120, 1443, 1444, 768, 759, 763, 773,
- 777, 1291, 1376, 1033, 993, 994, 828, 827, 1079, 1069, 1088, 1093, 1089, 1100, 1074,
- 1063, 709, 1288, 1312, 700, 1119, 1118, 1116, 1115, 1117, 1101, 1307, 1306, 1308, 1114,
- 1102, 1113, 1106, 1105, 1107, 1111, 1032, 1427, 1433, 1360, 1356, 1392, 1359, 1391,
- 1357, 1358, 782, 1299, 1292, 737, 697, 742, 751, 1317, 1034, 901, 950, 938, 915, 920,
- 1048, 1303, 1355, 907, 960, 976, 795, 739, 1285, 1384, 798, 1012, 733, 732, 1011
+ 817, 706, 705, 1149, 944, 1275, 1272, 1282, 1279, 1140, 1144, 1139, 1141, 1142, 1143,
+ 1317, 1135, 1316, 1318, 1150, 1145, 1136, 1134, 1127, 1450, 1451, 1459, 1460, 775, 766,
+ 770, 780, 784, 1298, 1383, 1040, 1000, 1001, 835, 834, 1086, 1076, 1095, 1100, 1096,
+ 1107, 1081, 1070, 716, 1295, 1319, 707, 1126, 1125, 1123, 1122, 1124, 1108, 1314, 1313,
+ 1315, 1121, 1109, 1120, 1113, 1112, 1114, 1118, 1039, 1434, 1440, 1367, 1363, 1399,
+ 1366, 1398, 1364, 1365, 1454, 789, 1306, 1299, 744, 704, 749, 758, 1324, 1041, 908, 957,
+ 945, 922, 927, 1055, 1310, 1362, 914, 967, 983, 802, 746, 1292, 1391, 805, 1019, 740,
+ 739, 1018
]
},
{
"title": "Variables",
- "children": [671, 672, 686, 1354]
+ "children": [678, 679, 693, 1361]
},
{
"title": "Functions",
- "children": [1466, 1463, 1472, 1475, 1469, 1478, 673, 689]
+ "children": [1488, 1485, 1494, 1497, 1491, 1500, 680, 696]
}
],
"packageName": "@supabase/auth-js",
@@ -95624,1005 +96531,977 @@
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.stopAutoRefresh"
},
- "648": {
+ "655": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "649": {
+ "656": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "650": {
+ "657": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "jwt"
},
- "651": {
+ "658": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "652": {
+ "659": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "653": {
+ "660": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "654": {
+ "661": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.allowExpired"
},
- "655": {
+ "662": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.jwks"
},
- "656": {
+ "663": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "657": {
+ "664": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "658": {
+ "665": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "659": {
+ "666": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "660": {
+ "667": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "661": {
+ "668": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.claims"
},
- "662": {
+ "669": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.header"
},
- "663": {
+ "670": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.signature"
},
- "664": {
+ "671": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "665": {
+ "672": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "666": {
+ "673": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "667": {
+ "674": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "668": {
+ "675": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "669": {
+ "676": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "670": {
+ "677": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "671": {
+ "678": {
"sourceFileName": "src/AuthAdminApi.ts",
"qualifiedName": "AuthAdminApi"
},
- "672": {
+ "679": {
"sourceFileName": "src/AuthClient.ts",
"qualifiedName": "AuthClient"
},
- "673": {
+ "680": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "674": {
+ "681": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "675": {
+ "682": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "R"
},
- "676": {
+ "683": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "name"
},
- "677": {
+ "684": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "678": {
+ "685": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "fn"
},
- "679": {
+ "686": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "680": {
+ "687": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "681": {
+ "688": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "682": {
+ "689": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.__constructor"
},
- "683": {
+ "690": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "684": {
+ "691": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "message"
},
- "685": {
+ "692": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout"
},
- "686": {
+ "693": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "internals"
},
- "687": {
+ "694": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__object"
},
- "688": {
+ "695": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__object.debug"
},
- "689": {
+ "696": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "690": {
+ "697": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "691": {
+ "698": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "R"
},
- "692": {
+ "699": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "name"
},
- "693": {
+ "700": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "694": {
+ "701": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "fn"
},
- "695": {
+ "702": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "696": {
+ "703": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "697": {
+ "704": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Provider"
},
- "698": {
+ "705": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthChangeEventMFA"
},
- "699": {
+ "706": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthChangeEvent"
},
- "700": {
+ "707": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "LockFunc"
},
- "701": {
+ "708": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "702": {
+ "709": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "703": {
+ "710": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "name"
},
- "704": {
+ "711": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "acquireTimeout"
},
- "705": {
+ "712": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "fn"
},
- "706": {
+ "713": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "707": {
+ "714": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "708": {
+ "715": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "R"
},
- "709": {
+ "716": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueClientOptions"
},
- "710": {
+ "717": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "711": {
+ "718": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "712": {
+ "719": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.headers"
},
- "713": {
+ "720": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "714": {
+ "721": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "716": {
+ "723": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.storageKey"
},
- "717": {
+ "724": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.detectSessionInUrl"
},
- "718": {
+ "725": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.autoRefreshToken"
},
- "719": {
+ "726": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.persistSession"
},
- "720": {
+ "727": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.storage"
},
- "721": {
+ "728": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.userStorage"
},
- "722": {
+ "729": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.fetch"
},
- "723": {
+ "730": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.flowType"
},
- "724": {
+ "731": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.debug"
},
- "725": {
+ "732": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "726": {
+ "733": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "727": {
+ "734": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "message"
},
- "728": {
+ "735": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "args"
},
- "729": {
+ "736": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.lock"
},
- "730": {
+ "737": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.hasCustomAuthorizationHeader"
},
- "731": {
+ "738": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.throwOnError"
},
- "732": {
+ "739": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "WeakPasswordReasons"
},
- "733": {
+ "740": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "WeakPassword"
},
- "734": {
+ "741": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "735": {
+ "742": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.reasons"
},
- "736": {
+ "743": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.message"
},
- "737": {
+ "744": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Prettify"
},
- "738": {
+ "745": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "739": {
+ "746": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "StrictOmit"
},
- "740": {
+ "747": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "741": {
+ "748": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "K"
},
- "742": {
+ "749": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequestResult"
},
- "743": {
+ "750": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "744": {
+ "751": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "745": {
+ "752": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "746": {
+ "753": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "747": {
+ "754": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "748": {
+ "755": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "749": {
+ "756": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "750": {
+ "757": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "ErrorType"
},
- "751": {
+ "758": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequestResultSafeDestructure"
},
- "752": {
+ "759": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "753": {
+ "760": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "754": {
+ "761": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "755": {
+ "762": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "756": {
+ "763": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "757": {
+ "764": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "758": {
+ "765": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "759": {
+ "766": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthResponse"
},
- "760": {
+ "767": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "761": {
+ "768": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "762": {
+ "769": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "763": {
+ "770": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthResponsePassword"
},
- "764": {
+ "771": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "765": {
+ "772": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "766": {
+ "773": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "767": {
+ "774": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.weak_password"
},
- "768": {
+ "775": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthOtpResponse"
},
- "769": {
+ "776": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "770": {
+ "777": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "771": {
+ "778": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "772": {
+ "779": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.messageId"
},
- "773": {
+ "780": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthTokenResponse"
},
- "774": {
+ "781": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "775": {
+ "782": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "776": {
+ "783": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "777": {
+ "784": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthTokenResponsePassword"
},
- "778": {
+ "785": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "779": {
+ "786": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "780": {
+ "787": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "781": {
+ "788": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.weakPassword"
},
- "782": {
+ "789": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "OAuthResponse"
},
- "783": {
+ "790": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "784": {
+ "791": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "785": {
+ "792": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "786": {
+ "793": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "787": {
+ "794": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "788": {
+ "795": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "789": {
+ "796": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "790": {
+ "797": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "791": {
+ "798": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "792": {
+ "799": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "793": {
+ "800": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "794": {
+ "801": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "795": {
+ "802": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SSOResponse"
},
- "796": {
+ "803": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "797": {
+ "804": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "798": {
+ "805": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserResponse"
},
- "799": {
+ "806": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "800": {
+ "807": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "801": {
+ "808": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session"
},
- "802": {
+ "809": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.provider_token"
},
- "803": {
+ "810": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.provider_refresh_token"
},
- "804": {
+ "811": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.access_token"
},
- "805": {
+ "812": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.refresh_token"
},
- "806": {
+ "813": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.expires_in"
},
- "807": {
+ "814": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.expires_at"
},
- "808": {
+ "815": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.token_type"
},
- "809": {
+ "816": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.user"
},
- "810": {
+ "817": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMRMethod"
},
- "811": {
+ "818": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "812": {
+ "819": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry"
},
- "813": {
+ "820": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry.method"
},
- "814": {
+ "821": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry.timestamp"
},
- "815": {
+ "822": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity"
},
- "816": {
+ "823": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.id"
},
- "817": {
+ "824": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.user_id"
},
- "818": {
+ "825": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_data"
},
- "819": {
+ "826": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "820": {
+ "827": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "822": {
+ "829": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "823": {
+ "830": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "824": {
+ "831": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "825": {
+ "832": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "826": {
+ "833": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "827": {
+ "834": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "828": {
+ "835": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Factor"
},
- "829": {
+ "836": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "830": {
+ "837": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "831": {
+ "838": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "832": {
+ "839": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "833": {
+ "840": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "834": {
+ "841": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "835": {
+ "842": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "836": {
+ "843": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Type"
},
- "837": {
+ "844": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Status"
},
- "838": {
+ "845": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "839": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAppMetadata.provider"
- },
- "840": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAppMetadata.providers"
- },
- "841": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAppMetadata.__index"
- },
- "843": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserMetadata"
- },
- "844": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserMetadata.__index"
- },
"846": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User"
+ "qualifiedName": "UserAppMetadata.provider"
},
"847": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.id"
+ "qualifiedName": "UserAppMetadata.providers"
},
"848": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.app_metadata"
- },
- "849": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.user_metadata"
+ "qualifiedName": "UserAppMetadata.__index"
},
"850": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.aud"
+ "qualifiedName": "UserMetadata"
},
"851": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.confirmation_sent_at"
- },
- "852": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.recovery_sent_at"
+ "qualifiedName": "UserMetadata.__index"
},
"853": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email_change_sent_at"
+ "qualifiedName": "User"
},
"854": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.new_email"
+ "qualifiedName": "User.id"
},
"855": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.new_phone"
+ "qualifiedName": "User.app_metadata"
},
"856": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.invited_at"
+ "qualifiedName": "User.user_metadata"
},
"857": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.action_link"
+ "qualifiedName": "User.aud"
},
"858": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email"
+ "qualifiedName": "User.confirmation_sent_at"
},
"859": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.phone"
+ "qualifiedName": "User.recovery_sent_at"
},
"860": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.created_at"
+ "qualifiedName": "User.email_change_sent_at"
},
"861": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.confirmed_at"
+ "qualifiedName": "User.new_email"
},
"862": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.email_confirmed_at"
+ "qualifiedName": "User.new_phone"
},
"863": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.phone_confirmed_at"
+ "qualifiedName": "User.invited_at"
},
"864": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.last_sign_in_at"
+ "qualifiedName": "User.action_link"
},
"865": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.role"
+ "qualifiedName": "User.email"
},
"866": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.updated_at"
+ "qualifiedName": "User.phone"
},
"867": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.identities"
+ "qualifiedName": "User.created_at"
},
"868": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.is_anonymous"
+ "qualifiedName": "User.confirmed_at"
},
"869": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.is_sso_user"
+ "qualifiedName": "User.email_confirmed_at"
},
"870": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.factors"
+ "qualifiedName": "User.phone_confirmed_at"
},
"871": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "User.deleted_at"
+ "qualifiedName": "User.last_sign_in_at"
},
"872": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes"
+ "qualifiedName": "User.role"
},
"873": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.email"
+ "qualifiedName": "User.updated_at"
},
"874": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.phone"
+ "qualifiedName": "User.identities"
},
"875": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.password"
+ "qualifiedName": "User.is_anonymous"
},
"876": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.nonce"
+ "qualifiedName": "User.is_sso_user"
},
"877": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UserAttributes.data"
+ "qualifiedName": "User.factors"
},
"878": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes"
+ "qualifiedName": "User.deleted_at"
},
"879": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.user_metadata"
+ "qualifiedName": "UserAttributes"
},
"880": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.app_metadata"
+ "qualifiedName": "UserAttributes.email"
},
"881": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.email_confirm"
+ "qualifiedName": "UserAttributes.phone"
},
"882": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.phone_confirm"
+ "qualifiedName": "UserAttributes.password"
},
"883": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.ban_duration"
+ "qualifiedName": "UserAttributes.nonce"
},
"884": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.role"
+ "qualifiedName": "UserAttributes.data"
},
"885": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.password_hash"
+ "qualifiedName": "AdminUserAttributes"
},
"886": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.id"
+ "qualifiedName": "AdminUserAttributes.user_metadata"
},
"887": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "nonce"
+ "qualifiedName": "AdminUserAttributes.app_metadata"
},
"888": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "AdminUserAttributes.email_confirm"
},
"889": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "email"
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
},
"890": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "password"
+ "qualifiedName": "AdminUserAttributes.ban_duration"
},
"891": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription"
+ "qualifiedName": "AdminUserAttributes.role"
},
"892": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.id"
+ "qualifiedName": "AdminUserAttributes.password_hash"
},
"893": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.callback"
+ "qualifiedName": "AdminUserAttributes.id"
},
"894": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "nonce"
},
"895": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "phone"
},
"896": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "event"
+ "qualifiedName": "email"
},
"897": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "session"
+ "qualifiedName": "password"
},
"898": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Subscription.unsubscribe"
+ "qualifiedName": "Subscription"
},
"899": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.id"
},
"900": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.callback"
},
"901": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInAnonymouslyCredentials"
+ "qualifiedName": "__type"
},
"902": {
"sourceFileName": "src/lib/types.ts",
@@ -96630,39 +97509,39 @@
},
"903": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "event"
},
"904": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "session"
},
"905": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "Subscription.unsubscribe"
},
"906": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"907": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
+ "qualifiedName": "__type"
},
"908": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SignInAnonymouslyCredentials"
},
"909": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"910": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"911": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"912": {
"sourceFileName": "src/lib/types.ts",
@@ -96674,79 +97553,79 @@
},
"914": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"915": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type"
},
"916": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"917": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"918": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.emailRedirectTo"
},
"919": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"920": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"921": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.channel"
},
"922": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"923": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"924": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"925": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"926": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.captchaToken"
},
"927": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"928": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"929": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email"
},
"930": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.options"
},
"931": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"932": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.emailRedirectTo"
},
"933": {
"sourceFileName": "src/lib/types.ts",
@@ -96762,15 +97641,15 @@
},
"936": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.phone"
},
"938": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "__type.options"
},
"939": {
"sourceFileName": "src/lib/types.ts",
@@ -96778,27 +97657,27 @@
},
"940": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type.shouldCreateUser"
},
"941": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.data"
},
"942": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"943": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.channel"
},
"944": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "AuthFlowType"
},
"945": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"946": {
"sourceFileName": "src/lib/types.ts",
@@ -96806,23 +97685,27 @@
},
"947": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.provider"
+ },
+ "948": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.options"
},
"949": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.redirectTo"
},
"951": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.scopes"
},
"952": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type.queryParams"
},
"953": {
"sourceFileName": "src/lib/types.ts",
@@ -96830,19 +97713,15 @@
},
"954": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token"
- },
- "955": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type.__index"
},
"956": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"957": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"958": {
"sourceFileName": "src/lib/types.ts",
@@ -96850,47 +97729,47 @@
},
"959": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.provider"
},
"960": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type"
},
"961": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.token"
},
"962": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "__type.access_token"
},
"963": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.nonce"
},
"964": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"965": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"966": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.captchaToken"
},
"967": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWallet"
},
"968": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type"
},
"969": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"970": {
"sourceFileName": "src/lib/types.ts",
@@ -96898,27 +97777,27 @@
},
"971": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"972": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "inputs"
},
"973": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"974": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"975": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "__type.toBase58"
},
"976": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "__type"
},
"977": {
"sourceFileName": "src/lib/types.ts",
@@ -96926,259 +97805,259 @@
},
"978": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signMessage"
},
"979": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type"
},
"980": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type"
},
"981": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "message"
},
"982": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "encoding"
},
"983": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"984": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"985": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.chain"
},
"986": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.wallet"
},
"987": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.statement"
},
"988": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.options"
},
"989": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type"
},
"990": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.url"
},
"991": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"992": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.signInWithSolana"
},
"993": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type"
},
"994": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "__type.chain"
},
"995": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.message"
},
"996": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signature"
},
"997": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.options"
},
"998": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.captchaToken"
},
"1000": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWallet"
},
"1001": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"1002": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1003": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.chain"
},
"1004": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.wallet"
},
"1005": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.statement"
},
"1006": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.options"
},
"1007": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type"
},
"1008": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.url"
},
"1009": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1010": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.signInWithEthereum"
},
"1011": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type"
},
"1012": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "__type.chain"
},
"1013": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "__type.message"
},
"1014": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "__type.signature"
},
"1015": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "__type.options"
},
"1016": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "__type"
},
"1017": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "__type.captchaToken"
},
"1018": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Web3Credentials"
},
"1019": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "VerifyOtpParams"
},
"1020": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"1021": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"1022": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"1023": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"1024": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"1025": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "__type"
},
"1026": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.redirectTo"
},
"1027": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.captchaToken"
},
"1028": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"1029": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"1030": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"1031": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"1032": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"1033": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "__type"
},
"1034": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "__type.redirectTo"
},
"1035": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1036": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1037": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1038": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1039": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MobileOtpType"
},
"1040": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "EmailOtpType"
},
"1041": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "ResendParams"
},
"1042": {
"sourceFileName": "src/lib/types.ts",
@@ -97190,7 +98069,7 @@
},
"1044": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.email"
},
"1045": {
"sourceFileName": "src/lib/types.ts",
@@ -97202,11 +98081,11 @@
},
"1047": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1048": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type.captchaToken"
},
"1049": {
"sourceFileName": "src/lib/types.ts",
@@ -97214,19 +98093,19 @@
},
"1050": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "__type.type"
},
"1051": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"1052": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1053": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1054": {
"sourceFileName": "src/lib/types.ts",
@@ -97234,7 +98113,7 @@
},
"1055": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "SignInWithSSO"
},
"1056": {
"sourceFileName": "src/lib/types.ts",
@@ -97242,7 +98121,7 @@
},
"1057": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type.providerId"
},
"1058": {
"sourceFileName": "src/lib/types.ts",
@@ -97266,375 +98145,375 @@
},
"1063": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type"
},
"1064": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.domain"
},
"1065": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type.options"
},
"1066": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1067": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.redirectTo"
},
"1068": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.captchaToken"
},
"1069": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1070": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1071": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1072": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1073": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1074": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.password"
},
"1075": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1076": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1077": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1078": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1079": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.email"
},
"1080": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1081": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1082": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1083": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.type"
},
"1084": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1085": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.options"
},
"1086": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1087": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "__type"
},
"1088": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "__type.type"
},
"1089": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "__type.email"
},
"1090": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.newEmail"
},
"1091": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "__type.options"
},
"1092": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "GenerateLinkOptions"
},
"1093": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1094": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1095": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "GenerateLinkParams"
},
"1096": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "GenerateLinkResponse"
},
"1097": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type"
},
"1098": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.properties"
},
"1099": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.user"
},
"1100": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "GenerateLinkProperties"
},
"1101": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "__type"
},
"1102": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "__type.action_link"
},
"1103": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email_otp"
},
"1104": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "__type.hashed_token"
},
"1105": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type.redirect_to"
},
"1106": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "__type.verification_type"
},
"1107": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "GenerateLinkType"
},
"1108": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAEnrollParams"
},
"1109": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "MFAUnenrollParams"
},
"1110": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type"
},
"1111": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "__type.factorId"
},
"1112": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1113": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1114": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1115": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "__type"
},
"1116": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "__type.webauthn"
},
"1117": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "T"
},
"1118": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1119": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "T"
},
"1120": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAVerifyParams"
},
"1121": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFATOTPChannel"
},
"1122": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1123": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1124": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1125": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "MFAChallengeParams"
},
"1126": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1127": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1128": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "__type"
},
"1129": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "__type.access_token"
},
"1130": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.token_type"
},
"1131": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.expires_in"
},
"1132": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type.refresh_token"
},
"1133": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "__type.user"
},
"1134": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1135": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1136": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1137": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "__type"
},
"1138": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "__type.id"
},
"1139": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1140": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1141": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1142": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1143": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1144": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1145": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1146": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type"
},
"1147": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.all"
},
"1148": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "T"
},
"1149": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1150": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1151": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1152": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.currentLevel"
},
"1153": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type.nextLevel"
},
"1154": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1155": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "GoTrueMFAApi"
},
"1156": {
"sourceFileName": "src/lib/types.ts",
@@ -97642,91 +98521,91 @@
},
"1157": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1158": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1159": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1160": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1161": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "friendlyName"
},
"1162": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "issuer"
},
"1163": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1164": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1165": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1166": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1167": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1168": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "phone"
},
"1169": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1170": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1171": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1172": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorType"
},
"1173": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "friendlyName"
},
"1174": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1175": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "params"
},
"1176": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1177": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1178": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "params"
},
"1179": {
"sourceFileName": "src/lib/types.ts",
@@ -97734,15 +98613,15 @@
},
"1180": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "factorId"
},
"1181": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1182": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "data"
},
"1183": {
"sourceFileName": "src/lib/types.ts",
@@ -97750,11 +98629,11 @@
},
"1184": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type"
},
"1185": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "data"
},
"1186": {
"sourceFileName": "src/lib/types.ts",
@@ -97762,47 +98641,47 @@
},
"1187": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "id"
},
"1188": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "type"
},
"1189": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1190": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1191": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1192": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1193": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1194": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1195": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "channel"
},
"1196": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1197": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "data"
},
"1198": {
"sourceFileName": "src/lib/types.ts",
@@ -97810,11 +98689,11 @@
},
"1199": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type"
},
"1200": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "data"
},
"1201": {
"sourceFileName": "src/lib/types.ts",
@@ -97822,63 +98701,63 @@
},
"1202": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "id"
},
"1203": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "type"
},
"1204": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1205": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "error"
},
"1206": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1207": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1208": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1209": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "factorId"
},
"1210": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1211": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1212": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpId"
},
"1213": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type.rpOrigins"
},
"1214": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1215": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "data"
},
"1216": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "error"
},
"1217": {
"sourceFileName": "src/lib/types.ts",
@@ -97886,79 +98765,79 @@
},
"1218": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "data"
},
"1219": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1220": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "id"
},
"1221": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "type"
},
"1222": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1223": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "webauthn"
},
"1224": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1225": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.type"
},
"1226": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.credential_options"
},
"1227": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1228": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type.publicKey"
},
"1229": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "__type.type"
},
"1231": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "__type.credential_options"
},
"1232": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1233": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"1234": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "error"
},
"1235": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1236": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "params"
},
"1237": {
"sourceFileName": "src/lib/types.ts",
@@ -97966,143 +98845,143 @@
},
"1238": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1239": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1240": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1241": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1242": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1243": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1244": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1245": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1246": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1247": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1248": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "challengeId"
},
"1249": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1250": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1251": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1252": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "__type"
},
"1253": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "factorId"
},
"1254": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "challengeId"
},
"1255": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "webauthn"
},
"1256": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1257": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1258": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1259": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1260": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "params"
},
"1261": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1262": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1263": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "params"
},
"1264": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "__type"
},
"1265": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "factorId"
},
"1266": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "code"
},
"1267": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1268": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1269": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1270": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1271": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1272": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1273": {
"sourceFileName": "src/lib/types.ts",
@@ -98110,11 +98989,11 @@
},
"1274": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "__type.id"
},
"1275": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1276": {
"sourceFileName": "src/lib/types.ts",
@@ -98122,67 +99001,67 @@
},
"1277": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type.id"
},
"1278": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type.userId"
},
"1279": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1280": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "__type"
},
"1281": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.factors"
},
"1282": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1283": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "__type"
},
"1284": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.userId"
},
"1285": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1286": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1287": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1288": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "params"
},
"1289": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1290": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1291": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "params"
},
"1292": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "SupportedStorage"
},
"1293": {
"sourceFileName": "src/lib/types.ts",
@@ -98190,23 +99069,27 @@
},
"1294": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "__type.isServer"
},
"1295": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "InitializeResult"
},
"1296": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type"
},
"1297": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.error"
+ },
+ "1298": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "CallRefreshTokenResult"
},
"1299": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "PageParams"
+ "qualifiedName": "Pagination"
},
"1300": {
"sourceFileName": "src/lib/types.ts",
@@ -98214,459 +99097,455 @@
},
"1301": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.page"
+ "qualifiedName": "__type.nextPage"
},
"1302": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.perPage"
+ "qualifiedName": "__type.lastPage"
},
"1303": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignOut"
+ "qualifiedName": "__type.total"
},
"1304": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
- },
- "1305": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.__index"
},
"1306": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollTOTPParams"
+ "qualifiedName": "PageParams"
},
"1307": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollPhoneParams"
+ "qualifiedName": "__type"
},
"1308": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollWebauthnParams"
+ "qualifiedName": "__type.page"
},
"1309": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollTOTPResponse"
+ "qualifiedName": "__type.perPage"
},
"1310": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollPhoneResponse"
+ "qualifiedName": "SignOut"
},
"1311": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollWebauthnResponse"
+ "qualifiedName": "__type"
},
"1312": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtHeader"
+ "qualifiedName": "__type.scope"
},
"1313": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAEnrollTOTPParams"
},
"1314": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.alg"
+ "qualifiedName": "MFAEnrollPhoneParams"
},
"1315": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.kid"
+ "qualifiedName": "MFAEnrollWebauthnParams"
},
"1316": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.typ"
+ "qualifiedName": "AuthMFAEnrollTOTPResponse"
},
"1317": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "RequiredClaims"
+ "qualifiedName": "AuthMFAEnrollPhoneResponse"
},
"1318": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
"1319": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iss"
+ "qualifiedName": "JwtHeader"
},
"1320": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.sub"
+ "qualifiedName": "__type"
},
"1321": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.alg"
},
"1322": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.exp"
+ "qualifiedName": "__type.kid"
},
"1323": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iat"
+ "qualifiedName": "__type.typ"
},
"1324": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.role"
+ "qualifiedName": "RequiredClaims"
},
"1325": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aal"
+ "qualifiedName": "__type"
},
"1326": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session_id"
+ "qualifiedName": "__type.iss"
},
"1327": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload"
+ "qualifiedName": "__type.sub"
},
"1328": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.email"
+ "qualifiedName": "__type.aud"
},
"1329": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.phone"
+ "qualifiedName": "__type.exp"
},
"1330": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.is_anonymous"
+ "qualifiedName": "__type.iat"
},
"1331": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.jti"
+ "qualifiedName": "__type.role"
},
"1332": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.nbf"
+ "qualifiedName": "__type.aal"
},
"1333": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.app_metadata"
+ "qualifiedName": "__type.session_id"
},
"1334": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.user_metadata"
+ "qualifiedName": "JwtPayload"
},
"1335": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.amr"
+ "qualifiedName": "JwtPayload.email"
},
"1336": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.ref"
+ "qualifiedName": "JwtPayload.phone"
},
"1337": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iss"
+ "qualifiedName": "JwtPayload.is_anonymous"
},
"1338": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.sub"
+ "qualifiedName": "JwtPayload.jti"
},
"1339": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "JwtPayload.nbf"
},
"1340": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.exp"
+ "qualifiedName": "JwtPayload.app_metadata"
},
"1341": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iat"
+ "qualifiedName": "JwtPayload.user_metadata"
},
"1342": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.role"
+ "qualifiedName": "JwtPayload.amr"
},
"1343": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aal"
+ "qualifiedName": "JwtPayload.ref"
},
"1344": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session_id"
+ "qualifiedName": "__type.iss"
},
"1345": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.__index"
+ "qualifiedName": "__type.sub"
+ },
+ "1346": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.aud"
},
"1347": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK"
+ "qualifiedName": "__type.exp"
},
"1348": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.kty"
+ "qualifiedName": "__type.iat"
},
"1349": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.key_ops"
+ "qualifiedName": "__type.role"
},
"1350": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.alg"
+ "qualifiedName": "__type.aal"
},
"1351": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.kid"
+ "qualifiedName": "__type.session_id"
},
"1352": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.__index"
+ "qualifiedName": "JwtPayload.__index"
},
"1354": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
+ "qualifiedName": "JWK"
},
"1355": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "JWK.kty"
},
"1356": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "JWK.key_ops"
},
"1357": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "JWK.alg"
},
"1358": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "JWK.kid"
},
"1359": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
- },
- "1360": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "JWK.__index"
},
"1361": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1362": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "SignOutScope"
},
"1363": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "OAuthClientGrantType"
},
"1364": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "OAuthClientResponseType"
},
"1365": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "OAuthClientType"
},
"1366": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1367": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "OAuthClient"
},
"1368": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type"
},
"1369": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_id"
},
"1370": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_name"
},
"1371": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.client_secret"
},
"1372": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.client_type"
},
"1373": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1374": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.registration_type"
},
"1375": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.client_uri"
},
"1376": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.logo_uri"
},
"1377": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.redirect_uris"
},
"1378": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.grant_types"
},
"1379": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.response_types"
},
"1380": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.scope"
},
"1381": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.created_at"
},
"1382": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.updated_at"
},
"1383": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1384": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type"
},
"1385": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.client_name"
},
"1386": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.client_uri"
},
"1387": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.redirect_uris"
},
"1388": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.grant_types"
},
"1389": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.response_types"
},
"1390": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.scope"
},
"1391": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1392": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "__type"
},
"1393": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.client_name"
},
"1394": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.client_uri"
},
"1395": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.logo_uri"
},
"1396": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type.redirect_uris"
},
"1397": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.grant_types"
},
"1398": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "OAuthClientResponse"
},
"1399": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientListResponse"
},
"1400": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1401": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1402": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1403": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1404": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.aud"
},
"1405": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "__type.error"
},
"1406": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "__type"
},
"1407": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.data"
},
"1408": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "__type"
},
"1409": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "__type.clients"
},
"1410": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.error"
},
"1411": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1412": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1413": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1414": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "params"
},
"1415": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1416": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1417": {
"sourceFileName": "src/lib/types.ts",
@@ -98674,11 +99553,11 @@
},
"1418": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1419": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1420": {
"sourceFileName": "src/lib/types.ts",
@@ -98686,31 +99565,31 @@
},
"1421": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1422": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1423": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "clientId"
},
"1424": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "params"
},
"1425": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1426": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1427": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "clientId"
},
"1428": {
"sourceFileName": "src/lib/types.ts",
@@ -98718,107 +99597,107 @@
},
"1429": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "__type.data"
},
"1430": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.error"
},
"1431": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1432": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1433": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "clientId"
},
"1434": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1435": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "__type"
},
"1436": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type.id"
},
"1437": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.name"
},
"1438": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.uri"
},
"1439": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.logo_uri"
},
"1440": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1441": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1442": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.authorization_id"
},
"1443": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.redirect_uri"
},
"1444": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "__type.client"
},
"1445": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1446": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "__type"
},
"1447": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type.id"
},
"1448": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "__type.email"
},
"1449": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "__type.scope"
},
"1450": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1451": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1452": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "__type"
},
"1453": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "__type.redirect_url"
},
"1454": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "OAuthGrant"
},
"1455": {
"sourceFileName": "src/lib/types.ts",
@@ -98826,23 +99705,23 @@
},
"1456": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.client"
},
"1457": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.scopes"
},
"1458": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.granted_at"
},
"1459": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1460": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1461": {
"sourceFileName": "src/lib/types.ts",
@@ -98850,637 +99729,725 @@
},
"1462": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1463": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1464": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1465": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1466": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1467": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1468": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1469": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1470": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1471": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1472": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1473": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1474": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1475": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1476": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1477": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1478": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1479": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1480": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1481": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1482": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1483": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1484": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
+ },
+ "1485": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1464": {
+ "1486": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1465": {
+ "1487": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1466": {
+ "1488": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1467": {
+ "1489": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1468": {
+ "1490": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1469": {
+ "1491": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1470": {
+ "1492": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1471": {
+ "1493": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1472": {
+ "1494": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1473": {
+ "1495": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1474": {
+ "1496": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1475": {
+ "1497": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1476": {
+ "1498": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1477": {
+ "1499": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1478": {
+ "1500": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1479": {
+ "1501": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1480": {
+ "1502": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1481": {
+ "1503": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1482": {
+ "1504": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.__constructor"
},
- "1483": {
+ "1505": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1484": {
+ "1506": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1485": {
+ "1507": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1486": {
+ "1508": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1487": {
+ "1509": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1488": {
+ "1510": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1489": {
+ "1511": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1491": {
+ "1513": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1492": {
+ "1514": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1493": {
+ "1515": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1494": {
+ "1516": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1495": {
+ "1517": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1496": {
+ "1518": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1497": {
+ "1519": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1498": {
+ "1520": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1499": {
+ "1521": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1501": {
+ "1523": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1502": {
+ "1524": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1503": {
+ "1525": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1504": {
+ "1526": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1505": {
+ "1527": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1506": {
+ "1528": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1507": {
+ "1529": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1508": {
+ "1530": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1509": {
+ "1531": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1511": {
+ "1533": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1512": {
+ "1534": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1513": {
+ "1535": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1514": {
+ "1536": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1515": {
+ "1537": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "name"
},
- "1516": {
+ "1538": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1517": {
+ "1539": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1518": {
+ "1540": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1519": {
+ "1541": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1520": {
+ "1542": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1521": {
+ "1543": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1523": {
+ "1545": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1524": {
+ "1546": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1525": {
+ "1547": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1526": {
+ "1548": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1527": {
+ "1549": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1528": {
+ "1550": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1529": {
+ "1551": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1531": {
+ "1553": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1532": {
+ "1554": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1533": {
+ "1555": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1534": {
+ "1556": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1535": {
+ "1557": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1536": {
+ "1558": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1537": {
+ "1559": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1539": {
+ "1561": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1540": {
+ "1562": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1541": {
+ "1563": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1542": {
+ "1564": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1543": {
+ "1565": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1544": {
+ "1566": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1545": {
+ "1567": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1546": {
+ "1568": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1548": {
+ "1570": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1549": {
+ "1571": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1550": {
+ "1572": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1551": {
+ "1573": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1552": {
+ "1574": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1553": {
+ "1575": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1554": {
+ "1576": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1555": {
+ "1577": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1556": {
+ "1578": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1557": {
+ "1579": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1558": {
+ "1580": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1559": {
+ "1581": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1560": {
+ "1582": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1561": {
+ "1583": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1562": {
+ "1584": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1563": {
+ "1585": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1564": {
+ "1586": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1565": {
+ "1587": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1566": {
+ "1588": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1567": {
+ "1589": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1568": {
+ "1590": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1569": {
+ "1591": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1570": {
+ "1592": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1571": {
+ "1593": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1572": {
+ "1594": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1573": {
+ "1595": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1575": {
+ "1597": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1576": {
+ "1598": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1577": {
+ "1599": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1578": {
+ "1600": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1579": {
+ "1601": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1580": {
+ "1602": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1581": {
+ "1603": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1582": {
+ "1604": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1583": {
+ "1605": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1584": {
+ "1606": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1585": {
+ "1607": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1586": {
+ "1608": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1587": {
+ "1609": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1588": {
+ "1610": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1589": {
+ "1611": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1590": {
+ "1612": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1591": {
+ "1613": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1592": {
+ "1614": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1593": {
+ "1615": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1594": {
+ "1616": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1595": {
+ "1617": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1596": {
+ "1618": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1597": {
+ "1619": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1598": {
+ "1620": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1599": {
+ "1621": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1600": {
+ "1622": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1602": {
+ "1624": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1603": {
+ "1625": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1604": {
+ "1626": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1605": {
+ "1627": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1606": {
+ "1628": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1607": {
+ "1629": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1608": {
+ "1630": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1609": {
+ "1631": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1610": {
+ "1632": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1612": {
+ "1634": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1613": {
+ "1635": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1614": {
+ "1636": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1615": {
+ "1637": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1616": {
+ "1638": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1617": {
+ "1639": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1618": {
+ "1640": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1619": {
+ "1641": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1620": {
+ "1642": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1621": {
+ "1643": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1622": {
+ "1644": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1624": {
+ "1646": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1625": {
+ "1647": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1626": {
+ "1648": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1627": {
+ "1649": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1628": {
+ "1650": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1629": {
+ "1651": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1630": {
+ "1652": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1631": {
+ "1653": {
"sourceFileName": "",
"qualifiedName": "__type"
}
@@ -99522,7 +100489,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"signatures": [
@@ -99556,7 +100523,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"typeParameters": [
@@ -99625,7 +100592,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -99646,7 +100613,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -99873,7 +100840,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -99899,7 +100866,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -99918,7 +100885,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"type": {
@@ -99960,7 +100927,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -99981,7 +100948,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -100002,7 +100969,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -100026,7 +100993,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -100051,7 +101018,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
]
}
@@ -100108,7 +101075,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -100129,7 +101096,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -100358,7 +101325,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -100384,7 +101351,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -100405,7 +101372,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -100448,7 +101415,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -100469,7 +101436,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -100492,7 +101459,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -100518,7 +101485,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -100542,7 +101509,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"signatures": [
@@ -100593,7 +101560,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"typeParameters": [
@@ -100648,7 +101615,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -100668,7 +101635,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -100693,7 +101660,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -100713,7 +101680,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -100938,7 +101905,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
}
],
"signatures": [
@@ -100980,7 +101947,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
}
],
"typeParameters": [
@@ -101065,7 +102032,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"signatures": [
@@ -101088,7 +102055,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"parameters": [
@@ -101133,7 +102100,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"signatures": [
@@ -101167,7 +102134,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"typeParameters": [
@@ -101274,7 +102241,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"signatures": [
@@ -101289,7 +102256,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"parameters": [
@@ -101421,7 +102388,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"signatures": [
@@ -101436,7 +102403,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"parameters": [
@@ -101544,7 +102511,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -101573,7 +102540,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"type": {
@@ -101666,7 +102633,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 12,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
}
],
"typeParameters": [
@@ -101800,7 +102767,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
}
],
"signatures": [
@@ -101834,7 +102801,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
}
],
"typeParameters": [
@@ -101891,7 +102858,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -101917,7 +102884,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -102171,7 +103138,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 70,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L70"
}
],
"type": {
@@ -102408,7 +103375,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 68,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L68"
}
],
"type": {
@@ -102443,7 +103410,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 69,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L69"
}
],
"type": {
@@ -102467,7 +103434,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 67,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L67"
}
]
}
@@ -102532,7 +103499,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
}
],
"type": {
@@ -102759,7 +103726,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
}
],
"type": {
@@ -102785,7 +103752,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
}
],
"type": {
@@ -102808,7 +103775,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
}
],
"type": {
@@ -102847,19 +103814,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L90"
}
],
"signatures": [
@@ -102874,7 +103841,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
}
],
"typeParameters": [
@@ -102973,7 +103940,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
}
],
"typeParameters": [
@@ -103074,7 +104041,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
}
],
"signatures": [
@@ -103097,7 +104064,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
}
],
"typeParameters": [
@@ -103323,7 +104290,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 162,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L162"
}
],
"type": {
@@ -103373,7 +104340,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 161,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L161"
}
],
"type": {
@@ -103419,7 +104386,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 160,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L160"
}
],
"type": {
@@ -103440,7 +104407,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 159,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L159"
}
]
}
@@ -103547,7 +104514,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
}
],
"signatures": [
@@ -103570,7 +104537,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
}
],
"typeParameters": [
@@ -103710,7 +104677,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 16,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
}
],
"typeParameters": [
@@ -103775,7 +104742,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -103801,7 +104768,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -103829,7 +104796,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 22,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
}
]
}
@@ -104103,7 +105070,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"signatures": [
@@ -104132,7 +105099,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"parameters": [
@@ -104162,7 +105129,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 73,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -104181,7 +105148,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -104200,7 +105167,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -104219,7 +105186,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -104239,7 +105206,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
]
}
@@ -104277,7 +105244,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L9"
}
],
"type": {
@@ -104296,7 +105263,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L7"
}
],
"type": {
@@ -104315,7 +105282,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L8"
}
],
"type": {
@@ -104339,7 +105306,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 6,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L6"
}
],
"extendedTypes": [
@@ -104372,7 +105339,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"signatures": [
@@ -104406,7 +105373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"typeParameters": [
@@ -104535,7 +105502,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -104556,7 +105523,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -104783,7 +105750,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -104809,7 +105776,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -104828,7 +105795,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"type": {
@@ -104870,7 +105837,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -104891,7 +105858,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -104912,7 +105879,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -104936,7 +105903,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -104961,7 +105928,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
]
}
@@ -105061,7 +106028,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -105088,7 +106055,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -105323,7 +106290,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -105355,7 +106322,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -105382,7 +106349,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -105431,7 +106398,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -105458,7 +106425,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -105487,7 +106454,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -105519,7 +106486,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -105550,7 +106517,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -105575,7 +106542,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -105678,19 +106645,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 368,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L368"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L368"
}
],
"signatures": [
@@ -105705,7 +106672,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
}
],
"typeParameters": [
@@ -105813,7 +106780,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
}
],
"parameters": [
@@ -105939,19 +106906,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 341,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L341"
}
],
"signatures": [
@@ -105966,7 +106933,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
}
],
"typeParameters": [
@@ -106074,7 +107041,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
}
],
"parameters": [
@@ -106156,7 +107123,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -106189,7 +107156,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -106237,7 +107204,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
}
],
"signatures": [
@@ -106292,7 +107259,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
}
],
"typeParameters": [
@@ -106490,7 +107457,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -106523,7 +107490,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -106579,7 +107546,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -106617,7 +107584,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -106659,7 +107626,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -106706,7 +107673,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -106752,7 +107719,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -106790,7 +107757,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -106811,7 +107778,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -106972,19 +107939,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 602,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L602"
}
],
"signatures": [
@@ -106999,7 +107966,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
}
],
"typeParameters": [
@@ -107167,7 +108134,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
}
],
"parameters": [
@@ -107225,7 +108192,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -107258,7 +108225,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -107367,19 +108334,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L142"
}
],
"signatures": [
@@ -107394,7 +108361,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
}
],
"typeParameters": [
@@ -107467,7 +108434,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
}
],
"parameters": [
@@ -107558,19 +108525,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 147,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L155"
}
],
"signatures": [
@@ -107585,7 +108552,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 147,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
}
],
"typeParameters": [
@@ -107658,7 +108625,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
}
],
"parameters": [
@@ -107749,19 +108716,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 232,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L239"
}
],
"signatures": [
@@ -107776,7 +108743,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
}
],
"typeParameters": [
@@ -107835,7 +108802,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 232,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
}
],
"parameters": [
@@ -107926,19 +108893,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 255,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L255"
}
],
"signatures": [
@@ -107953,7 +108920,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
}
],
"typeParameters": [
@@ -108019,7 +108986,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
}
],
"parameters": [
@@ -108117,19 +109084,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 271,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L271"
}
],
"signatures": [
@@ -108144,7 +109111,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
}
],
"typeParameters": [
@@ -108210,7 +109177,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
}
],
"parameters": [
@@ -108262,7 +109229,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
}
],
"signatures": [
@@ -108301,7 +109268,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
}
],
"typeParameters": [
@@ -108589,19 +109556,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
}
],
"signatures": [
@@ -108616,7 +109583,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
}
],
"typeParameters": [
@@ -108707,7 +109674,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
}
],
"parameters": [
@@ -108807,19 +109774,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 194,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L194"
}
],
"signatures": [
@@ -108834,7 +109801,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
}
],
"typeParameters": [
@@ -108893,7 +109860,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
}
],
"parameters": [
@@ -108984,19 +109951,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 203,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 210,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L210"
}
],
"signatures": [
@@ -109011,7 +109978,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
}
],
"typeParameters": [
@@ -109077,7 +110044,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 203,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
}
],
"parameters": [
@@ -109175,19 +110142,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 226,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L226"
}
],
"signatures": [
@@ -109202,7 +110169,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
}
],
"typeParameters": [
@@ -109268,7 +110235,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
}
],
"parameters": [
@@ -109322,7 +110289,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -109355,7 +110322,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -109430,7 +110397,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -109459,7 +110426,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -109480,7 +110447,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -109562,19 +110529,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 168,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L168"
}
],
"signatures": [
@@ -109589,7 +110556,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
}
],
"typeParameters": [
@@ -109662,7 +110629,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
}
],
"parameters": [
@@ -109753,19 +110720,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L181"
}
],
"signatures": [
@@ -109780,7 +110747,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
}
],
"typeParameters": [
@@ -109853,7 +110820,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
}
],
"parameters": [
@@ -109934,19 +110901,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 525,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L525"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L525"
}
],
"signatures": [
@@ -109961,7 +110928,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
}
],
"typeParameters": [
@@ -110038,7 +111005,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
}
],
"parameters": [
@@ -110089,7 +111056,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -110114,7 +111081,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -110320,7 +111287,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -110361,7 +111328,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -110468,7 +111435,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
}
],
"signatures": [
@@ -110507,7 +111474,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
}
],
"typeParameters": [
@@ -110742,19 +111709,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 551,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551"
}
],
"signatures": [
@@ -110769,7 +111736,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
}
],
"typeParameters": [
@@ -110858,7 +111825,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
}
],
"parameters": [
@@ -110914,7 +111881,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
}
],
"signatures": [
@@ -110953,7 +111920,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
}
],
"parameters": [
@@ -111028,7 +111995,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 576,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
],
"type": {
@@ -111057,7 +112024,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 576,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
],
"type": {
@@ -111078,7 +112045,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 576,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
]
}
@@ -111240,31 +112207,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -111281,7 +112248,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -111342,7 +112309,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -111363,7 +112330,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -111384,7 +112351,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -111404,7 +112371,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -111434,7 +112401,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -111479,7 +112446,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -111500,7 +112467,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -111521,7 +112488,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -111541,7 +112508,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -111597,7 +112564,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -111658,7 +112625,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -111679,7 +112646,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -111700,7 +112667,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -111720,7 +112687,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -111776,7 +112743,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -111821,7 +112788,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -111842,7 +112809,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -111863,7 +112830,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -111883,7 +112850,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -111964,19 +112931,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 467,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L467"
}
],
"signatures": [
@@ -111991,7 +112958,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
}
],
"typeParameters": [
@@ -112080,7 +113047,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
}
],
"parameters": [
@@ -112143,7 +113110,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"signatures": [
@@ -112196,7 +113163,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"typeParameters": [
@@ -112251,7 +113218,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -112271,7 +113238,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -112296,7 +113263,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -112316,7 +113283,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -112549,7 +113516,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -112614,7 +113581,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -112708,7 +113675,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -112737,7 +113704,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -112758,7 +113725,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -112840,19 +113807,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 450,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450"
}
],
"signatures": [
@@ -112867,7 +113834,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
}
],
"typeParameters": [
@@ -112926,7 +113893,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
}
],
"parameters": [
@@ -113017,19 +113984,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 391,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L391"
}
],
"signatures": [
@@ -113044,7 +114011,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
}
],
"typeParameters": [
@@ -113103,7 +114070,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
}
],
"parameters": [
@@ -113202,19 +114169,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406"
}
],
"signatures": [
@@ -113229,7 +114196,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
}
],
"typeParameters": [
@@ -113288,7 +114255,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
}
],
"parameters": [
@@ -113379,19 +114346,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 420,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L420"
}
],
"signatures": [
@@ -113406,7 +114373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
}
],
"typeParameters": [
@@ -113465,7 +114432,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
}
],
"parameters": [
@@ -113564,19 +114531,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 425,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 435,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435"
}
],
"signatures": [
@@ -113591,7 +114558,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 425,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
}
],
"typeParameters": [
@@ -113650,7 +114617,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
}
],
"parameters": [
@@ -113697,7 +114664,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -113741,7 +114708,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -113870,7 +114837,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -113903,7 +114870,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -113936,7 +114903,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -114001,7 +114968,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -114252,7 +115219,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"signatures": [
@@ -114277,7 +115244,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"parameters": [
@@ -114334,7 +115301,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -114375,7 +115342,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -114557,19 +115524,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 498,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L498"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L498"
}
],
"signatures": [
@@ -114584,7 +115551,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
}
],
"typeParameters": [
@@ -114656,7 +115623,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 481,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
],
"type": {
@@ -114677,7 +115644,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 481,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
],
"type": {
@@ -114710,7 +115677,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 481,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
]
}
@@ -114733,7 +115700,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
}
],
"parameters": [
@@ -114789,7 +115756,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 486,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
],
"type": {
@@ -114810,7 +115777,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 486,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
],
"type": {
@@ -114843,7 +115810,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 486,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
]
}
@@ -114870,7 +115837,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"signatures": [
@@ -114906,7 +115873,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"typeParameters": [
@@ -114982,7 +115949,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"signatures": [
@@ -114997,7 +115964,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"parameters": [
@@ -115098,7 +116065,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"signatures": [
@@ -115113,7 +116080,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"parameters": [
@@ -115223,7 +116190,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -115254,7 +116221,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"type": {
@@ -115393,7 +116360,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 76,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L76"
}
],
"typeParameters": [
@@ -115578,7 +116545,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
}
],
"signatures": [
@@ -115612,7 +116579,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
}
],
"typeParameters": [
@@ -115722,7 +116689,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -115748,7 +116715,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -115815,7 +116782,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 46,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
}
],
"type": {
@@ -116044,7 +117011,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44"
}
],
"type": {
@@ -116071,7 +117038,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 45,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
}
],
"type": {
@@ -116091,7 +117058,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 43,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43"
}
]
}
@@ -116163,7 +117130,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
}
],
"type": {
@@ -116390,7 +117357,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
}
],
"type": {
@@ -116416,7 +117383,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
}
],
"type": {
@@ -116437,7 +117404,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
}
],
"type": {
@@ -116461,7 +117428,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
}
],
"type": {
@@ -116485,7 +117452,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
}
],
"signatures": [
@@ -116516,7 +117483,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
}
],
"parameters": [
@@ -116596,7 +117563,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 432,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432"
}
],
"type": {
@@ -116629,7 +117596,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 431,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L431"
}
]
}
@@ -116813,19 +117780,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189"
}
],
"signatures": [
@@ -116840,7 +117807,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
}
],
"typeParameters": [
@@ -116916,7 +117883,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 137,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137"
}
],
"type": {
@@ -116949,7 +117916,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 136,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136"
}
]
}
@@ -117032,7 +117999,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
}
],
"typeParameters": [
@@ -117111,7 +118078,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 151,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151"
}
],
"type": {
@@ -117145,7 +118112,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 152,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152"
}
],
"type": {
@@ -117165,7 +118132,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 150,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150"
}
]
}
@@ -117250,7 +118217,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
}
],
"signatures": [
@@ -117273,7 +118240,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
}
],
"typeParameters": [
@@ -117469,7 +118436,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90"
}
],
"type": {
@@ -117527,7 +118494,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 89,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89"
}
],
"type": {
@@ -117547,7 +118514,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88"
}
]
}
@@ -117638,7 +118605,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 379,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
}
],
"signatures": [
@@ -117669,7 +118636,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 379,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
}
],
"typeParameters": [
@@ -117799,7 +118766,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 384,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L384"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L384"
}
],
"type": {
@@ -117832,7 +118799,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 383,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L383"
}
]
}
@@ -118108,19 +119075,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 306,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L306"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L306"
}
],
"signatures": [
@@ -118135,7 +119102,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
}
],
"typeParameters": [
@@ -118211,7 +119178,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 240,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240"
}
],
"type": {
@@ -118245,7 +119212,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 239,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239"
}
],
"type": {
@@ -118266,7 +119233,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 238,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238"
}
],
"type": {
@@ -118286,7 +119253,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 237,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237"
}
]
}
@@ -118369,7 +119336,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
}
],
"typeParameters": [
@@ -118448,7 +119415,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 256,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256"
}
],
"type": {
@@ -118482,7 +119449,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 257,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257"
}
],
"type": {
@@ -118503,7 +119470,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 255,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255"
}
],
"type": {
@@ -118524,7 +119491,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 254,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254"
}
],
"type": {
@@ -118544,7 +119511,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 253,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253"
}
]
}
@@ -118638,7 +119605,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
}
],
"typeParameters": [
@@ -118748,7 +119715,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -118768,7 +119735,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -118809,7 +119776,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"signatures": [
@@ -118843,7 +119810,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"typeParameters": [
@@ -118972,7 +119939,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -118993,7 +119960,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -119220,7 +120187,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -119246,7 +120213,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -119265,7 +120232,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"type": {
@@ -119307,7 +120274,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -119328,7 +120295,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -119349,7 +120316,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -119373,7 +120340,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -119398,7 +120365,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
]
}
@@ -119498,7 +120465,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -119525,7 +120492,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -119760,7 +120727,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -119792,7 +120759,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -119819,7 +120786,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -119868,7 +120835,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -119895,7 +120862,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -119924,7 +120891,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -119956,7 +120923,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -119985,7 +120952,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -120008,7 +120975,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -120055,7 +121022,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -120086,7 +121053,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -120124,7 +121091,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -120155,7 +121122,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -120211,7 +121178,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -120249,7 +121216,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -120291,7 +121258,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -120338,7 +121305,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -120384,7 +121351,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -120422,7 +121389,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -120443,7 +121410,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -120538,7 +121505,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -120569,7 +121536,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -120622,7 +121589,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -120653,7 +121620,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -120728,7 +121695,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -120757,7 +121724,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -120778,7 +121745,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -120804,7 +121771,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -120827,7 +121794,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -121021,7 +121988,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -121060,7 +122027,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -121291,31 +122258,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -121330,7 +122297,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -121391,7 +122358,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -121412,7 +122379,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -121433,7 +122400,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -121453,7 +122420,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -121476,7 +122443,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -121521,7 +122488,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -121542,7 +122509,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -121563,7 +122530,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -121583,7 +122550,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -121632,7 +122599,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -121693,7 +122660,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -121714,7 +122681,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -121735,7 +122702,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -121755,7 +122722,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -121804,7 +122771,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -121849,7 +122816,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -121870,7 +122837,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -121891,7 +122858,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -121911,7 +122878,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -121938,7 +122905,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"signatures": [
@@ -121991,7 +122958,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"typeParameters": [
@@ -122046,7 +123013,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -122066,7 +123033,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -122091,7 +123058,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -122111,7 +123078,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -122342,7 +123309,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -122405,7 +123372,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -122499,7 +123466,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -122528,7 +123495,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -122549,7 +123516,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -122575,7 +123542,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -122617,7 +123584,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -122744,7 +123711,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -122775,7 +123742,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -122796,7 +123763,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -122859,7 +123826,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -123100,7 +124067,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"signatures": [
@@ -123125,7 +124092,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"parameters": [
@@ -123180,7 +124147,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -123219,7 +124186,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -123309,7 +124276,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"signatures": [
@@ -123345,7 +124312,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"typeParameters": [
@@ -123421,7 +124388,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"signatures": [
@@ -123436,7 +124403,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"parameters": [
@@ -123537,7 +124504,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"signatures": [
@@ -123552,7 +124519,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"parameters": [
@@ -123662,7 +124629,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -123693,7 +124660,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"type": {
@@ -123830,7 +124797,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
}
],
"typeParameters": [
@@ -123982,7 +124949,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L23"
}
],
"type": {
@@ -124001,7 +124968,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L22"
}
],
"type": {
@@ -124020,7 +124987,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L21"
}
],
"type": {
@@ -124044,7 +125011,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -124070,7 +125037,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -124095,7 +125062,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 20,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L20"
}
],
"extendedTypes": [
@@ -124128,7 +125095,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L18"
}
],
"type": {
@@ -124156,7 +125123,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L17"
}
],
"type": {
@@ -124179,7 +125146,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L16"
}
],
"type": {
@@ -124200,7 +125167,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -124226,7 +125193,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -124251,7 +125218,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 15,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L15"
}
],
"typeParameters": [
@@ -124286,7 +125253,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
],
"type": {
@@ -124311,7 +125278,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/common/common.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L55"
}
],
"type": {
@@ -124331,7 +125298,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
]
}
@@ -124348,7 +125315,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L30"
}
],
"typeParameters": [
@@ -124396,7 +125363,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L31"
}
],
"typeParameters": [
@@ -124438,7 +125405,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L29"
}
],
"typeParameters": [
@@ -124496,7 +125463,7 @@
"fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts",
"line": 38,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
}
],
"typeParameters": [
@@ -125081,7 +126048,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17"
}
],
"type": {
@@ -125104,7 +126071,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L22"
}
],
"type": {
@@ -125128,7 +126095,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L18"
}
],
"type": {
@@ -125152,7 +126119,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L23"
}
],
"type": {
@@ -125176,7 +126143,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L20"
}
],
"type": {
@@ -125200,7 +126167,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L19"
}
],
"type": {
@@ -125224,7 +126191,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L21"
}
],
"type": {
@@ -125249,7 +126216,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17"
}
]
}
@@ -128775,7 +129742,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
}
],
"type": {
@@ -128794,7 +129761,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
}
],
"type": {
@@ -128813,7 +129780,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
}
],
"type": {
@@ -128832,7 +129799,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
}
],
"type": {
@@ -128852,7 +129819,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 134,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
}
]
},
@@ -128874,7 +129841,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
}
],
"type": {
@@ -128893,7 +129860,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
}
],
"type": {
@@ -128912,7 +129879,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 129,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
}
],
"type": {
@@ -128931,7 +129898,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
}
],
"type": {
@@ -128951,7 +129918,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 127,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
}
]
},
@@ -128973,7 +129940,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L33"
}
],
"type": {
@@ -128992,7 +129959,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L34"
}
],
"type": {
@@ -129011,7 +129978,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L32"
}
],
"type": {
@@ -129031,7 +129998,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L31"
}
]
},
@@ -129053,7 +130020,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
}
],
"type": {
@@ -129072,7 +130039,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
}
],
"type": {
@@ -129091,7 +130058,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
}
],
"type": {
@@ -129110,7 +130077,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
}
],
"type": {
@@ -129130,7 +130097,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 141,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
}
]
},
@@ -129160,7 +130127,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"signatures": [
@@ -129194,7 +130161,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"parameters": [
@@ -129267,7 +130234,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"type": {
@@ -129283,7 +130250,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"indexSignatures": [
@@ -129298,7 +130265,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
],
"parameters": [
@@ -129336,7 +130303,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 169,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
}
],
"type": {
@@ -129360,7 +130327,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"type": {
@@ -129376,7 +130343,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"indexSignatures": [
@@ -129391,7 +130358,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"parameters": [
@@ -129429,7 +130396,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
}
],
"type": {
@@ -129448,7 +130415,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 167,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
}
],
"type": {
@@ -129468,7 +130435,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
]
}
@@ -129491,7 +130458,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
}
],
"type": {
@@ -129510,7 +130477,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
}
],
"type": {
@@ -129530,7 +130497,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
}
],
"type": {
@@ -129557,7 +130524,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 203,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
}
],
"type": {
@@ -129579,7 +130546,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
}
],
"type": {
@@ -129601,7 +130568,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
}
],
"type": {
@@ -129620,7 +130587,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
}
],
"type": {
@@ -129649,7 +130616,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
}
],
"type": {
@@ -129676,7 +130643,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 204,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
}
],
"type": {
@@ -129698,7 +130665,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
}
],
"type": {
@@ -129723,7 +130690,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
}
],
"type": {
@@ -129742,7 +130709,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
}
],
"type": {
@@ -129771,7 +130738,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 202,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
}
],
"type": {
@@ -129790,7 +130757,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 549,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
}
],
"signatures": [
@@ -129824,7 +130791,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 549,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
}
],
"parameters": [
@@ -129902,7 +130869,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 552,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
}
],
"type": {
@@ -129922,7 +130889,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 552,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
}
]
}
@@ -129960,7 +130927,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -129980,7 +130947,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
]
}
@@ -130005,7 +130972,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -130024,7 +130991,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -130043,7 +131010,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -130063,7 +131030,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
]
}
@@ -130088,91 +131055,91 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 416,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 524,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
}
],
"signatures": [
@@ -130195,7 +131162,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 416,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
}
],
"parameters": [
@@ -130236,7 +131203,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 418,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
}
],
"type": {
@@ -130256,7 +131223,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 418,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
}
]
}
@@ -130281,7 +131248,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
}
],
"signatures": [
@@ -130296,7 +131263,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
}
],
"type": {
@@ -130336,7 +131303,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"typeParameters": [
@@ -130359,7 +131326,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"indexSignatures": [
@@ -130374,7 +131341,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"parameters": [
@@ -130438,7 +131405,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 423,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
}
],
"type": {
@@ -130458,7 +131425,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 423,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
}
]
}
@@ -130483,7 +131450,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"signatures": [
@@ -130498,7 +131465,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"parameters": [
@@ -130562,7 +131529,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"typeParameters": [
@@ -130585,7 +131552,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"indexSignatures": [
@@ -130600,7 +131567,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"parameters": [
@@ -130664,7 +131631,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 428,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
}
],
"type": {
@@ -130684,7 +131651,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 428,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
}
]
}
@@ -130709,7 +131676,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"signatures": [
@@ -130724,7 +131691,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"parameters": [
@@ -130788,7 +131755,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"typeParameters": [
@@ -130811,7 +131778,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"indexSignatures": [
@@ -130826,7 +131793,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"parameters": [
@@ -130902,7 +131869,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"signatures": [
@@ -130917,7 +131884,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"parameters": [
@@ -130981,7 +131948,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
}
],
"typeParameters": [
@@ -131004,7 +131971,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
}
],
"indexSignatures": [
@@ -131019,7 +131986,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
}
],
"parameters": [
@@ -131095,7 +132062,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"signatures": [
@@ -131110,7 +132077,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"parameters": [
@@ -131174,7 +132141,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"typeParameters": [
@@ -131197,7 +132164,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"indexSignatures": [
@@ -131212,7 +132179,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"parameters": [
@@ -131288,7 +132255,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"signatures": [
@@ -131303,7 +132270,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"parameters": [
@@ -131367,7 +132334,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
}
],
"typeParameters": [
@@ -131390,7 +132357,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
}
],
"indexSignatures": [
@@ -131405,7 +132372,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
}
],
"parameters": [
@@ -131481,7 +132448,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"signatures": [
@@ -131496,7 +132463,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"parameters": [
@@ -131560,7 +132527,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"parameters": [
@@ -131617,7 +132584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 459,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
}
],
"type": {
@@ -131637,7 +132604,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 459,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
}
]
}
@@ -131670,7 +132637,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 460,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
}
],
"signatures": [
@@ -131685,7 +132652,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 460,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
}
],
"parameters": [
@@ -131715,7 +132682,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 462,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L462"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L462"
}
],
"type": {
@@ -131736,7 +132703,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 463,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
}
],
"type": {
@@ -131759,7 +132726,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 465,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
}
],
"type": {
@@ -131780,7 +132747,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 464,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L464"
}
],
"type": {
@@ -131800,7 +132767,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 463,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
}
]
}
@@ -131817,7 +132784,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 461,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L461"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L461"
}
],
"type": {
@@ -131837,7 +132804,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 460,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
}
],
"indexSignatures": [
@@ -131852,7 +132819,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 467,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
}
],
"parameters": [
@@ -131915,7 +132882,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"typeParameters": [
@@ -131938,7 +132905,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"indexSignatures": [
@@ -131953,7 +132920,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"parameters": [
@@ -132017,7 +132984,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 472,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
],
"type": {
@@ -132037,7 +133004,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 472,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
]
}
@@ -132062,7 +133029,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
],
"signatures": [
@@ -132077,7 +133044,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
],
"parameters": [
@@ -132107,7 +133074,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 475,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
}
],
"type": {
@@ -132128,7 +133095,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 476,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
}
],
"type": {
@@ -132151,7 +133118,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"type": {
@@ -132172,7 +133139,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 477,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L477"
}
],
"type": {
@@ -132192,7 +133159,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 476,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
}
]
}
@@ -132209,7 +133176,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 480,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
}
],
"type": {
@@ -132231,7 +133198,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 474,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L474"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L474"
}
],
"type": {
@@ -132251,7 +133218,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
]
}
@@ -132295,7 +133262,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
}
],
"typeParameters": [
@@ -132364,7 +133331,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 485,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
}
],
"type": {
@@ -132387,7 +133354,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 485,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
}
]
}
@@ -132412,7 +133379,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
],
"signatures": [
@@ -132427,7 +133394,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
],
"parameters": [
@@ -132457,7 +133424,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 488,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
}
],
"type": {
@@ -132479,7 +133446,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 489,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L489"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L489"
}
],
"type": {
@@ -132512,7 +133479,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 487,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L487"
}
],
"type": {
@@ -132532,7 +133499,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
]
}
@@ -132576,7 +133543,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
}
],
"typeParameters": [
@@ -132599,7 +133566,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
}
],
"indexSignatures": [
@@ -132614,7 +133581,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
}
],
"parameters": [
@@ -132678,7 +133645,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
],
"type": {
@@ -132701,7 +133668,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
]
}
@@ -132726,7 +133693,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
],
"signatures": [
@@ -132741,7 +133708,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
],
"parameters": [
@@ -132771,7 +133738,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 497,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
}
],
"type": {
@@ -132793,7 +133760,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 498,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L498"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L498"
}
],
"type": {
@@ -132826,7 +133793,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 496,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
}
],
"type": {
@@ -132846,7 +133813,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
]
}
@@ -132890,7 +133857,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
}
],
"typeParameters": [
@@ -132913,7 +133880,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
}
],
"indexSignatures": [
@@ -132928,7 +133895,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
}
],
"parameters": [
@@ -132992,7 +133959,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
],
"type": {
@@ -133015,7 +133982,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
]
}
@@ -133040,7 +134007,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
],
"signatures": [
@@ -133055,7 +134022,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
],
"parameters": [
@@ -133085,7 +134052,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 506,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
}
],
"type": {
@@ -133107,7 +134074,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 507,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L507"
}
],
"type": {
@@ -133140,7 +134107,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 505,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
}
],
"type": {
@@ -133160,7 +134127,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
]
}
@@ -133204,7 +134171,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
}
],
"typeParameters": [
@@ -133227,7 +134194,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
}
],
"indexSignatures": [
@@ -133242,7 +134209,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
}
],
"parameters": [
@@ -133306,7 +134273,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
],
"type": {
@@ -133329,7 +134296,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
]
}
@@ -133354,7 +134321,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
],
"signatures": [
@@ -133369,7 +134336,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
],
"parameters": [
@@ -133399,7 +134366,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 515,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
}
],
"type": {
@@ -133421,7 +134388,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 516,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L516"
}
],
"type": {
@@ -133454,7 +134421,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 514,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
}
],
"type": {
@@ -133474,7 +134441,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
]
}
@@ -133518,7 +134485,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
}
],
"typeParameters": [
@@ -133541,7 +134508,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
}
],
"indexSignatures": [
@@ -133556,7 +134523,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
}
],
"parameters": [
@@ -133630,7 +134597,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 522,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
}
],
"signatures": [
@@ -133645,7 +134612,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 522,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
}
],
"parameters": [
@@ -133692,7 +134659,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"signatures": [
@@ -133715,7 +134682,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"typeParameters": [
@@ -133738,7 +134705,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"indexSignatures": [
@@ -133753,7 +134720,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"parameters": [
@@ -133818,7 +134785,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 609,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
}
],
"signatures": [
@@ -133841,7 +134808,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 609,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
}
],
"parameters": [
@@ -133887,7 +134854,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 612,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L612"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L612"
}
],
"type": {
@@ -133916,7 +134883,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 613,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L613"
}
],
"type": {
@@ -133943,7 +134910,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 611,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L611"
}
],
"type": {
@@ -133976,7 +134943,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 610,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L610"
}
],
"indexSignatures": [
@@ -133991,7 +134958,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 614,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L614"
}
],
"parameters": [
@@ -134043,7 +135010,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 616,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
}
],
"indexSignatures": [
@@ -134058,7 +135025,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 616,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
}
],
"parameters": [
@@ -134116,7 +135083,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"signatures": [
@@ -134139,7 +135106,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"parameters": [
@@ -134164,7 +135131,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"signatures": [
@@ -134179,7 +135146,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"parameters": [
@@ -134258,7 +135225,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 735,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
}
],
"signatures": [
@@ -134281,7 +135248,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 735,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
}
],
"type": {
@@ -134302,7 +135269,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 386,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
}
],
"signatures": [
@@ -134333,7 +135300,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 386,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
}
],
"parameters": [
@@ -134356,7 +135323,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 387,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
}
],
"indexSignatures": [
@@ -134371,7 +135338,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 387,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
}
],
"parameters": [
@@ -134415,7 +135382,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 388,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
}
],
"indexSignatures": [
@@ -134430,7 +135397,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 388,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
}
],
"parameters": [
@@ -134488,7 +135455,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 696,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
}
],
"signatures": [
@@ -134519,7 +135486,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 696,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
}
],
"parameters": [
@@ -134578,7 +135545,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"signatures": [
@@ -134601,7 +135568,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"parameters": [
@@ -134624,7 +135591,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"indexSignatures": [
@@ -134639,7 +135606,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"parameters": [
@@ -134697,7 +135664,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"signatures": [
@@ -134720,7 +135687,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"parameters": [
@@ -134743,7 +135710,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"indexSignatures": [
@@ -134758,7 +135725,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"parameters": [
@@ -134811,7 +135778,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 164,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
}
]
},
@@ -134833,7 +135800,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176"
}
],
"signatures": [
@@ -134867,7 +135834,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176"
}
],
"parameters": [
@@ -135015,7 +135982,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"type": {
@@ -135038,7 +136005,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"signatures": [
@@ -135053,7 +136020,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"type": {
@@ -135099,7 +136066,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L103"
}
],
"type": {
@@ -135128,7 +136095,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L104"
}
],
"type": {
@@ -135157,7 +136124,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 105,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L105"
}
],
"type": {
@@ -135183,7 +136150,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L125"
}
],
"type": {
@@ -135214,7 +136181,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 123,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L123"
}
],
"type": {
@@ -135238,7 +136205,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L122"
}
],
"type": {
@@ -135262,7 +136229,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L106"
}
],
"type": {
@@ -135282,7 +136249,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L139"
}
],
"type": {
@@ -135525,7 +136492,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"type": {
@@ -135541,7 +136508,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"indexSignatures": [
@@ -135556,7 +136523,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"parameters": [
@@ -135593,7 +136560,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"type": {
@@ -135609,7 +136576,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"signatures": [
@@ -135624,7 +136591,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"parameters": [
@@ -135666,7 +136633,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L113"
}
],
"type": {
@@ -135686,7 +136653,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L114"
}
],
"type": {
@@ -135721,7 +136688,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 107,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L107"
}
],
"type": {
@@ -135741,7 +136708,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L120"
}
],
"type": {
@@ -135768,7 +136735,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L121"
}
],
"type": {
@@ -135794,7 +136761,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"type": {
@@ -135810,7 +136777,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"indexSignatures": [
@@ -135825,7 +136792,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"parameters": [
@@ -135862,7 +136829,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L115"
}
],
"type": {
@@ -135891,7 +136858,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 124,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L124"
}
],
"type": {
@@ -135915,7 +136882,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L118"
}
],
"type": {
@@ -135950,7 +136917,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"type": {
@@ -135970,7 +136937,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 126,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L126"
}
],
"type": {
@@ -135998,7 +136965,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L127"
}
],
"type": {
@@ -136024,7 +136991,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128"
}
],
"type": {
@@ -136047,7 +137014,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 130,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L130"
}
],
"type": {
@@ -136074,7 +137041,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 131,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L131"
}
],
"type": {
@@ -136101,7 +137068,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 132,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L132"
}
],
"type": {
@@ -136128,7 +137095,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 129,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L129"
}
],
"type": {
@@ -136156,7 +137123,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 128,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128"
}
]
}
@@ -136174,7 +137141,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"type": {
@@ -136194,7 +137161,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L112"
}
],
"type": {
@@ -136225,7 +137192,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 119,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L119"
}
],
"type": {
@@ -136247,7 +137214,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"type": {
@@ -136268,7 +137235,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L143"
}
],
"type": {
@@ -136294,7 +137261,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L142"
}
],
"type": {
@@ -136313,7 +137280,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378"
}
],
"signatures": [
@@ -136354,7 +137321,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378"
}
],
"parameters": [
@@ -136405,7 +137372,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195"
}
],
"signatures": [
@@ -136428,7 +137395,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195"
}
],
"type": {
@@ -136449,7 +137416,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 337,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337"
}
],
"signatures": [
@@ -136472,7 +137439,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 337,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337"
}
],
"type": {
@@ -136498,7 +137465,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261"
}
],
"signatures": [
@@ -136521,7 +137488,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261"
}
],
"parameters": [
@@ -136586,7 +137553,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251"
}
],
"signatures": [
@@ -136620,7 +137587,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251"
}
],
"type": {
@@ -136641,7 +137608,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491"
}
],
"signatures": [
@@ -136664,7 +137631,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491"
}
],
"type": {
@@ -136685,7 +137652,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297"
}
],
"signatures": [
@@ -136708,7 +137675,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297"
}
],
"type": {
@@ -136735,7 +137702,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 353,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353"
}
],
"signatures": [
@@ -136766,7 +137733,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 353,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353"
}
],
"type": {
@@ -136787,7 +137754,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360"
}
],
"signatures": [
@@ -136818,7 +137785,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360"
}
],
"type": {
@@ -136839,7 +137806,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 367,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367"
}
],
"signatures": [
@@ -136870,7 +137837,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 367,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367"
}
],
"type": {
@@ -136891,7 +137858,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L330"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330"
}
],
"signatures": [
@@ -136922,7 +137889,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L330"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330"
}
],
"parameters": [
@@ -136980,7 +137947,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"signatures": [
@@ -137003,7 +137970,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"parameters": [
@@ -137026,7 +137993,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"signatures": [
@@ -137041,7 +138008,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"parameters": [
@@ -137090,7 +138057,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397"
}
],
"signatures": [
@@ -137113,7 +138080,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397"
}
],
"parameters": [
@@ -137149,7 +138116,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 318,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318"
}
],
"signatures": [
@@ -137172,7 +138139,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 318,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318"
}
],
"type": {
@@ -137209,7 +138176,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305"
}
],
"signatures": [
@@ -137232,7 +138199,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305"
}
],
"parameters": [
@@ -137290,7 +138257,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432"
}
],
"signatures": [
@@ -137313,7 +138280,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432"
}
],
"type": {
@@ -137345,7 +138312,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 421,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421"
}
],
"signatures": [
@@ -137376,7 +138343,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 421,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421"
}
],
"parameters": [
@@ -137453,7 +138420,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 102,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L102"
}
]
},
@@ -137475,7 +138442,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"signatures": [
@@ -137509,7 +138476,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"parameters": [
@@ -137591,7 +138558,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
],
"type": {
@@ -137614,7 +138581,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L65"
}
],
"type": {
@@ -137638,7 +138605,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L66"
}
],
"type": {
@@ -137662,7 +138629,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -137678,7 +138645,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"signatures": [
@@ -137693,7 +138660,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -137717,7 +138684,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
]
}
@@ -137745,7 +138712,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 90,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L90"
}
],
"type": {
@@ -137767,7 +138734,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L63"
}
],
"type": {
@@ -137787,7 +138754,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L62"
}
],
"type": {
@@ -137816,7 +138783,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L61"
}
],
"type": {
@@ -137844,7 +138811,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L60"
}
],
"type": {
@@ -137871,7 +138838,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 59,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L59"
}
]
},
@@ -137904,7 +138871,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 166,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
}
],
"signatures": [
@@ -137938,7 +138905,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 166,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
}
],
"parameters": [
@@ -138016,7 +138983,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 146,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
}
],
"signatures": [
@@ -138050,7 +139017,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 146,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
}
],
"type": {
@@ -138164,7 +139131,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 181,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
}
],
"signatures": [
@@ -138198,7 +139165,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 181,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
}
],
"type": {
@@ -138220,7 +139187,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
}
]
},
@@ -138244,7 +139211,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
}
],
"type": {
@@ -138265,7 +139232,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
}
],
"type": {
@@ -138286,7 +139253,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 5,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
}
],
"type": {
@@ -138307,7 +139274,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 4,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
}
],
"type": {
@@ -138328,7 +139295,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 2,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
}
],
"type": {
@@ -138349,7 +139316,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"type": {
@@ -138365,7 +139332,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"signatures": [
@@ -138380,7 +139347,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"parameters": [
@@ -138423,7 +139390,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
}
],
"type": {
@@ -138442,7 +139409,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"type": {
@@ -138465,7 +139432,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"signatures": [
@@ -138480,7 +139447,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"parameters": [
@@ -138534,7 +139501,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"type": {
@@ -138557,7 +139524,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"signatures": [
@@ -138572,7 +139539,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"parameters": [
@@ -138626,7 +139593,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"type": {
@@ -138649,7 +139616,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"signatures": [
@@ -138664,7 +139631,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"parameters": [
@@ -138718,7 +139685,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"type": {
@@ -138741,7 +139708,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"signatures": [
@@ -138756,7 +139723,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"parameters": [
@@ -138812,7 +139779,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 3,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
}
],
"type": {
@@ -138833,7 +139800,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 8,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
}
],
"type": {
@@ -138854,7 +139821,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
}
],
"type": {
@@ -138875,7 +139842,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 7,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
}
],
"type": {
@@ -138894,7 +139861,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"signatures": [
@@ -138917,7 +139884,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"parameters": [
@@ -138967,7 +139934,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"signatures": [
@@ -138990,7 +139957,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"parameters": [
@@ -139039,7 +140006,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"signatures": [
@@ -139062,7 +140029,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"parameters": [
@@ -139112,7 +140079,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"signatures": [
@@ -139135,7 +140102,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"parameters": [
@@ -139219,7 +140186,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 1,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
}
]
},
@@ -139257,7 +140224,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"signatures": [
@@ -139272,7 +140239,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L63"
}
],
"parameters": [
@@ -139348,7 +140315,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"indexSignatures": [
@@ -139363,7 +140330,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L65"
}
],
"parameters": [
@@ -139397,7 +140364,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
],
"type": {
@@ -139420,7 +140387,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
],
"type": {
@@ -139453,7 +140420,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -139478,7 +140445,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -139499,7 +140466,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -139525,7 +140492,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -139545,7 +140512,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
]
}
@@ -139572,7 +140539,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -139597,7 +140564,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -139618,7 +140585,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -139638,7 +140605,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
]
}
@@ -139665,7 +140632,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
}
],
"type": {
@@ -139685,7 +140652,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
]
}
@@ -139703,7 +140670,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
]
}
@@ -139720,7 +140687,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 125,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
}
],
"type": {
@@ -139752,7 +140719,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
],
"type": {
@@ -139777,7 +140744,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"type": {
@@ -139793,7 +140760,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"signatures": [
@@ -139845,7 +140812,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L82"
}
],
"type": {
@@ -139871,7 +140838,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 81,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L81"
}
],
"type": {
@@ -139897,7 +140864,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L89"
}
],
"type": {
@@ -139923,7 +140890,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"type": {
@@ -139939,7 +140906,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"indexSignatures": [
@@ -139954,7 +140921,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"parameters": [
@@ -139992,7 +140959,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"type": {
@@ -140008,7 +140975,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"signatures": [
@@ -140058,7 +141025,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L77"
}
],
"type": {
@@ -140079,7 +141046,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 87,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L87"
}
],
"type": {
@@ -140105,7 +141072,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L80"
}
],
"type": {
@@ -140131,7 +141098,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L88"
}
],
"type": {
@@ -140157,7 +141124,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"type": {
@@ -140173,7 +141140,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"indexSignatures": [
@@ -140188,7 +141155,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"parameters": [
@@ -140226,7 +141193,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L83"
}
],
"type": {
@@ -140252,7 +141219,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L76"
}
],
"type": {
@@ -140273,7 +141240,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L75"
}
],
"type": {
@@ -140296,7 +141263,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L79"
}
],
"type": {
@@ -140317,7 +141284,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L90"
}
],
"type": {
@@ -140338,7 +141305,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L91"
}
],
"type": {
@@ -140361,7 +141328,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
]
}
@@ -140378,7 +141345,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
],
"type": {
@@ -140401,7 +141368,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L35"
}
],
"type": {
@@ -140422,7 +141389,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L38"
}
],
"type": {
@@ -140441,7 +141408,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L36"
}
],
"type": {
@@ -140460,7 +141427,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L37"
}
],
"type": {
@@ -140479,7 +141446,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L34"
}
],
"type": {
@@ -140499,7 +141466,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
]
}
@@ -140516,7 +141483,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
],
"typeParameters": [
@@ -140571,7 +141538,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
}
],
"type": {
@@ -140603,7 +141570,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
}
],
"type": {
@@ -140630,7 +141597,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
}
],
"type": {
@@ -140659,7 +141626,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
}
],
"type": {
@@ -140679,7 +141646,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
]
}
@@ -140696,7 +141663,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"typeParameters": [
@@ -140719,7 +141686,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"indexSignatures": [
@@ -140734,7 +141701,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"parameters": [
@@ -140822,7 +141789,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"typeParameters": [
@@ -140845,7 +141812,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"indexSignatures": [
@@ -140860,7 +141827,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"parameters": [
@@ -140918,7 +141885,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 96,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
}
],
"type": {
@@ -140948,7 +141915,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
],
"type": {
@@ -140964,7 +141931,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
]
}
@@ -140981,7 +141948,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 98,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
}
],
"type": {
@@ -141015,7 +141982,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 95,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
}
]
}
@@ -141034,7 +142001,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"typeParameters": [
@@ -141057,7 +142024,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"indexSignatures": [
@@ -141072,7 +142039,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"parameters": [
@@ -141130,7 +142097,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 82,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
}
],
"type": {
@@ -141160,7 +142127,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 83,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
}
],
"type": {
@@ -141182,7 +142149,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
],
"type": {
@@ -141198,7 +142165,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
]
}
@@ -141216,7 +142183,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 81,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
}
]
}
@@ -141235,7 +142202,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"typeParameters": [
@@ -141258,7 +142225,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"indexSignatures": [
@@ -141273,7 +142240,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"parameters": [
@@ -141331,7 +142298,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 89,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
}
],
"type": {
@@ -141361,7 +142328,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 90,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
}
],
"type": {
@@ -141383,7 +142350,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 91,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
}
],
"type": {
@@ -141417,7 +142384,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 88,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
}
]
}
@@ -141436,7 +142403,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"typeParameters": [
@@ -141459,7 +142426,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"indexSignatures": [
@@ -141474,7 +142441,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"parameters": [
@@ -141520,7 +142487,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L20"
}
],
"type": {
@@ -141556,7 +142523,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L18"
}
],
"type": {
@@ -141586,7 +142553,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L19"
}
],
"type": {
@@ -141605,7 +142572,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L21"
}
],
"type": {
@@ -141642,7 +142609,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
]
}
@@ -141659,7 +142626,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"typeParameters": [
@@ -141682,7 +142649,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"indexSignatures": [
@@ -141697,7 +142664,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"parameters": [
@@ -141743,7 +142710,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L27"
}
],
"type": {
@@ -141779,7 +142746,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L25"
}
],
"type": {
@@ -141809,7 +142776,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L26"
}
],
"type": {
@@ -141828,7 +142795,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L28"
}
],
"type": {
@@ -141865,7 +142832,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 77,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
]
}
@@ -141882,7 +142849,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"typeParameters": [
@@ -141905,7 +142872,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -141920,7 +142887,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"parameters": [
@@ -141957,7 +142924,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
]
}
@@ -141977,7 +142944,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 75,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -141992,7 +142959,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L14"
}
],
"parameters": [
@@ -142045,7 +143012,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 41,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L41"
}
],
"type": {
@@ -142079,7 +143046,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 148,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
}
],
"type": {
@@ -144848,7 +145815,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 67,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L67"
}
],
"type": {
@@ -144875,7 +145842,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L73"
}
],
"type": {
@@ -144902,7 +145869,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L69"
}
],
"type": {
@@ -144929,7 +145896,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L75"
}
],
"type": {
@@ -144956,7 +145923,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L77"
}
],
"type": {
@@ -144983,7 +145950,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L71"
}
],
"type": {
@@ -145003,7 +145970,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 65,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L65"
}
]
},
@@ -145025,7 +145992,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18"
}
],
"signatures": [
@@ -145040,7 +146007,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18"
}
],
"parameters": [
@@ -145108,7 +146075,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L15"
}
],
"type": {
@@ -145127,7 +146094,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L16"
}
],
"type": {
@@ -145146,7 +146113,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25"
}
],
"signatures": [
@@ -145161,7 +146128,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25"
}
],
"type": {
@@ -145184,7 +146151,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 28,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L28"
}
],
"type": {
@@ -145204,7 +146171,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 27,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L27"
}
],
"type": {
@@ -145224,7 +146191,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 29,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L29"
}
],
"type": {
@@ -145244,7 +146211,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 30,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L30"
}
],
"type": {
@@ -145265,7 +146232,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 26,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L26"
}
]
}
@@ -145293,7 +146260,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L14"
}
],
"extendedTypes": [
@@ -145321,9 +146288,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 25,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"signatures": [
@@ -145341,6 +146308,15 @@
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
{
"tag": "@example",
"content": [
@@ -145355,9 +146331,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 25,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"parameters": [
@@ -145389,9 +146365,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 27,
+ "line": 28,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"indexSignatures": [
@@ -145404,9 +146380,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 27,
+ "line": 28,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"parameters": [
@@ -145697,9 +146673,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 76,
+ "line": 90,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90"
}
],
"getSignature": {
@@ -145712,16 +146688,25 @@
"summary": [
{
"kind": "text",
- "text": "Access analytics storage operations using Iceberg tables."
+ "text": "Access analytics storage operations using Iceberg tables.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
{
"kind": "text",
- "text": "A StorageAnalyticsApi instance configured with the current storage settings."
+ "text": "A StorageAnalyticsClient instance configured with the current storage settings."
}
]
},
@@ -145739,15 +146724,15 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 76,
+ "line": 90,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90"
}
],
"type": {
"type": "reference",
"target": 47,
- "name": "StorageAnalyticsApi",
+ "name": "StorageAnalyticsClient",
"package": "@supabase/storage-js",
"qualifiedName": "default"
}
@@ -145762,9 +146747,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 50,
+ "line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"getSignature": {
@@ -145777,10 +146762,19 @@
"summary": [
{
"kind": "text",
- "text": "Access vector storage operations.\n\n**Private alpha:** This API is part of a private alpha release and may change or be removed without notice."
+ "text": "Access vector storage operations.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -145790,14 +146784,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 50,
+ "line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"type": {
@@ -145819,9 +146814,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"signatures": [
@@ -145841,12 +146836,39 @@
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
{
"kind": "text",
- "text": "newly created bucket id"
+ "text": "Promise with newly created bucket id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .createBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"name\": \"avatars\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -145855,9 +146877,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"parameters": [
@@ -145914,9 +146936,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 125,
+ "line": 206,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206"
}
],
"type": {
@@ -145955,9 +146977,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 124,
+ "line": 205,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205"
}
],
"type": {
@@ -145995,9 +147017,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 123,
+ "line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204"
}
],
"type": {
@@ -146036,9 +147058,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 126,
+ "line": 207,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207"
}
],
"type": {
@@ -146058,9 +147080,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 122,
+ "line": 203,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203"
}
]
}
@@ -146096,9 +147118,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 132,
+ "line": 213,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213"
}
],
"type": {
@@ -146132,9 +147154,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 133,
+ "line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214"
}
],
"type": {
@@ -146152,9 +147174,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 131,
+ "line": 212,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212"
}
]
}
@@ -146177,9 +147199,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 136,
+ "line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217"
}
],
"type": {
@@ -146196,9 +147218,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 137,
+ "line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218"
}
],
"type": {
@@ -146218,9 +147240,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 135,
+ "line": 216,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216"
}
]
}
@@ -146255,9 +147277,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"signatures": [
@@ -146283,14 +147305,52 @@
"kind": "text",
"text": " the bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Delete bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .deleteBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully deleted\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"parameters": [
@@ -146342,9 +147402,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -146365,9 +147425,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -146385,9 +147445,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
]
}
@@ -146402,9 +147462,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 266,
+ "line": 408,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408"
}
],
"type": {
@@ -146422,9 +147482,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 264,
+ "line": 406,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406"
}
]
}
@@ -146447,9 +147507,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 269,
+ "line": 411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411"
}
],
"type": {
@@ -146466,9 +147526,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 270,
+ "line": 412,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412"
}
],
"type": {
@@ -146488,9 +147548,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 268,
+ "line": 410,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410"
}
]
}
@@ -146525,9 +147585,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"signatures": [
@@ -146545,14 +147605,52 @@
"kind": "text",
"text": "Removes all objects inside a single bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Empty bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .emptyBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully emptied\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"parameters": [
@@ -146604,9 +147702,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -146627,9 +147725,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -146647,9 +147745,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
]
}
@@ -146664,9 +147762,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 230,
+ "line": 353,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353"
}
],
"type": {
@@ -146684,9 +147782,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 228,
+ "line": 351,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351"
}
]
}
@@ -146709,9 +147807,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 233,
+ "line": 356,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356"
}
],
"type": {
@@ -146728,9 +147826,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 234,
+ "line": 357,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357"
}
],
"type": {
@@ -146750,9 +147848,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 232,
+ "line": 355,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355"
}
]
}
@@ -146785,9 +147883,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 39,
+ "line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"signatures": [
@@ -146803,14 +147901,34 @@
"kind": "text",
"text": "Perform file operation in a bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst avatars = storage.from('avatars')\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 39,
+ "line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"parameters": [
@@ -146855,9 +147973,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"signatures": [
@@ -146875,14 +147993,52 @@
"kind": "text",
"text": "Retrieves the details of an existing Storage bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with bucket details or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Get bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .getBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"id\": \"avatars\",\n \"name\": \"avatars\",\n \"owner\": \"\",\n \"public\": false,\n \"file_size_limit\": 1024,\n \"allowed_mime_types\": [\n \"image/png\"\n ],\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"parameters": [
@@ -146934,9 +148090,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 82,
+ "line": 141,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141"
}
],
"type": {
@@ -146955,9 +148111,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 83,
+ "line": 142,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142"
}
],
"type": {
@@ -146975,9 +148131,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 81,
+ "line": 140,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140"
}
]
}
@@ -147000,9 +148156,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 86,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145"
}
],
"type": {
@@ -147019,9 +148175,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 87,
+ "line": 146,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146"
}
],
"type": {
@@ -147041,9 +148197,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 85,
+ "line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144"
}
]
}
@@ -147078,9 +148234,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"signatures": [
@@ -147098,14 +148254,54 @@
"kind": "text",
"text": "Retrieves the details of all Storage buckets within an existing project."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of buckets or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets()\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets with options",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'prod'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"parameters": [
@@ -147117,11 +148313,51 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Query parameters for listing buckets"
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 625,
"name": "ListBucketOptions",
- "package": "@supabase/storage-js"
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "limit": [
+ {
+ "kind": "text",
+ "text": "Maximum number of buckets to return"
+ }
+ ],
+ "offset": [
+ {
+ "kind": "text",
+ "text": "Number of buckets to skip"
+ }
+ ],
+ "sortColumn": [
+ {
+ "kind": "text",
+ "text": "Column to sort by ('id', 'name', 'created_at', 'updated_at')"
+ }
+ ],
+ "sortOrder": [
+ {
+ "kind": "text",
+ "text": "Sort order ('asc' or 'desc')"
+ }
+ ],
+ "search": [
+ {
+ "kind": "text",
+ "text": "Search term to filter bucket names"
+ }
+ ]
+ }
}
}
],
@@ -147153,9 +148389,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 49,
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
}
],
"type": {
@@ -147177,9 +148413,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 50,
+ "line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
}
],
"type": {
@@ -147197,9 +148433,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 48,
+ "line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79"
}
]
}
@@ -147222,9 +148458,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 53,
+ "line": 84,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84"
}
],
"type": {
@@ -147241,9 +148477,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 54,
+ "line": 85,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
}
],
"type": {
@@ -147263,9 +148499,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 52,
+ "line": 83,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
}
]
}
@@ -147301,9 +148537,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"signatures": [
@@ -147321,14 +148557,25 @@
"kind": "text",
"text": "Enable throwing errors instead of returning them."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"type": {
@@ -147359,9 +148606,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"signatures": [
@@ -147379,14 +148626,52 @@
"kind": "text",
"text": "Updates a Storage bucket"
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .updateBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully updated\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"parameters": [
@@ -147443,9 +148728,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 184,
+ "line": 288,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288"
}
],
"type": {
@@ -147484,9 +148769,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 183,
+ "line": 287,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287"
}
],
"type": {
@@ -147524,9 +148809,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 182,
+ "line": 286,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286"
}
],
"type": {
@@ -147544,9 +148829,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 181,
+ "line": 285,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285"
}
]
}
@@ -147581,9 +148866,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -147604,9 +148889,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -147624,9 +148909,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
]
}
@@ -147641,9 +148926,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 189,
+ "line": 293,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293"
}
],
"type": {
@@ -147661,9 +148946,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 187,
+ "line": 291,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291"
}
]
}
@@ -147686,9 +148971,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 192,
+ "line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"type": {
@@ -147705,9 +148990,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 193,
+ "line": 297,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
],
"type": {
@@ -147727,9 +149012,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 191,
+ "line": 295,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295"
}
]
}
@@ -147768,12 +149053,26 @@
"children": [558, 600, 589, 517, 549, 540, 538, 573]
}
],
+ "categories": [
+ {
+ "title": "Analytics Buckets",
+ "children": [522]
+ },
+ {
+ "title": "File Buckets",
+ "children": [501, 558, 600, 589, 517, 549, 540, 538, 573]
+ },
+ {
+ "title": "Vector Buckets",
+ "children": [520]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L11"
}
],
"extendedTypes": [
@@ -147803,7 +149102,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 4,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4"
}
],
"signatures": [
@@ -147818,7 +149117,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 4,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4"
}
],
"parameters": [
@@ -147865,7 +149164,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 1,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L1"
}
],
"extendedTypes": [
@@ -147910,7 +149209,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38"
}
],
"signatures": [
@@ -147925,7 +149224,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38"
}
],
"parameters": [
@@ -147982,7 +149281,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L36"
}
],
"type": {
@@ -148006,7 +149305,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L35"
}
],
"extendedTypes": [
@@ -148044,7 +149343,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
}
],
"signatures": [
@@ -148059,7 +149358,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
}
],
"parameters": [
@@ -148127,7 +149426,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L27"
}
],
"type": {
@@ -148146,7 +149445,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L28"
}
],
"type": {
@@ -148165,7 +149464,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
}
],
"signatures": [
@@ -148180,7 +149479,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
}
],
"type": {
@@ -148203,7 +149502,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 40,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L40"
}
],
"type": {
@@ -148223,7 +149522,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 39,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L39"
}
],
"type": {
@@ -148243,7 +149542,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 41,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L41"
}
],
"type": {
@@ -148263,7 +149562,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 42,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L42"
}
],
"type": {
@@ -148284,7 +149583,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 38,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L38"
}
]
}
@@ -148312,7 +149611,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L26"
}
],
"extendedTypes": [
@@ -148334,7 +149633,7 @@
"summary": [
{
"kind": "text",
- "text": "Main client for interacting with S3 Vectors API\nProvides access to bucket, index, and vector data operations\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible.\n\n**Usage Patterns:**\n\n1. **Via StorageClient (recommended for most use cases):**\n"
+ "text": "Main client for interacting with S3 Vectors API\nProvides access to bucket, index, and vector data operations\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.\n\n**Usage Patterns:**\n\n1. **Via StorageClient (recommended for most use cases):**\n"
},
{
"kind": "code",
@@ -148348,7 +149647,8 @@
"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```"
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -148360,9 +149660,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 98,
+ "line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112"
}
],
"signatures": [
@@ -148376,16 +149676,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a StorageVectorsClient that can manage buckets, indexes, and vectors.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a StorageVectorsClient that can manage buckets, indexes, and vectors.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new StorageVectorsClient(url, options)\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 98,
+ "line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112"
}
],
"parameters": [
@@ -148483,9 +149804,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"signatures": [
@@ -148501,10 +149822,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -148556,14 +149886,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"parameters": [
@@ -148634,9 +149965,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"signatures": [
@@ -148652,10 +149983,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -148707,14 +150047,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"parameters": [
@@ -148783,9 +150124,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 127,
+ "line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145"
}
],
"signatures": [
@@ -148799,10 +150140,19 @@
"summary": [
{
"kind": "text",
- "text": "Access operations for a specific vector bucket\nReturns a scoped client for index and vector operations within the bucket\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Access operations for a specific vector bucket\nReturns a scoped client for index and vector operations within the bucket\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -148821,14 +150171,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 127,
+ "line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145"
}
],
"parameters": [
@@ -148872,9 +150223,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"signatures": [
@@ -148890,10 +150241,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -148937,14 +150297,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"parameters": [
@@ -148997,9 +150358,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"type": {
@@ -149019,9 +150380,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
]
}
@@ -149058,9 +150419,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"signatures": [
@@ -149076,10 +150437,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -149115,14 +150485,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"parameters": [
@@ -149219,9 +150590,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"signatures": [
@@ -149237,10 +150608,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -149259,14 +150639,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"type": {
@@ -149297,12 +150678,18 @@
"children": [776, 787, 757, 779, 784, 774]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [753, 776, 787, 757, 779, 784, 774]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 88,
+ "line": 94,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L94"
}
],
"extendedTypes": [
@@ -149340,7 +150727,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
}
],
"signatures": [
@@ -149355,7 +150742,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
}
],
"parameters": [
@@ -149402,7 +150789,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 4,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L4"
}
],
"extendedTypes": [
@@ -149455,7 +150842,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 54,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
}
],
"signatures": [
@@ -149470,7 +150857,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 54,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
}
],
"parameters": [
@@ -149527,7 +150914,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L52"
}
],
"type": {
@@ -149551,7 +150938,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L51"
}
],
"extendedTypes": [
@@ -149573,9 +150960,10 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector buckets\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "API class for managing Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector buckets\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -149587,9 +150975,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"signatures": [
@@ -149603,10 +150991,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new VectorBucketApi instance\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new VectorBucketApi instance\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@example",
"content": [
@@ -149616,14 +151013,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"parameters": [
@@ -149671,9 +151069,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"indexSignatures": [
@@ -149686,9 +151084,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"parameters": [
@@ -149963,9 +151361,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"signatures": [
@@ -149979,10 +151377,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -150034,14 +151441,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"parameters": [
@@ -150100,9 +151508,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"signatures": [
@@ -150116,10 +151524,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -150171,14 +151588,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"parameters": [
@@ -150237,9 +151655,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"signatures": [
@@ -150253,10 +151671,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -150300,14 +151727,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"parameters": [
@@ -150360,9 +151788,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"type": {
@@ -150382,9 +151810,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
]
}
@@ -150409,9 +151837,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"signatures": [
@@ -150425,10 +151853,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -150464,14 +151901,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"parameters": [
@@ -150557,9 +151995,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"signatures": [
@@ -150573,10 +152011,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -150595,14 +152042,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"type": {
@@ -150623,12 +152071,18 @@
"children": [937, 948, 940, 945, 935]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [906, 937, 948, 940, 945, 935]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 18,
+ "line": 21,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L21"
}
],
"extendedBy": [
@@ -150649,9 +152103,10 @@
"summary": [
{
"kind": "text",
- "text": "Scoped client for operations within a specific vector bucket\nProvides index management and access to vector operations\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Scoped client for operations within a specific vector bucket\nProvides index management and access to vector operations\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -150663,9 +152118,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 146,
+ "line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175"
}
],
"signatures": [
@@ -150679,16 +152134,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a helper that automatically scopes all index operations to the provided bucket.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a helper that automatically scopes all index operations to the provided bucket.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 146,
+ "line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175"
}
],
"parameters": [
@@ -150720,9 +152196,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 148,
+ "line": 177,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177"
}
],
"indexSignatures": [
@@ -150735,9 +152211,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 148,
+ "line": 177,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177"
}
],
"parameters": [
@@ -151023,9 +152499,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 179,
+ "line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212"
}
],
"signatures": [
@@ -151039,10 +152515,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -151061,14 +152546,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 179,
+ "line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212"
}
],
"parameters": [
@@ -151154,9 +152640,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 243,
+ "line": 288,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288"
}
],
"signatures": [
@@ -151170,10 +152656,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes an index from this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes an index from this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -151192,14 +152687,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 243,
+ "line": 288,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288"
}
],
"parameters": [
@@ -151268,9 +152764,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 224,
+ "line": 265,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265"
}
],
"signatures": [
@@ -151284,10 +152780,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -151306,14 +152811,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 224,
+ "line": 265,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265"
}
],
"parameters": [
@@ -151366,9 +152872,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
],
"type": {
@@ -151388,9 +152894,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
]
}
@@ -151425,9 +152931,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 274,
+ "line": 323,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323"
}
],
"signatures": [
@@ -151441,10 +152947,19 @@
"summary": [
{
"kind": "text",
- "text": "Access operations for a specific index within this bucket\nReturns a scoped client for vector data operations\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Access operations for a specific index within this bucket\nReturns a scoped client for vector data operations\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -151463,14 +152978,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 274,
+ "line": 323,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323"
}
],
"parameters": [
@@ -151512,9 +153028,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 201,
+ "line": 238,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238"
}
],
"signatures": [
@@ -151528,10 +153044,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -151550,14 +153075,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 201,
+ "line": 238,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238"
}
],
"parameters": [
@@ -151649,9 +153175,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"signatures": [
@@ -151667,10 +153193,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -151689,14 +153224,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"type": {
@@ -151727,12 +153263,18 @@
"children": [808, 819, 814, 822, 811, 839]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [791, 808, 819, 814, 822, 811, 839]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 138,
+ "line": 159,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L159"
}
],
"extendedTypes": [
@@ -151754,9 +153296,10 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Vector Data within Vector Indexes\nProvides methods for inserting, querying, listing, and deleting vector embeddings\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "API class for managing Vector Data within Vector Indexes\nProvides methods for inserting, querying, listing, and deleting vector embeddings\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -151768,9 +153311,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"signatures": [
@@ -151784,16 +153327,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a VectorDataApi bound to a Storage Vectors deployment.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a VectorDataApi bound to a Storage Vectors deployment.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorDataApi(url, headers)\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"parameters": [
@@ -151841,9 +153405,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"indexSignatures": [
@@ -151856,9 +153420,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"parameters": [
@@ -152141,9 +153705,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 343,
+ "line": 379,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379"
}
],
"signatures": [
@@ -152157,10 +153721,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes vectors by their keys in batch\nAccepts 1-500 keys per request\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes vectors by their keys in batch\nAccepts 1-500 keys per request\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -152204,14 +153777,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 343,
+ "line": 379,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379"
}
],
"parameters": [
@@ -152292,9 +153866,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 155,
+ "line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179"
}
],
"signatures": [
@@ -152308,10 +153882,19 @@
"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\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -152355,14 +153938,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 155,
+ "line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179"
}
],
"parameters": [
@@ -152457,9 +154041,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 225,
+ "line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253"
}
],
"signatures": [
@@ -152473,10 +154057,19 @@
"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\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -152520,14 +154113,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 225,
+ "line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253"
}
],
"parameters": [
@@ -152640,9 +154234,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 100,
+ "line": 120,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120"
}
],
"signatures": [
@@ -152656,10 +154250,19 @@
"summary": [
{
"kind": "text",
- "text": "Inserts or updates vectors in batch (upsert operation)\nAccepts 1-500 vectors per request. Larger batches should be split\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Inserts or updates vectors in batch (upsert operation)\nAccepts 1-500 vectors per request. Larger batches should be split\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -152711,14 +154314,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 100,
+ "line": 120,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120"
}
],
"parameters": [
@@ -152799,9 +154403,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 298,
+ "line": 330,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330"
}
],
"signatures": [
@@ -152815,10 +154419,19 @@
"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)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -152862,14 +154475,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 298,
+ "line": 330,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330"
}
],
"parameters": [
@@ -152978,9 +154592,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"signatures": [
@@ -152994,10 +154608,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -153016,14 +154639,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"type": {
@@ -153044,12 +154668,18 @@
"children": [1043, 1034, 1037, 1031, 1040, 1029]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [1000, 1043, 1034, 1037, 1031, 1040, 1029]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 23,
+ "line": 26,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L26"
}
],
"extendedBy": [
@@ -153070,9 +154700,10 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Vector Indexes within Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector indexes\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "API class for managing Vector Indexes within Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector indexes\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -153084,9 +154715,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"signatures": [
@@ -153100,16 +154731,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates an API client for managing vector indexes.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates an API client for managing vector indexes.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"parameters": [
@@ -153157,9 +154809,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"indexSignatures": [
@@ -153172,9 +154824,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"parameters": [
@@ -153457,9 +155109,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 110,
+ "line": 133,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133"
}
],
"signatures": [
@@ -153473,10 +155125,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector index within a bucket\nDefines the schema for vectors including dimensionality, distance metric, and metadata config\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector index within a bucket\nDefines the schema for vectors including dimensionality, distance metric, and metadata config\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -153536,14 +155197,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 110,
+ "line": 133,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133"
}
],
"parameters": [
@@ -153642,9 +155304,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 249,
+ "line": 284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284"
}
],
"signatures": [
@@ -153658,10 +155320,19 @@
"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\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes a vector index and all its data\nThis operation removes the index schema and all vectors stored in the index\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -153705,14 +155376,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 249,
+ "line": 284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284"
}
],
"parameters": [
@@ -153790,9 +155462,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 150,
+ "line": 177,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177"
}
],
"signatures": [
@@ -153806,10 +155478,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific vector index\nReturns index configuration including dimension, distance metric, and metadata settings\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific vector index\nReturns index configuration including dimension, distance metric, and metadata settings\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -153853,14 +155534,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 150,
+ "line": 177,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177"
}
],
"parameters": [
@@ -153932,9 +155614,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
],
"type": {
@@ -153954,9 +155636,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
]
}
@@ -153981,9 +155663,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 209,
+ "line": 240,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240"
}
],
"signatures": [
@@ -153997,10 +155679,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vector indexes within a bucket with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vector indexes within a bucket with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -154044,14 +155735,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 209,
+ "line": 240,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240"
}
],
"parameters": [
@@ -154142,9 +155834,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"signatures": [
@@ -154158,10 +155850,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -154180,14 +155881,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"type": {
@@ -154208,12 +155910,18 @@
"children": [983, 995, 986, 992, 981]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [952, 983, 995, 986, 992, 981]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 35,
+ "line": 41,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L41"
}
],
"extendedBy": [
@@ -154234,9 +155942,10 @@
"summary": [
{
"kind": "text",
- "text": "Scoped client for operations within a specific vector index\nProvides vector data operations (put, get, list, query, delete)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Scoped client for operations within a specific vector index\nProvides vector data operations (put, get, list, query, delete)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -154248,9 +155957,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 300,
+ "line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
}
],
"signatures": [
@@ -154264,16 +155973,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a helper that automatically scopes all vector operations to the provided bucket/index names.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a helper that automatically scopes all vector operations to the provided bucket/index names.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 300,
+ "line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
}
],
"parameters": [
@@ -154305,9 +156035,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 302,
+ "line": 363,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363"
}
],
"indexSignatures": [
@@ -154320,9 +156050,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 302,
+ "line": 363,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363"
}
],
"parameters": [
@@ -154619,9 +156349,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 445,
+ "line": 526,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526"
}
],
"signatures": [
@@ -154635,10 +156365,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -154657,14 +156396,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 445,
+ "line": 526,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526"
}
],
"parameters": [
@@ -154759,9 +156499,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 361,
+ "line": 430,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430"
}
],
"signatures": [
@@ -154775,10 +156515,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -154797,14 +156546,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 361,
+ "line": 430,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430"
}
],
"parameters": [
@@ -154901,9 +156651,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 387,
+ "line": 460,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460"
}
],
"signatures": [
@@ -154917,10 +156667,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vectors in this index with pagination\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vectors in this index with pagination\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -154939,14 +156698,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 387,
+ "line": 460,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460"
}
],
"parameters": [
@@ -155044,9 +156804,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 335,
+ "line": 400,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400"
}
],
"signatures": [
@@ -155060,10 +156820,19 @@
"summary": [
{
"kind": "text",
- "text": "Inserts or updates vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Inserts or updates vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -155082,14 +156851,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 335,
+ "line": 400,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400"
}
],
"parameters": [
@@ -155184,9 +156954,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 418,
+ "line": 495,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495"
}
],
"signatures": [
@@ -155200,10 +156970,19 @@
"summary": [
{
"kind": "text",
- "text": "Queries for similar vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Queries for similar vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -155222,14 +157001,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 418,
+ "line": 495,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495"
}
],
"parameters": [
@@ -155329,9 +157109,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"signatures": [
@@ -155347,10 +157127,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -155369,14 +157158,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"type": {
@@ -155407,12 +157197,18 @@
"children": [873, 864, 867, 861, 870, 890]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [842, 873, 864, 867, 861, 870, 890]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 291,
+ "line": 343,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L343"
}
],
"extendedTypes": [
@@ -155458,7 +157254,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L42"
}
],
"type": {
@@ -155485,7 +157281,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L40"
}
],
"type": {
@@ -155495,7 +157291,7 @@
},
{
"id": 632,
- "name": "id",
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -155512,7 +157308,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L36"
}
],
"type": {
@@ -155539,7 +157335,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L38"
}
],
"type": {
@@ -155566,7 +157362,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -155586,7 +157382,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 34,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L34"
}
]
},
@@ -155610,7 +157406,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L16"
}
],
"type": {
@@ -155632,7 +157428,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L17"
}
],
"type": {
@@ -155653,7 +157449,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L15"
}
],
"type": {
@@ -155672,7 +157468,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L11"
}
],
"type": {
@@ -155691,7 +157487,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L13"
}
],
"type": {
@@ -155710,7 +157506,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L14"
}
],
"type": {
@@ -155729,7 +157525,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L19"
}
],
"type": {
@@ -155750,7 +157546,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L12"
}
],
"type": {
@@ -155771,7 +157567,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -155791,7 +157587,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 10,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L10"
}
]
},
@@ -155805,9 +157601,10 @@
"summary": [
{
"kind": "text",
- "text": "Options for creating a vector index\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Options for creating a vector index\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -155816,12 +157613,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 23,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26"
}
],
"type": {
@@ -155835,12 +157636,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 24,
+ "line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L27"
}
],
"type": {
@@ -155854,12 +157659,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 25,
+ "line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L28"
}
],
"type": {
@@ -155875,12 +157684,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 22,
+ "line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25"
}
],
"type": {
@@ -155896,12 +157709,16 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 26,
+ "line": 29,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L29"
}
],
"type": {
@@ -155917,12 +157734,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 21,
+ "line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24"
}
],
"type": {
@@ -155940,9 +157761,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 20,
+ "line": 23,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23"
}
]
},
@@ -155980,7 +157801,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 196,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L196"
}
],
"type": {
@@ -156007,7 +157828,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L197"
}
],
"type": {
@@ -156037,7 +157858,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L195"
}
],
"type": {
@@ -156057,7 +157878,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 194,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L194"
}
]
},
@@ -156081,7 +157902,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L112"
}
],
"type": {
@@ -156101,7 +157922,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 111,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L111"
}
]
},
@@ -156141,7 +157962,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L9"
}
],
"type": {
@@ -156170,7 +157991,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L10"
}
],
"type": {
@@ -156190,7 +158011,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 8,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L8"
}
]
},
@@ -156228,7 +158049,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 291,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L291"
}
],
"type": {
@@ -156255,7 +158076,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L292"
}
],
"type": {
@@ -156277,7 +158098,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 290,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L290"
}
]
},
@@ -156317,7 +158138,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
}
],
"type": {
@@ -156333,7 +158154,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
}
],
"indexSignatures": [
@@ -156348,7 +158169,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 14,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L14"
}
],
"parameters": [
@@ -156394,7 +158215,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L16"
}
],
"type": {
@@ -156414,7 +158235,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 12,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L12"
}
]
},
@@ -156446,7 +158267,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 204,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L204"
}
],
"type": {
@@ -156471,7 +158292,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 200,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L200"
}
]
},
@@ -156493,7 +158314,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L49"
}
],
"type": {
@@ -156512,7 +158333,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L57"
}
],
"type": {
@@ -156533,7 +158354,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L53"
}
],
"type": {
@@ -156552,7 +158373,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L51"
}
],
"type": {
@@ -156580,7 +158401,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L55"
}
],
"type": {
@@ -156599,7 +158420,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L56"
}
],
"type": {
@@ -156633,7 +158454,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L48"
}
],
"type": {
@@ -156652,7 +158473,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L50"
}
],
"type": {
@@ -156671,7 +158492,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L52"
}
],
"type": {
@@ -156691,7 +158512,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 47,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L47"
}
]
},
@@ -156713,7 +158534,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L64"
}
],
"type": {
@@ -156734,7 +158555,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L70"
}
],
"type": {
@@ -156755,7 +158576,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L71"
}
],
"type": {
@@ -156774,7 +158595,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L66"
}
],
"type": {
@@ -156795,7 +158616,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -156814,7 +158635,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L61"
}
],
"type": {
@@ -156842,7 +158663,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 68,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L68"
}
],
"type": {
@@ -156863,7 +158684,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -156884,7 +158705,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L74"
}
],
"type": {
@@ -156918,7 +158739,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L63"
}
],
"type": {
@@ -156939,7 +158760,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L69"
}
],
"type": {
@@ -156958,7 +158779,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L65"
}
],
"type": {
@@ -156977,7 +158798,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L62"
}
],
"type": {
@@ -156997,7 +158818,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 60,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L60"
}
]
},
@@ -157037,7 +158858,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L86"
}
],
"type": {
@@ -157114,7 +158935,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L90"
}
],
"type": {
@@ -157143,7 +158964,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -157172,7 +158993,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L108"
}
],
"type": {
@@ -157216,7 +159037,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L103"
}
],
"type": {
@@ -157260,7 +159081,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -157280,7 +159101,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 82,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L82"
}
]
},
@@ -157318,7 +159139,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 162,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L162"
}
],
"type": {
@@ -157345,7 +159166,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L163"
}
],
"type": {
@@ -157377,7 +159198,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L164"
}
],
"type": {
@@ -157406,7 +159227,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L165"
}
],
"type": {
@@ -157433,7 +159254,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L161"
}
],
"type": {
@@ -157453,7 +159274,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 160,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L160"
}
]
},
@@ -157491,7 +159312,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L173"
}
],
"type": {
@@ -157516,7 +159337,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 172,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L172"
}
]
},
@@ -157540,7 +159361,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L23"
}
],
"type": {
@@ -157561,7 +159382,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L24"
}
],
"type": {
@@ -157582,7 +159403,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L27"
}
],
"type": {
@@ -157603,7 +159424,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L25"
}
],
"type": {
@@ -157641,7 +159462,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L26"
}
],
"type": {
@@ -157670,7 +159491,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L22"
}
]
},
@@ -157710,7 +159531,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L138"
}
],
"type": {
@@ -157739,7 +159560,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L139"
}
],
"type": {
@@ -157768,7 +159589,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L137"
}
],
"type": {
@@ -157795,7 +159616,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L136"
}
],
"type": {
@@ -157815,7 +159636,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 135,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L135"
}
]
},
@@ -157853,7 +159674,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148"
}
],
"type": {
@@ -157878,7 +159699,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 148,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148"
}
],
"type": {
@@ -157898,7 +159719,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 148,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148"
}
]
}
@@ -157926,7 +159747,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 149,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L149"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L149"
}
],
"type": {
@@ -157946,7 +159767,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 147,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L147"
}
]
},
@@ -157986,7 +159807,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L114"
}
],
"type": {
@@ -158015,7 +159836,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L115"
}
],
"type": {
@@ -158044,7 +159865,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L113"
}
],
"type": {
@@ -158064,7 +159885,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 112,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L112"
}
]
},
@@ -158104,7 +159925,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L125"
}
],
"type": {
@@ -158131,7 +159952,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 124,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
],
"type": {
@@ -158156,7 +159977,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 124,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
],
"type": {
@@ -158176,7 +159997,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 124,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
]
}
@@ -158195,7 +160016,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 123,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L123"
}
]
},
@@ -158233,7 +160054,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 214,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L214"
}
],
"type": {
@@ -158262,7 +160083,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L215"
}
],
"type": {
@@ -158291,7 +160112,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L216"
}
],
"type": {
@@ -158320,7 +160141,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 217,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L217"
}
],
"type": {
@@ -158349,7 +160170,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 218,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L218"
}
],
"type": {
@@ -158378,7 +160199,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L219"
}
],
"type": {
@@ -158407,7 +160228,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 220,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L220"
}
],
"type": {
@@ -158434,7 +160255,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L213"
}
],
"type": {
@@ -158454,7 +160275,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L212"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L212"
}
]
},
@@ -158494,7 +160315,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L230"
}
],
"type": {
@@ -158521,7 +160342,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L229"
}
],
"type": {
@@ -158546,7 +160367,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 228,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L228"
}
]
},
@@ -158568,7 +160389,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L209"
}
],
"type": {
@@ -158588,7 +160409,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 208,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L208"
}
]
},
@@ -158628,7 +160449,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L31"
}
],
"type": {
@@ -158651,7 +160472,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 30,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L30"
}
]
},
@@ -158689,7 +160510,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L184"
}
],
"type": {
@@ -158716,7 +160537,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L183"
}
],
"type": {
@@ -158743,7 +160564,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 185,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L185"
}
],
"type": {
@@ -158768,7 +160589,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 182,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L182"
}
]
},
@@ -158808,7 +160629,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L254"
}
],
"type": {
@@ -158837,7 +160658,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L251"
}
],
"type": {
@@ -158864,7 +160685,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 252,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L252"
}
],
"type": {
@@ -158895,7 +160716,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 255,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L255"
}
],
"type": {
@@ -158924,7 +160745,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L256"
}
],
"type": {
@@ -158953,7 +160774,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 253,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L253"
}
],
"type": {
@@ -158980,7 +160801,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L250"
}
],
"type": {
@@ -159000,7 +160821,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 249,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L249"
}
]
},
@@ -159038,7 +160859,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L264"
}
],
"type": {
@@ -159063,7 +160884,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 263,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L263"
}
]
},
@@ -159106,7 +160927,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L120"
}
],
"type": {
@@ -159135,7 +160956,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L125"
}
],
"type": {
@@ -159164,7 +160985,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L135"
}
],
"type": {
@@ -159193,7 +161014,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L130"
}
],
"type": {
@@ -159215,7 +161036,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 115,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L115"
}
]
},
@@ -159237,7 +161058,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L183"
}
],
"type": {
@@ -159256,7 +161077,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L179"
}
],
"type": {
@@ -159275,7 +161096,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L180"
}
],
"type": {
@@ -159303,7 +161124,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 188,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L188"
}
],
"type": {
@@ -159322,7 +161143,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L184"
}
],
"type": {
@@ -159356,7 +161177,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -159375,7 +161196,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L182"
}
],
"type": {
@@ -159395,7 +161216,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 178,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L178"
}
]
},
@@ -159427,7 +161248,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L158"
}
],
"type": {
@@ -159467,7 +161288,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L148"
}
],
"type": {
@@ -159496,7 +161317,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 153,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L153"
}
],
"type": {
@@ -159536,7 +161357,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L175"
}
],
"type": {
@@ -159594,7 +161415,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L169"
}
],
"type": {
@@ -159614,7 +161435,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 143,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L143"
}
]
},
@@ -159636,7 +161457,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L195"
}
],
"type": {
@@ -159660,7 +161481,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 194,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L194"
}
],
"type": {
@@ -159681,7 +161502,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L197"
}
],
"type": {
@@ -159700,7 +161521,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 196,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L196"
}
],
"type": {
@@ -159725,7 +161546,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 193,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L193"
}
]
},
@@ -159749,7 +161570,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -159770,7 +161591,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L79"
}
],
"type": {
@@ -159790,7 +161611,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 77,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L77"
}
]
},
@@ -159812,7 +161633,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L139"
}
],
"type": {
@@ -159846,7 +161667,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L140"
}
],
"type": {
@@ -159875,7 +161696,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 138,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L138"
}
]
},
@@ -159899,7 +161720,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L8"
}
],
"type": {
@@ -159919,7 +161740,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 7,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L7"
}
]
},
@@ -159933,9 +161754,10 @@
"summary": [
{
"kind": "text",
- "text": "Configuration options for the Storage Vectors client\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Configuration options for the Storage Vectors client\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -159952,14 +161774,15 @@
"kind": "text",
"text": "Custom fetch implementation (optional)\nUseful for testing or custom request handling"
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 28,
+ "line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L31"
}
],
"type": {
@@ -160189,14 +162012,15 @@
"kind": "text",
"text": "Custom headers to include in all requests"
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 23,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26"
}
],
"type": {
@@ -160210,9 +162034,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 23,
+ "line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26"
}
],
"indexSignatures": [
@@ -160225,9 +162049,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 23,
+ "line": 26,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26"
}
],
"parameters": [
@@ -160262,9 +162086,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 19,
+ "line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L22"
}
]
},
@@ -160302,7 +162126,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 281,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L281"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L281"
}
],
"type": {
@@ -160333,7 +162157,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 282,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L282"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L282"
}
],
"type": {
@@ -160353,7 +162177,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 280,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L280"
}
],
"typeParameters": [
@@ -160394,7 +162218,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 240,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L240"
}
],
"type": {
@@ -160423,7 +162247,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 220,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L220"
}
],
"type": {
@@ -160452,7 +162276,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 233,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L233"
}
],
"type": {
@@ -160481,7 +162305,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 227,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L227"
}
],
"type": {
@@ -160523,7 +162347,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L216"
}
],
"type": {
@@ -160543,7 +162367,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L212"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L212"
}
]
},
@@ -160583,7 +162407,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L21"
}
],
"type": {
@@ -160612,7 +162436,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L22"
}
],
"type": {
@@ -160641,7 +162465,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L20"
}
],
"type": {
@@ -160661,7 +162485,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 19,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L19"
}
]
},
@@ -160699,7 +162523,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L71"
}
],
"type": {
@@ -160722,7 +162546,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 70,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L70"
}
]
},
@@ -160762,7 +162586,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 272,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L272"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L272"
}
],
"type": {
@@ -160787,7 +162611,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 271,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L271"
}
]
},
@@ -160827,7 +162651,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L62"
}
],
"type": {
@@ -160854,7 +162678,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L58"
}
],
"type": {
@@ -160881,7 +162705,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 59,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L59"
}
],
"type": {
@@ -160908,7 +162732,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L60"
}
],
"type": {
@@ -160937,7 +162761,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L56"
}
],
"type": {
@@ -160966,7 +162790,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L61"
}
],
"type": {
@@ -160995,7 +162819,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L57"
}
],
"type": {
@@ -161015,7 +162839,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 55,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L55"
}
]
},
@@ -161055,7 +162879,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L101"
}
],
"type": {
@@ -161086,7 +162910,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L103"
}
],
"type": {
@@ -161113,7 +162937,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L100"
}
],
"type": {
@@ -161142,7 +162966,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L102"
}
],
"type": {
@@ -161164,7 +162988,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 99,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L99"
}
]
},
@@ -161202,7 +163026,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L88"
}
],
"type": {
@@ -161231,7 +163055,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 87,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L87"
}
],
"type": {
@@ -161260,7 +163084,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L89"
}
],
"type": {
@@ -161282,7 +163106,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 86,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L86"
}
]
},
@@ -161305,7 +163129,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 299,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L299"
}
],
"typeParameters": [
@@ -161363,7 +163187,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 8,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L8"
}
],
"type": {
@@ -161391,7 +163215,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 247,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L247"
}
],
"typeParameters": [
@@ -161494,7 +163318,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 43,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L43"
}
],
"type": {
@@ -161526,7 +163350,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 251,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L251"
}
],
"typeParameters": [
@@ -161561,7 +163385,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 253,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L253"
}
],
"type": {
@@ -161583,7 +163407,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 254,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L254"
}
],
"type": {
@@ -161603,7 +163427,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 252,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L252"
}
]
}
@@ -161628,7 +163452,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 257,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L257"
}
],
"type": {
@@ -161647,7 +163471,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L258"
}
],
"type": {
@@ -161669,7 +163493,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 256,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L256"
}
]
}
@@ -161688,7 +163512,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 5,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L5"
}
],
"type": {
@@ -161720,7 +163544,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L22"
}
],
"type": {
@@ -161756,7 +163580,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 191,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L191"
}
],
"type": {
@@ -161813,7 +163637,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 38,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L38"
}
],
"type": {
@@ -161840,7 +163664,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 237,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L237"
}
],
"type": {
@@ -161882,7 +163706,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 78,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L78"
}
],
"type": {
@@ -161935,7 +163759,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
}
],
"signatures": [
@@ -161964,7 +163788,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 35,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
}
],
"parameters": [
@@ -162006,7 +163830,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 10,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10"
}
],
"signatures": [
@@ -162021,7 +163845,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 10,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10"
}
],
"parameters": [
@@ -162062,7 +163886,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 18,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
}
],
"signatures": [
@@ -162096,7 +163920,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 18,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
}
],
"parameters": [
@@ -162153,7 +163977,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
}
],
"signatures": [
@@ -162182,7 +164006,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 57,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
}
],
"parameters": [
@@ -162238,7 +164062,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
}
],
"signatures": [
@@ -162267,7 +164091,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 10,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
}
],
"parameters": [
@@ -162735,7 +164559,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
}
],
"signatures": [
@@ -162764,7 +164588,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 23,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
}
],
"type": {
@@ -162889,7 +164713,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 70,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
}
],
"signatures": [
@@ -162904,7 +164728,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 70,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
}
],
"parameters": [
@@ -162942,7 +164766,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 71,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
}
],
"type": {
@@ -162965,7 +164789,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 71,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
}
]
}
@@ -163002,7 +164826,7 @@
},
{
"id": 613,
- "name": "StorageAnalyticsApi",
+ "name": "StorageAnalyticsClient",
"variant": "reference",
"kind": 4194304,
"flags": {},
@@ -163011,7 +164835,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 3,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/index.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L3"
}
],
"target": 47
@@ -163052,7 +164876,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/index.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L1"
}
]
},
@@ -163081,7 +164905,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"signatures": [
@@ -163096,7 +164920,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"parameters": [
@@ -163119,7 +164943,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -163134,7 +164958,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"type": {
@@ -163197,7 +165021,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
}
],
"type": {
@@ -163222,7 +165046,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -163237,7 +165061,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"type": {
@@ -163261,7 +165085,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"signatures": [
@@ -163295,7 +165119,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"typeParameters": [
@@ -163348,7 +165172,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"signatures": [
@@ -163363,7 +165187,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"parameters": [
@@ -163481,7 +165305,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -163515,7 +165339,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"parameters": [
@@ -163555,7 +165379,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -163570,7 +165394,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"type": {
@@ -163637,7 +165461,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"signatures": [
@@ -163671,7 +165495,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"typeParameters": [
@@ -163748,7 +165572,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"signatures": [
@@ -163763,7 +165587,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"parameters": [
@@ -163865,7 +165689,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"signatures": [
@@ -163880,7 +165704,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"parameters": [
@@ -163997,7 +165821,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 5,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
}
],
"implementedTypes": [
@@ -164043,13 +165867,13 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
}
]
},
{
"id": 46,
- "name": "packages/StorageAnalyticsApi",
+ "name": "packages/StorageAnalyticsClient",
"variant": "declaration",
"kind": 2,
"flags": {},
@@ -164064,7 +165888,7 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Analytics Buckets using Iceberg tables\nProvides methods for creating, listing, and deleting analytics buckets"
+ "text": "Client class for managing Analytics Buckets using Iceberg tables\nProvides methods for creating, listing, and deleting analytics buckets"
}
]
},
@@ -164077,10 +165901,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"signatures": [
@@ -164094,16 +165918,36 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new StorageAnalyticsApi instance"
+ "text": "Creates a new StorageAnalyticsClient instance\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new StorageAnalyticsClient(url, headers)\n```"
+ }
+ ]
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"parameters": [
@@ -164150,10 +165994,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"indexSignatures": [
@@ -164165,10 +166009,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"parameters": [
@@ -164427,7 +166271,7 @@
"type": {
"type": "reference",
"target": 47,
- "name": "StorageAnalyticsApi",
+ "name": "StorageAnalyticsClient",
"package": "@supabase/storage-js",
"qualifiedName": "default"
}
@@ -164442,10 +166286,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 57,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
}
],
"signatures": [
@@ -164459,10 +166303,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new analytics bucket using Iceberg tables\nAnalytics buckets are optimized for analytical queries and data processing"
+ "text": "Creates a new analytics bucket using Iceberg tables\nAnalytics buckets are optimized for analytical queries and data processing\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -164474,10 +166327,19 @@
},
{
"tag": "@example",
+ "name": "Create analytics bucket",
"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```"
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .analytics\n .createBucket('analytics-data')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"name\": \"analytics-data\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -164485,10 +166347,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 57,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
}
],
"parameters": [
@@ -164539,10 +166401,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 59,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 82,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82"
}
],
"type": {
@@ -164560,10 +166422,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 60,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 83,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L83"
}
],
"type": {
@@ -164580,10 +166442,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 58,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 81,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81"
}
]
}
@@ -164605,10 +166467,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 63,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 86,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86"
}
],
"type": {
@@ -164624,10 +166486,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 64,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 87,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L87"
}
],
"type": {
@@ -164646,10 +166508,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 62,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 85,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85"
}
]
}
@@ -164671,10 +166533,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 170,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221"
}
],
"signatures": [
@@ -164688,10 +166550,19 @@
"summary": [
{
"kind": "text",
- "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"
+ "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\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -164703,10 +166574,19 @@
},
{
"tag": "@example",
+ "name": "Delete analytics bucket",
"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```"
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .analytics\n .deleteBucket('analytics-data')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully deleted\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -164714,16 +166594,16 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 170,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221"
}
],
"parameters": [
{
"id": 105,
- "name": "bucketId",
+ "name": "bucketName",
"variant": "param",
"kind": 32768,
"flags": {},
@@ -164768,10 +166648,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 172,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 223,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223"
}
],
"type": {
@@ -164791,10 +166671,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 172,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 223,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223"
}
],
"type": {
@@ -164811,10 +166691,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 172,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 223,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223"
}
]
}
@@ -164828,10 +166708,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 173,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 224,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224"
}
],
"type": {
@@ -164848,10 +166728,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 171,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 222,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L222"
}
]
}
@@ -164873,10 +166753,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 176,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 227,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227"
}
],
"type": {
@@ -164892,10 +166772,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 177,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 228,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228"
}
],
"type": {
@@ -164914,10 +166794,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 175,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226"
}
]
}
@@ -164939,10 +166819,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 109,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 149,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
],
"signatures": [
@@ -164956,10 +166836,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves the details of all Analytics Storage buckets within an existing project\nOnly returns buckets of type 'ANALYTICS'"
+ "text": "Retrieves the details of all Analytics Storage buckets within an existing project\nOnly returns buckets of type 'ANALYTICS'\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -164971,10 +166860,19 @@
},
{
"tag": "@example",
+ "name": "List analytics buckets",
"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```"
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .analytics\n .listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc'\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [\n {\n \"id\": \"analytics-data\",\n \"name\": \"analytics-data\",\n \"type\": \"ANALYTICS\",\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n }\n ],\n \"error\": null\n}\n```"
}
]
}
@@ -164982,10 +166880,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 109,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 149,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
],
"parameters": [
@@ -165032,10 +166930,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 110,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 150,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L150"
}
],
"type": {
@@ -165061,10 +166959,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 111,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 151,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151"
}
],
"type": {
@@ -165090,10 +166988,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 114,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 154,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L154"
}
],
"type": {
@@ -165119,10 +167017,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 112,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 152,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152"
}
],
"type": {
@@ -165165,10 +167063,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 113,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 153,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153"
}
],
"type": {
@@ -165194,10 +167092,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 109,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 149,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
]
}
@@ -165231,10 +167129,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 117,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 157,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L157"
}
],
"type": {
@@ -165255,10 +167153,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 118,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158"
}
],
"type": {
@@ -165275,10 +167173,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 116,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 156,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L156"
}
]
}
@@ -165300,10 +167198,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 121,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 161,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161"
}
],
"type": {
@@ -165319,10 +167217,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 122,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 162,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162"
}
],
"type": {
@@ -165341,10 +167239,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 120,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 160,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160"
}
]
}
@@ -165368,10 +167266,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 35,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 47,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47"
}
],
"signatures": [
@@ -165385,10 +167283,19 @@
"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 }"
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -165402,10 +167309,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 35,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 47,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47"
}
],
"type": {
@@ -165426,12 +167333,18 @@
"children": [79, 103, 88, 77]
}
],
+ "categories": [
+ {
+ "title": "Analytics Buckets",
+ "children": [48, 79, 103, 88, 77]
+ }
+ ],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L11"
}
]
}
@@ -165444,10 +167357,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1"
}
]
},
@@ -165476,7 +167389,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
}
],
"signatures": [
@@ -165491,7 +167404,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
}
],
"parameters": [
@@ -165525,7 +167438,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
}
],
"indexSignatures": [
@@ -165540,7 +167453,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 16,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
}
],
"parameters": [
@@ -165822,9 +167735,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"signatures": [
@@ -165842,12 +167755,39 @@
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
{
"kind": "text",
- "text": "newly created bucket id"
+ "text": "Promise with newly created bucket id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .createBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"name\": \"avatars\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -165856,9 +167796,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"parameters": [
@@ -165915,9 +167855,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 125,
+ "line": 206,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206"
}
],
"type": {
@@ -165956,9 +167896,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 124,
+ "line": 205,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205"
}
],
"type": {
@@ -165996,9 +167936,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 123,
+ "line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204"
}
],
"type": {
@@ -166037,9 +167977,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 126,
+ "line": 207,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207"
}
],
"type": {
@@ -166059,9 +167999,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 122,
+ "line": 203,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203"
}
]
}
@@ -166097,9 +168037,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 132,
+ "line": 213,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213"
}
],
"type": {
@@ -166133,9 +168073,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 133,
+ "line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214"
}
],
"type": {
@@ -166153,9 +168093,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 131,
+ "line": 212,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212"
}
]
}
@@ -166178,9 +168118,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 136,
+ "line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217"
}
],
"type": {
@@ -166197,9 +168137,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 137,
+ "line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218"
}
],
"type": {
@@ -166219,9 +168159,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 135,
+ "line": 216,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216"
}
]
}
@@ -166244,9 +168184,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"signatures": [
@@ -166270,14 +168210,52 @@
"kind": "text",
"text": " the bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Delete bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .deleteBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully deleted\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"parameters": [
@@ -166329,9 +168307,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -166352,9 +168330,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -166372,9 +168350,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
]
}
@@ -166389,9 +168367,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 266,
+ "line": 408,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408"
}
],
"type": {
@@ -166409,9 +168387,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 264,
+ "line": 406,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406"
}
]
}
@@ -166434,9 +168412,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 269,
+ "line": 411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411"
}
],
"type": {
@@ -166453,9 +168431,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 270,
+ "line": 412,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412"
}
],
"type": {
@@ -166475,9 +168453,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 268,
+ "line": 410,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410"
}
]
}
@@ -166500,9 +168478,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"signatures": [
@@ -166518,14 +168496,52 @@
"kind": "text",
"text": "Removes all objects inside a single bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Empty bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .emptyBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully emptied\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"parameters": [
@@ -166577,9 +168593,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -166600,9 +168616,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -166620,9 +168636,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
]
}
@@ -166637,9 +168653,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 230,
+ "line": 353,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353"
}
],
"type": {
@@ -166657,9 +168673,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 228,
+ "line": 351,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351"
}
]
}
@@ -166682,9 +168698,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 233,
+ "line": 356,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356"
}
],
"type": {
@@ -166701,9 +168717,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 234,
+ "line": 357,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357"
}
],
"type": {
@@ -166723,9 +168739,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 232,
+ "line": 355,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355"
}
]
}
@@ -166748,9 +168764,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"signatures": [
@@ -166766,14 +168782,52 @@
"kind": "text",
"text": "Retrieves the details of an existing Storage bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with bucket details or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Get bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .getBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"id\": \"avatars\",\n \"name\": \"avatars\",\n \"owner\": \"\",\n \"public\": false,\n \"file_size_limit\": 1024,\n \"allowed_mime_types\": [\n \"image/png\"\n ],\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"parameters": [
@@ -166825,9 +168879,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 82,
+ "line": 141,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141"
}
],
"type": {
@@ -166846,9 +168900,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 83,
+ "line": 142,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142"
}
],
"type": {
@@ -166866,9 +168920,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 81,
+ "line": 140,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140"
}
]
}
@@ -166891,9 +168945,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 86,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145"
}
],
"type": {
@@ -166910,9 +168964,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 87,
+ "line": 146,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146"
}
],
"type": {
@@ -166932,9 +168986,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 85,
+ "line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144"
}
]
}
@@ -166957,9 +169011,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"signatures": [
@@ -166975,14 +169029,54 @@
"kind": "text",
"text": "Retrieves the details of all Storage buckets within an existing project."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of buckets or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets()\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets with options",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'prod'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"parameters": [
@@ -166994,11 +169088,51 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Query parameters for listing buckets"
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 625,
"name": "ListBucketOptions",
- "package": "@supabase/storage-js"
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "limit": [
+ {
+ "kind": "text",
+ "text": "Maximum number of buckets to return"
+ }
+ ],
+ "offset": [
+ {
+ "kind": "text",
+ "text": "Number of buckets to skip"
+ }
+ ],
+ "sortColumn": [
+ {
+ "kind": "text",
+ "text": "Column to sort by ('id', 'name', 'created_at', 'updated_at')"
+ }
+ ],
+ "sortOrder": [
+ {
+ "kind": "text",
+ "text": "Sort order ('asc' or 'desc')"
+ }
+ ],
+ "search": [
+ {
+ "kind": "text",
+ "text": "Search term to filter bucket names"
+ }
+ ]
+ }
}
}
],
@@ -167030,9 +169164,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 49,
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
}
],
"type": {
@@ -167054,9 +169188,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 50,
+ "line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
}
],
"type": {
@@ -167074,9 +169208,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 48,
+ "line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79"
}
]
}
@@ -167099,9 +169233,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 53,
+ "line": 84,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84"
}
],
"type": {
@@ -167118,9 +169252,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 54,
+ "line": 85,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
}
],
"type": {
@@ -167140,9 +169274,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 52,
+ "line": 83,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
}
]
}
@@ -167167,9 +169301,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"signatures": [
@@ -167185,14 +169319,25 @@
"kind": "text",
"text": "Enable throwing errors instead of returning them."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"type": {
@@ -167211,9 +169356,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"signatures": [
@@ -167229,14 +169374,52 @@
"kind": "text",
"text": "Updates a Storage bucket"
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .updateBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully updated\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"parameters": [
@@ -167293,9 +169476,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 184,
+ "line": 288,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288"
}
],
"type": {
@@ -167334,9 +169517,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 183,
+ "line": 287,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287"
}
],
"type": {
@@ -167374,9 +169557,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 182,
+ "line": 286,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286"
}
],
"type": {
@@ -167394,9 +169577,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 181,
+ "line": 285,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285"
}
]
}
@@ -167431,9 +169614,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -167454,9 +169637,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -167474,9 +169657,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
]
}
@@ -167491,9 +169674,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 189,
+ "line": 293,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293"
}
],
"type": {
@@ -167511,9 +169694,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 187,
+ "line": 291,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291"
}
]
}
@@ -167536,9 +169719,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 192,
+ "line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"type": {
@@ -167555,9 +169738,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 193,
+ "line": 297,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
],
"type": {
@@ -167577,9 +169760,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 191,
+ "line": 295,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295"
}
]
}
@@ -167604,12 +169787,22 @@
"children": [166, 208, 197, 157, 148, 146, 181]
}
],
+ "categories": [
+ {
+ "title": "File Buckets",
+ "children": [166, 208, 197, 157, 148, 146, 181]
+ },
+ {
+ "title": "Other",
+ "children": [116]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
}
],
"extendedBy": [
@@ -167632,7 +169825,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
}
]
},
@@ -167661,7 +169854,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
}
],
"signatures": [
@@ -167676,7 +169869,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
}
],
"parameters": [
@@ -167710,7 +169903,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
}
],
"indexSignatures": [
@@ -167725,7 +169918,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 54,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
}
],
"parameters": [
@@ -168005,9 +170198,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 392,
+ "line": 556,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556"
}
],
"signatures": [
@@ -168023,14 +170216,52 @@
"kind": "text",
"text": "Copies an existing file to a new path in the same bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with copied file path or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Copy file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .copy('public/avatar1.png', 'private/avatar2.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"avatars/private/avatar2.png\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 392,
+ "line": 556,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556"
}
],
"parameters": [
@@ -168140,9 +170371,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 398,
+ "line": 562,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L398"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
}
],
"type": {
@@ -168163,9 +170394,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 398,
+ "line": 562,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L398"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
}
],
"type": {
@@ -168183,9 +170414,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 398,
+ "line": 562,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L398"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
}
]
}
@@ -168200,9 +170431,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 399,
+ "line": 563,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L399"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L563"
}
],
"type": {
@@ -168220,9 +170451,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 397,
+ "line": 561,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L561"
}
]
}
@@ -168245,9 +170476,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 402,
+ "line": 566,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L402"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L566"
}
],
"type": {
@@ -168264,9 +170495,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 403,
+ "line": 567,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L567"
}
],
"type": {
@@ -168286,9 +170517,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 401,
+ "line": 565,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L401"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L565"
}
]
}
@@ -168311,9 +170542,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 256,
+ "line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342"
}
],
"signatures": [
@@ -168329,14 +170560,52 @@
"kind": "text",
"text": "Creates a signed upload URL.\nSigned upload URLs can be used to upload files to the bucket without further authentication.\nThey are valid for 2 hours."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with signed upload URL, token, and path or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create Signed Upload URL",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .createSignedUploadUrl('folder/cat.jpg')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/upload/sign/avatars/folder/cat.jpg?token=\",\n \"path\": \"folder/cat.jpg\",\n \"token\": \"\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 256,
+ "line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342"
}
],
"parameters": [
@@ -168401,9 +170670,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 258,
+ "line": 344,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344"
}
],
"type": {
@@ -168421,9 +170690,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 258,
+ "line": 344,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344"
}
]
}
@@ -168458,9 +170727,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -168481,9 +170750,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -168500,9 +170769,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -168519,9 +170788,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -168539,9 +170808,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
]
}
@@ -168556,9 +170825,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 262,
+ "line": 348,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L348"
}
],
"type": {
@@ -168576,9 +170845,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 260,
+ "line": 346,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L346"
}
]
}
@@ -168601,9 +170870,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 265,
+ "line": 351,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L351"
}
],
"type": {
@@ -168620,9 +170889,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 266,
+ "line": 352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
}
],
"type": {
@@ -168642,9 +170911,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 264,
+ "line": 350,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L350"
}
]
}
@@ -168667,9 +170936,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 439,
+ "line": 646,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646"
}
],
"signatures": [
@@ -168685,14 +170954,72 @@
"kind": "text",
"text": "Creates a signed URL. Use a signed URL to share a file for a fixed amount of time."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with signed URL or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create Signed URL",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .createSignedUrl('folder/avatar1.png', 60)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar1.png?token=\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create a signed URL for an asset with transformations",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = await supabase\n .storage\n .from('avatars')\n .createSignedUrl('folder/avatar1.png', 60, {\n transform: {\n width: 100,\n height: 100,\n }\n })\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create a signed URL which triggers the download of the asset",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = await supabase\n .storage\n .from('avatars')\n .createSignedUrl('folder/avatar1.png', 60, {\n download: true,\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 439,
+ "line": 646,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646"
}
],
"parameters": [
@@ -168786,9 +171113,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 442,
+ "line": 649,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649"
}
],
"type": {
@@ -168824,9 +171151,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 442,
+ "line": 649,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649"
}
],
"type": {
@@ -168846,9 +171173,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 442,
+ "line": 649,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649"
}
]
}
@@ -168883,9 +171210,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 445,
+ "line": 652,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652"
}
],
"type": {
@@ -168906,9 +171233,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 445,
+ "line": 652,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652"
}
],
"type": {
@@ -168926,9 +171253,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 445,
+ "line": 652,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652"
}
]
}
@@ -168943,9 +171270,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 446,
+ "line": 653,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
}
],
"type": {
@@ -168963,9 +171290,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 444,
+ "line": 651,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L651"
}
]
}
@@ -168988,9 +171315,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 449,
+ "line": 656,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -169007,9 +171334,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 450,
+ "line": 657,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L657"
}
],
"type": {
@@ -169029,9 +171356,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 448,
+ "line": 655,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L448"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L655"
}
]
}
@@ -169054,9 +171381,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 487,
+ "line": 725,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725"
}
],
"signatures": [
@@ -169072,14 +171399,52 @@
"kind": "text",
"text": "Creates multiple signed URLs. Use a signed URL to share a file for a fixed amount of time."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with array of signed URLs or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create Signed URLs",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .createSignedUrls(['folder/avatar1.png', 'folder/avatar2.png'], 60)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [\n {\n \"error\": null,\n \"path\": \"folder/avatar1.png\",\n \"signedURL\": \"/object/sign/avatars/folder/avatar1.png?token=\",\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar1.png?token=\"\n },\n {\n \"error\": null,\n \"path\": \"folder/avatar2.png\",\n \"signedURL\": \"/object/sign/avatars/folder/avatar2.png?token=\",\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar2.png?token=\"\n }\n ],\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 487,
+ "line": 725,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725"
}
],
"parameters": [
@@ -169174,9 +171539,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 490,
+ "line": 728,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728"
}
],
"type": {
@@ -169203,9 +171568,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 490,
+ "line": 728,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728"
}
]
}
@@ -169240,9 +171605,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -169265,9 +171630,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -169293,9 +171658,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -169321,9 +171686,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -169341,9 +171706,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
]
}
@@ -169359,9 +171724,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 494,
+ "line": 732,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L732"
}
],
"type": {
@@ -169379,9 +171744,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 492,
+ "line": 730,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L730"
}
]
}
@@ -169404,9 +171769,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 497,
+ "line": 735,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L497"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L735"
}
],
"type": {
@@ -169423,9 +171788,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 498,
+ "line": 736,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L498"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L736"
}
],
"type": {
@@ -169445,9 +171810,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 496,
+ "line": 734,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L734"
}
]
}
@@ -169470,9 +171835,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
],
"signatures": [
@@ -169496,14 +171861,62 @@
"kind": "text",
"text": " instead."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "BlobDownloadBuilder instance for downloading the file"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Download file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .download('folder/avatar1.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": ,\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Download file with transformations",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .download('folder/avatar1.png', {\n transform: {\n width: 100,\n height: 100,\n quality: 80\n }\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
],
"typeParameters": [
@@ -169533,9 +171946,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
],
"type": {
@@ -169555,9 +171968,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
]
}
@@ -169628,9 +172041,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 594,
+ "line": 886,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886"
}
],
"signatures": [
@@ -169646,14 +172059,44 @@
"kind": "text",
"text": "Checks the existence of a file."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with boolean indicating file existence or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Check file existence",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .exists('folder/avatar1.png')\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 594,
+ "line": 886,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886"
}
],
"parameters": [
@@ -169663,6 +172106,22 @@
"variant": "param",
"kind": 32768,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The file path, including the file name. For example "
+ },
+ {
+ "kind": "code",
+ "text": "`folder/image.png`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
"type": {
"type": "intrinsic",
"name": "string"
@@ -169697,9 +172156,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 596,
+ "line": 888,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L596"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L888"
}
],
"type": {
@@ -169716,9 +172175,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 597,
+ "line": 889,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L889"
}
],
"type": {
@@ -169736,9 +172195,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 595,
+ "line": 887,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L595"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L887"
}
]
}
@@ -169761,9 +172220,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 600,
+ "line": 892,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L600"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L892"
}
],
"type": {
@@ -169780,9 +172239,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 601,
+ "line": 893,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L893"
}
],
"type": {
@@ -169802,9 +172261,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 599,
+ "line": 891,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L599"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L891"
}
]
}
@@ -169827,9 +172286,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 636,
+ "line": 970,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970"
}
],
"signatures": [
@@ -169845,14 +172304,72 @@
"kind": "text",
"text": "A simple convenience function to get the URL for an asset in a public bucket. If you do not want to use this function, you can construct the public URL by concatenating the bucket URL with the path to the asset.\nThis function does not verify if the bucket is public. If a public URL is created for a bucket which is not public, you will not be able to download the asset."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Object with public URL"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Returns the URL for an asset in a public bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = supabase\n .storage\n .from('public-bucket')\n .getPublicUrl('folder/avatar1.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"publicUrl\": \"https://example.supabase.co/storage/v1/object/public/public-bucket/folder/avatar1.png\"\n }\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Returns the URL for an asset in a public bucket with transformations",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = supabase\n .storage\n .from('public-bucket')\n .getPublicUrl('folder/avatar1.png', {\n transform: {\n width: 100,\n height: 100,\n }\n })\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Returns the URL which triggers the download of an asset in a public bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = supabase\n .storage\n .from('public-bucket')\n .getPublicUrl('folder/avatar1.png', {\n download: true,\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 636,
+ "line": 970,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970"
}
],
"parameters": [
@@ -169919,9 +172436,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 638,
+ "line": 972,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972"
}
],
"type": {
@@ -169957,9 +172474,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 638,
+ "line": 972,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972"
}
],
"type": {
@@ -169979,9 +172496,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 638,
+ "line": 972,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972"
}
]
}
@@ -170006,9 +172523,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
],
"type": {
@@ -170029,9 +172546,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
],
"type": {
@@ -170049,9 +172566,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
]
}
@@ -170067,9 +172584,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
]
}
@@ -170086,9 +172603,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 560,
+ "line": 841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841"
}
],
"signatures": [
@@ -170104,14 +172621,44 @@
"kind": "text",
"text": "Retrieves the details of an existing file."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file metadata or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Get file info",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .info('folder/avatar1.png')\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 560,
+ "line": 841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841"
}
],
"parameters": [
@@ -170121,6 +172668,22 @@
"variant": "param",
"kind": 32768,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The file path, including the file name. For example "
+ },
+ {
+ "kind": "code",
+ "text": "`folder/image.png`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
"type": {
"type": "intrinsic",
"name": "string"
@@ -170155,9 +172718,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 562,
+ "line": 843,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L843"
}
],
"type": {
@@ -170184,9 +172747,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 563,
+ "line": 844,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L563"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L844"
}
],
"type": {
@@ -170204,9 +172767,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 561,
+ "line": 842,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L842"
}
]
}
@@ -170229,9 +172792,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 566,
+ "line": 847,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L566"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L847"
}
],
"type": {
@@ -170248,9 +172811,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 567,
+ "line": 848,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L848"
}
],
"type": {
@@ -170270,9 +172833,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 565,
+ "line": 846,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L565"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L846"
}
]
}
@@ -170295,9 +172858,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 772,
+ "line": 1178,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178"
}
],
"signatures": [
@@ -170313,14 +172876,62 @@
"kind": "text",
"text": "Lists all the files and folders within a path of the bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of files or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List files in a bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .list('folder', {\n limit: 100,\n offset: 0,\n sortBy: { column: 'name', order: 'asc' },\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [\n {\n \"name\": \"avatar1.png\",\n \"id\": \"e668cf7f-821b-4a2f-9dce-7dfa5dd1cfd2\",\n \"updated_at\": \"2024-05-22T23:06:05.580Z\",\n \"created_at\": \"2024-05-22T23:04:34.443Z\",\n \"last_accessed_at\": \"2024-05-22T23:04:34.443Z\",\n \"metadata\": {\n \"eTag\": \"\\\"c5e8c553235d9af30ef4f6e280790b92\\\"\",\n \"size\": 32175,\n \"mimetype\": \"image/png\",\n \"cacheControl\": \"max-age=3600\",\n \"lastModified\": \"2024-05-22T23:06:05.574Z\",\n \"contentLength\": 32175,\n \"httpStatusCode\": 200\n }\n }\n ],\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Search files in a bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .list('folder', {\n limit: 100,\n offset: 0,\n sortBy: { column: 'name', order: 'asc' },\n search: 'jon'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 772,
+ "line": 1178,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178"
}
],
"parameters": [
@@ -170376,6 +172987,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional fetch parameters including signal for cancellation"
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 701,
@@ -170412,9 +173031,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 778,
+ "line": 1184,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L778"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1184"
}
],
"type": {
@@ -170436,9 +173055,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 779,
+ "line": 1185,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L779"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1185"
}
],
"type": {
@@ -170456,9 +173075,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 777,
+ "line": 1183,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1183"
}
]
}
@@ -170481,9 +173100,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 782,
+ "line": 1188,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L782"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1188"
}
],
"type": {
@@ -170500,9 +173119,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 783,
+ "line": 1189,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1189"
}
],
"type": {
@@ -170522,9 +173141,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 781,
+ "line": 1187,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1187"
}
]
}
@@ -170547,9 +173166,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 813,
+ "line": 1221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L813"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221"
}
],
"signatures": [
@@ -170566,14 +173185,25 @@
"text": "this method signature might change in the future"
}
],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
+ ],
"modifierTags": ["@experimental"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 813,
+ "line": 1221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L813"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221"
}
],
"parameters": [
@@ -170644,9 +173274,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 818,
+ "line": 1226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L818"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1226"
}
],
"type": {
@@ -170665,9 +173295,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 819,
+ "line": 1227,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L819"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1227"
}
],
"type": {
@@ -170685,9 +173315,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 817,
+ "line": 1225,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1225"
}
]
}
@@ -170710,9 +173340,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 822,
+ "line": 1230,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L822"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1230"
}
],
"type": {
@@ -170729,9 +173359,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 823,
+ "line": 1231,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L823"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1231"
}
],
"type": {
@@ -170751,9 +173381,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 821,
+ "line": 1229,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L821"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1229"
}
]
}
@@ -170776,9 +173406,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 346,
+ "line": 490,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
}
],
"signatures": [
@@ -170794,14 +173424,52 @@
"kind": "text",
"text": "Moves an existing file to a new path in the same bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Move file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .move('public/avatar1.png', 'private/avatar2.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully moved\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 346,
+ "line": 490,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
}
],
"parameters": [
@@ -170911,9 +173579,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 352,
+ "line": 496,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
}
],
"type": {
@@ -170934,9 +173602,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 352,
+ "line": 496,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
}
],
"type": {
@@ -170954,9 +173622,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 352,
+ "line": 496,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
}
]
}
@@ -170971,9 +173639,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 353,
+ "line": 497,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L497"
}
],
"type": {
@@ -170991,9 +173659,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 351,
+ "line": 495,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L351"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L495"
}
]
}
@@ -171016,9 +173684,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 356,
+ "line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
}
],
"type": {
@@ -171035,9 +173703,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 357,
+ "line": 501,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L501"
}
],
"type": {
@@ -171057,9 +173725,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 355,
+ "line": 499,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L355"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L499"
}
]
}
@@ -171082,9 +173750,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 674,
+ "line": 1026,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026"
}
],
"signatures": [
@@ -171100,14 +173768,52 @@
"kind": "text",
"text": "Deletes files within the same bucket"
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of deleted files or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Delete file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .remove(['folder/avatar1.png'])\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [],\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 674,
+ "line": 1026,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026"
}
],
"parameters": [
@@ -171170,9 +173876,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 676,
+ "line": 1028,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L676"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1028"
}
],
"type": {
@@ -171194,9 +173900,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 677,
+ "line": 1029,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L677"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1029"
}
],
"type": {
@@ -171214,9 +173920,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 675,
+ "line": 1027,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L675"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1027"
}
]
}
@@ -171239,9 +173945,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 680,
+ "line": 1032,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L680"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1032"
}
],
"type": {
@@ -171258,9 +173964,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 681,
+ "line": 1033,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L681"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1033"
}
],
"type": {
@@ -171280,9 +173986,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 679,
+ "line": 1031,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L679"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1031"
}
]
}
@@ -171307,9 +174013,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 67,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69"
}
],
"signatures": [
@@ -171325,14 +174031,25 @@
"kind": "text",
"text": "Enable throwing errors instead of returning them."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 67,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69"
}
],
"type": {
@@ -171351,9 +174068,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 852,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L852"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260"
}
],
"signatures": [
@@ -171366,9 +174083,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 852,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L852"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260"
}
],
"parameters": [
@@ -171400,9 +174117,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 312,
+ "line": 436,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436"
}
],
"signatures": [
@@ -171418,14 +174135,62 @@
"kind": "text",
"text": "Replaces an existing file at the specified path with a new one."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file path and id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', avatarFile, {\n cacheControl: '3600',\n upsert: true\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"public/avatar1.png\",\n \"fullPath\": \"avatars/public/avatar1.png\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update file using `ArrayBuffer` from base64 file data",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nimport {decode} from 'base64-arraybuffer'\n\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', decode('base64FileData'), {\n contentType: 'image/png'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 312,
+ "line": 436,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436"
}
],
"parameters": [
@@ -171615,6 +174380,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional file upload options including cacheControl, contentType, upsert, and metadata."
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 664,
@@ -171651,9 +174424,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -171674,9 +174447,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -171693,9 +174466,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -171712,9 +174485,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -171732,9 +174505,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
]
}
@@ -171749,9 +174522,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 329,
+ "line": 453,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L453"
}
],
"type": {
@@ -171769,9 +174542,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 327,
+ "line": 451,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L451"
}
]
}
@@ -171794,9 +174567,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 332,
+ "line": 456,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L456"
}
],
"type": {
@@ -171813,9 +174586,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 333,
+ "line": 457,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L457"
}
],
"type": {
@@ -171835,9 +174608,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 331,
+ "line": 455,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L331"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L455"
}
]
}
@@ -171860,9 +174633,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 175,
+ "line": 215,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215"
}
],
"signatures": [
@@ -171878,14 +174651,62 @@
"kind": "text",
"text": "Uploads a file to an existing bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file path and id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Upload file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .upload('public/avatar1.png', avatarFile, {\n cacheControl: '3600',\n upsert: false\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"public/avatar1.png\",\n \"fullPath\": \"avatars/public/avatar1.png\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Upload file using `ArrayBuffer` from base64 file data",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nimport { decode } from 'base64-arraybuffer'\n\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .upload('public/avatar1.png', decode('base64FileData'), {\n contentType: 'image/png'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 175,
+ "line": 215,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215"
}
],
"parameters": [
@@ -171948,6 +174769,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional file upload options including cacheControl, contentType, upsert, and metadata."
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 664,
@@ -171984,9 +174813,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -172007,9 +174836,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -172026,9 +174855,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -172045,9 +174874,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -172065,9 +174894,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
]
}
@@ -172082,9 +174911,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 182,
+ "line": 222,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L222"
}
],
"type": {
@@ -172102,9 +174931,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 180,
+ "line": 220,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L220"
}
]
}
@@ -172127,9 +174956,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 185,
+ "line": 225,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L225"
}
],
"type": {
@@ -172146,9 +174975,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 186,
+ "line": 226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L226"
}
],
"type": {
@@ -172168,9 +174997,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 184,
+ "line": 224,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L224"
}
]
}
@@ -172193,9 +175022,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 198,
+ "line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
}
],
"signatures": [
@@ -172219,14 +175048,52 @@
"kind": "text",
"text": "."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file path and full path or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Upload to a signed URL",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .uploadToSignedUrl('folder/cat.jpg', 'token-from-createSignedUploadUrl', file)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"folder/cat.jpg\",\n \"fullPath\": \"avatars/folder/cat.jpg\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 198,
+ "line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
}
],
"parameters": [
@@ -172312,6 +175179,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional file upload options including cacheControl and contentType."
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 664,
@@ -172348,9 +175223,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
],
"type": {
@@ -172371,9 +175246,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
],
"type": {
@@ -172391,9 +175266,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
],
"type": {
@@ -172412,9 +175287,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
]
}
@@ -172430,9 +175305,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 235,
+ "line": 298,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L298"
}
],
"type": {
@@ -172451,9 +175326,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 233,
+ "line": 296,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L296"
}
]
}
@@ -172476,9 +175351,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 242,
+ "line": 305,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"type": {
@@ -172496,9 +175371,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 242,
+ "line": 305,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"type": {
@@ -172518,9 +175393,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 242,
+ "line": 305,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
]
}
@@ -172548,12 +175423,24 @@
]
}
],
+ "categories": [
+ {
+ "title": "File Buckets",
+ "children": [
+ 347, 303, 360, 376, 393, 409, 418, 400, 438, 449, 334, 429, 255, 319, 273, 288
+ ]
+ },
+ {
+ "title": "Other",
+ "children": [224, 462]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 45,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L45"
}
]
}
@@ -172569,7 +175456,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
}
]
},
@@ -172598,7 +175485,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"signatures": [
@@ -172613,7 +175500,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"parameters": [
@@ -172636,7 +175523,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"signatures": [
@@ -172651,7 +175538,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"type": {
@@ -172712,7 +175599,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -172746,7 +175633,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"typeParameters": [
@@ -172829,7 +175716,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"signatures": [
@@ -172844,7 +175731,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"parameters": [
@@ -172952,7 +175839,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -172967,7 +175854,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"parameters": [
@@ -173080,7 +175967,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 4,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
}
],
"implementedTypes": [
@@ -173126,7 +176013,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
}
]
}
@@ -173257,7 +176144,7 @@
},
{
"kind": "code",
- "text": "```js\n const { data, error } = await storageClient.listBuckets()\n ```"
+ "text": "```js\n // List all buckets\n const { data, error } = await storageClient.listBuckets()\n\n // List buckets with options (pagination, sorting, search)\n const { data, error } = await storageClient.listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'prod',\n })\n ```"
},
{
"kind": "text",
@@ -174403,39 +177290,39 @@
"qualifiedName": "default.[toStringTag]"
},
"46": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": ""
},
"47": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default"
},
"48": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.__constructor"
},
"49": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default"
},
"50": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "url"
},
"51": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "headers"
},
"52": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"53": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.__index"
},
"55": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "fetch"
},
"56": {
@@ -174467,151 +177354,151 @@
"qualifiedName": "init"
},
"77": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.throwOnError"
},
"78": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.throwOnError"
},
"79": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.createBucket"
},
"80": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.createBucket"
},
"81": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "name"
},
"82": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"83": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"84": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"85": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"86": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"87": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"88": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.listBuckets"
},
"89": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.listBuckets"
},
"90": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "options"
},
"91": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"92": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.limit"
},
"93": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.offset"
},
"94": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.sortColumn"
},
"95": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.sortOrder"
},
"96": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.search"
},
"97": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"98": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"99": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"100": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"101": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"102": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"103": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.deleteBucket"
},
"104": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.deleteBucket"
},
"105": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
- "qualifiedName": "bucketId"
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
+ "qualifiedName": "bucketName"
},
"106": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"107": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"108": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"109": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.message"
},
"110": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"111": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"112": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"113": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"114": {
@@ -176280,7 +179167,7 @@
},
"613": {
"sourceFileName": "src/index.ts",
- "qualifiedName": "StorageAnalyticsApi"
+ "qualifiedName": "StorageAnalyticsClient"
},
"614": {
"sourceFileName": "src/lib/types.ts",
@@ -176356,7 +179243,7 @@
},
"632": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AnalyticBucket.id"
+ "qualifiedName": "AnalyticBucket.name"
},
"633": {
"sourceFileName": "src/lib/types.ts",
@@ -178367,7 +181254,7 @@
"entries": {
"1": "src/index.ts",
"2": "src/packages/BlobDownloadBuilder.ts",
- "3": "src/packages/StorageAnalyticsApi.ts",
+ "3": "src/packages/StorageAnalyticsClient.ts",
"4": "src/packages/StorageBucketApi.ts",
"5": "src/packages/StorageFileApi.ts",
"6": "src/packages/StreamDownloadBuilder.ts",
@@ -178408,7 +181295,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L88"
}
],
"type": {
@@ -178427,7 +181314,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L89"
}
],
"type": {
@@ -178446,7 +181333,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L90"
}
],
"type": {
@@ -178465,7 +181352,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L91"
}
],
"type": {
@@ -178484,7 +181371,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L92"
}
],
"type": {
@@ -178503,7 +181390,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L93"
}
],
"type": {
@@ -178522,7 +181409,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L94"
}
],
"type": {
@@ -178541,7 +181428,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L95"
}
],
"type": {
@@ -178560,7 +181447,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L96"
}
],
"type": {
@@ -178579,7 +181466,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 97,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L97"
}
],
"type": {
@@ -178598,7 +181485,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L98"
}
],
"type": {
@@ -178617,7 +181504,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 99,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L99"
}
],
"type": {
@@ -178636,7 +181523,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L100"
}
],
"type": {
@@ -178655,7 +181542,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L101"
}
],
"type": {
@@ -178674,7 +181561,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L102"
}
],
"type": {
@@ -178694,7 +181581,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L87"
}
]
},
@@ -178724,7 +181611,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"signatures": [
@@ -178758,7 +181645,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"parameters": [
@@ -178801,7 +181688,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 42,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L42"
}
],
"type": {
@@ -179030,7 +181917,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 41,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L41"
}
],
"type": {
@@ -179067,7 +181954,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 43,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L43"
}
],
"type": {
@@ -179090,7 +181977,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 40,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L40"
}
]
}
@@ -179120,7 +182007,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L19"
}
],
"type": {
@@ -179349,7 +182236,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L17"
}
],
"type": {
@@ -179385,7 +182272,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L18"
}
],
"type": {
@@ -179408,7 +182295,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L16"
}
],
"type": {
@@ -179427,7 +182314,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"signatures": [
@@ -179461,7 +182348,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"typeParameters": [
@@ -179560,7 +182447,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"signatures": [
@@ -179594,7 +182481,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"parameters": [
@@ -179645,7 +182532,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L15"
}
]
},
@@ -179686,7 +182573,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32"
}
],
"signatures": [
@@ -179701,7 +182588,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32"
}
],
"parameters": [
@@ -179772,7 +182659,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -179796,7 +182683,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L30"
}
],
"extendedTypes": [
@@ -179865,7 +182752,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50"
}
],
"signatures": [
@@ -179880,7 +182767,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50"
}
],
"parameters": [
@@ -179928,7 +182815,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -179957,7 +182844,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L49"
}
],
"extendedTypes": [
@@ -180006,7 +182893,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82"
}
],
"signatures": [
@@ -180021,7 +182908,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82"
}
],
"parameters": [
@@ -180069,7 +182956,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -180098,7 +182985,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L81"
}
],
"extendedTypes": [
@@ -180147,7 +183034,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66"
}
],
"signatures": [
@@ -180162,7 +183049,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66"
}
],
"parameters": [
@@ -180210,7 +183097,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -180239,7 +183126,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L65"
}
],
"extendedTypes": [
@@ -180262,7 +183149,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105"
}
],
"type": {
@@ -180295,7 +183182,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L121"
}
],
"type": {
@@ -180404,7 +183291,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109"
}
],
"type": {
@@ -180420,7 +183307,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109"
}
],
"indexSignatures": [
@@ -180435,7 +183322,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109"
}
],
"parameters": [
@@ -180481,7 +183368,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L113"
}
],
"type": {
@@ -180531,7 +183418,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L117"
}
],
"type": {
@@ -180562,7 +183449,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L132"
}
],
"type": {
@@ -180596,7 +183483,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L137"
}
],
"type": {
@@ -180616,7 +183503,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105"
}
]
}
@@ -180633,7 +183520,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L16"
}
],
"typeParameters": [
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/functions.json b/apps/docs/spec/enrichments/tsdoc_v2/functions.json
index 30179a0aa5f4b..c9627a9578c10 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/functions.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/functions.json
@@ -23,7 +23,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L88"
}
],
"type": {
@@ -42,7 +42,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L89"
}
],
"type": {
@@ -61,7 +61,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L90"
}
],
"type": {
@@ -80,7 +80,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L91"
}
],
"type": {
@@ -99,7 +99,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L92"
}
],
"type": {
@@ -118,7 +118,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L93"
}
],
"type": {
@@ -137,7 +137,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L94"
}
],
"type": {
@@ -156,7 +156,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L95"
}
],
"type": {
@@ -175,7 +175,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L96"
}
],
"type": {
@@ -194,7 +194,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 97,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L97"
}
],
"type": {
@@ -213,7 +213,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L98"
}
],
"type": {
@@ -232,7 +232,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 99,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L99"
}
],
"type": {
@@ -251,7 +251,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L100"
}
],
"type": {
@@ -270,7 +270,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L101"
}
],
"type": {
@@ -289,7 +289,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L102"
}
],
"type": {
@@ -309,7 +309,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L87"
}
]
},
@@ -339,7 +339,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"signatures": [
@@ -373,7 +373,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"parameters": [
@@ -416,7 +416,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 42,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L42"
}
],
"type": {
@@ -645,7 +645,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 41,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L41"
}
],
"type": {
@@ -682,7 +682,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 43,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L43"
}
],
"type": {
@@ -705,7 +705,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 40,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L40"
}
]
}
@@ -735,7 +735,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L19"
}
],
"type": {
@@ -964,7 +964,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L17"
}
],
"type": {
@@ -1000,7 +1000,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L18"
}
],
"type": {
@@ -1023,7 +1023,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L16"
}
],
"type": {
@@ -1042,7 +1042,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"signatures": [
@@ -1076,7 +1076,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"typeParameters": [
@@ -1175,7 +1175,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"signatures": [
@@ -1209,7 +1209,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"parameters": [
@@ -1260,7 +1260,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L15"
}
]
},
@@ -1301,7 +1301,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32"
}
],
"signatures": [
@@ -1316,7 +1316,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32"
}
],
"parameters": [
@@ -1387,7 +1387,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1411,7 +1411,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L30"
}
],
"extendedTypes": [
@@ -1480,7 +1480,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50"
}
],
"signatures": [
@@ -1495,7 +1495,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50"
}
],
"parameters": [
@@ -1543,7 +1543,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1572,7 +1572,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L49"
}
],
"extendedTypes": [
@@ -1621,7 +1621,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82"
}
],
"signatures": [
@@ -1636,7 +1636,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82"
}
],
"parameters": [
@@ -1684,7 +1684,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1713,7 +1713,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L81"
}
],
"extendedTypes": [
@@ -1762,7 +1762,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66"
}
],
"signatures": [
@@ -1777,7 +1777,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66"
}
],
"parameters": [
@@ -1825,7 +1825,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1854,7 +1854,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L65"
}
],
"extendedTypes": [
@@ -1877,7 +1877,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105"
}
],
"type": {
@@ -1910,7 +1910,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L121"
}
],
"type": {
@@ -2019,7 +2019,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109"
}
],
"type": {
@@ -2035,7 +2035,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109"
}
],
"indexSignatures": [
@@ -2050,7 +2050,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109"
}
],
"parameters": [
@@ -2096,7 +2096,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L113"
}
],
"type": {
@@ -2146,7 +2146,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L117"
}
],
"type": {
@@ -2177,7 +2177,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L132"
}
],
"type": {
@@ -2211,7 +2211,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L137"
}
],
"type": {
@@ -2231,7 +2231,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105"
}
]
}
@@ -2248,7 +2248,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L16"
}
],
"typeParameters": [
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/functions_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/functions_dereferenced.json
index 30179a0aa5f4b..c9627a9578c10 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/functions_dereferenced.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/functions_dereferenced.json
@@ -23,7 +23,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L88"
}
],
"type": {
@@ -42,7 +42,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L89"
}
],
"type": {
@@ -61,7 +61,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L90"
}
],
"type": {
@@ -80,7 +80,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L91"
}
],
"type": {
@@ -99,7 +99,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L92"
}
],
"type": {
@@ -118,7 +118,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L93"
}
],
"type": {
@@ -137,7 +137,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L94"
}
],
"type": {
@@ -156,7 +156,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L95"
}
],
"type": {
@@ -175,7 +175,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L96"
}
],
"type": {
@@ -194,7 +194,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 97,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L97"
}
],
"type": {
@@ -213,7 +213,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L98"
}
],
"type": {
@@ -232,7 +232,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 99,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L99"
}
],
"type": {
@@ -251,7 +251,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L100"
}
],
"type": {
@@ -270,7 +270,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L101"
}
],
"type": {
@@ -289,7 +289,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L102"
}
],
"type": {
@@ -309,7 +309,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L87"
}
]
},
@@ -339,7 +339,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"signatures": [
@@ -373,7 +373,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L34"
}
],
"parameters": [
@@ -416,7 +416,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 42,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L42"
}
],
"type": {
@@ -645,7 +645,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 41,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L41"
}
],
"type": {
@@ -682,7 +682,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 43,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L43"
}
],
"type": {
@@ -705,7 +705,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 40,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L40"
}
]
}
@@ -735,7 +735,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L19"
}
],
"type": {
@@ -964,7 +964,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L17"
}
],
"type": {
@@ -1000,7 +1000,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L18"
}
],
"type": {
@@ -1023,7 +1023,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L16"
}
],
"type": {
@@ -1042,7 +1042,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"signatures": [
@@ -1076,7 +1076,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 75,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L75"
}
],
"typeParameters": [
@@ -1175,7 +1175,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"signatures": [
@@ -1209,7 +1209,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L60"
}
],
"parameters": [
@@ -1260,7 +1260,7 @@
"fileName": "packages/core/functions-js/src/FunctionsClient.ts",
"line": 15,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/FunctionsClient.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/FunctionsClient.ts#L15"
}
]
},
@@ -1301,7 +1301,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32"
}
],
"signatures": [
@@ -1316,7 +1316,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L32"
}
],
"parameters": [
@@ -1387,7 +1387,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1411,7 +1411,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L30"
}
],
"extendedTypes": [
@@ -1480,7 +1480,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50"
}
],
"signatures": [
@@ -1495,7 +1495,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L50"
}
],
"parameters": [
@@ -1543,7 +1543,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1572,7 +1572,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 49,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L49"
}
],
"extendedTypes": [
@@ -1621,7 +1621,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82"
}
],
"signatures": [
@@ -1636,7 +1636,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L82"
}
],
"parameters": [
@@ -1684,7 +1684,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1713,7 +1713,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 81,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L81"
}
],
"extendedTypes": [
@@ -1762,7 +1762,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66"
}
],
"signatures": [
@@ -1777,7 +1777,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L66"
}
],
"parameters": [
@@ -1825,7 +1825,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L31"
}
],
"type": {
@@ -1854,7 +1854,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 65,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L65"
}
],
"extendedTypes": [
@@ -1877,7 +1877,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105"
}
],
"type": {
@@ -1910,7 +1910,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L121"
}
],
"type": {
@@ -2019,7 +2019,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109"
}
],
"type": {
@@ -2035,7 +2035,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109"
}
],
"indexSignatures": [
@@ -2050,7 +2050,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 109,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L109"
}
],
"parameters": [
@@ -2096,7 +2096,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L113"
}
],
"type": {
@@ -2146,7 +2146,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L117"
}
],
"type": {
@@ -2177,7 +2177,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L132"
}
],
"type": {
@@ -2211,7 +2211,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L137"
}
],
"type": {
@@ -2231,7 +2231,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 105,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L105"
}
]
}
@@ -2248,7 +2248,7 @@
"fileName": "packages/core/functions-js/src/types.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/functions-js/src/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/functions-js/src/types.ts#L16"
}
],
"typeParameters": [
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json b/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json
index 0f60623b6614a..7ba1f0d8e725b 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue.json
@@ -6,7 +6,7 @@
"flags": {},
"children": [
{
- "id": 1491,
+ "id": 1513,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -32,7 +32,7 @@
},
"children": [
{
- "id": 1492,
+ "id": 1514,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -42,12 +42,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"signatures": [
{
- "id": 1493,
+ "id": 1515,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -57,12 +57,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"parameters": [
{
- "id": 1494,
+ "id": 1516,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -73,7 +73,7 @@
}
},
{
- "id": 1495,
+ "id": 1517,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -84,7 +84,7 @@
}
},
{
- "id": 1496,
+ "id": 1518,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -106,25 +106,25 @@
],
"type": {
"type": "reference",
- "target": 1491,
+ "target": 1513,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1505,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1504,
"name": "AuthError.constructor"
}
},
{
- "id": 1498,
+ "id": 1520,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -153,7 +153,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -182,7 +182,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1499,
+ "id": 1521,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -195,12 +195,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1487,
+ "target": 1509,
"name": "AuthError.code"
}
},
{
- "id": 1497,
+ "id": 1519,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -218,7 +218,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L51"
}
],
"type": {
@@ -227,7 +227,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1489,
+ "target": 1511,
"name": "AuthError.status"
}
}
@@ -235,11 +235,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1492]
+ "children": [1514]
},
{
"title": "Properties",
- "children": [1498, 1497]
+ "children": [1520, 1519]
}
],
"sources": [
@@ -247,20 +247,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L50"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1481,
+ "id": 1503,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -286,7 +286,7 @@
},
"children": [
{
- "id": 1482,
+ "id": 1504,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -296,12 +296,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"signatures": [
{
- "id": 1483,
+ "id": 1505,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -311,12 +311,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"parameters": [
{
- "id": 1484,
+ "id": 1506,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -327,7 +327,7 @@
}
},
{
- "id": 1485,
+ "id": 1507,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -340,7 +340,7 @@
}
},
{
- "id": 1486,
+ "id": 1508,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -355,7 +355,7 @@
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -373,7 +373,7 @@
}
},
{
- "id": 1487,
+ "id": 1509,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -400,7 +400,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -429,7 +429,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1488,
+ "id": 1510,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -442,7 +442,7 @@
}
},
{
- "id": 1489,
+ "id": 1511,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -460,7 +460,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -481,11 +481,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1482]
+ "children": [1504]
},
{
"title": "Properties",
- "children": [1487, 1489]
+ "children": [1509, 1511]
}
],
"sources": [
@@ -493,7 +493,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L14"
}
],
"extendedTypes": [
@@ -510,23 +510,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1491,
+ "target": 1513,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1501,
+ "target": 1523,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError"
}
]
},
{
- "id": 1548,
+ "id": 1570,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -552,7 +552,7 @@
},
"children": [
{
- "id": 1549,
+ "id": 1571,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -562,12 +562,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"signatures": [
{
- "id": 1550,
+ "id": 1572,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -577,12 +577,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"parameters": [
{
- "id": 1551,
+ "id": 1573,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -593,7 +593,7 @@
}
},
{
- "id": 1552,
+ "id": 1574,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -608,14 +608,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1553,
+ "id": 1575,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1555,
+ "id": 1577,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -625,7 +625,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -634,7 +634,7 @@
}
},
{
- "id": 1554,
+ "id": 1576,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -644,7 +644,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -656,7 +656,7 @@
"groups": [
{
"title": "Properties",
- "children": [1555, 1554]
+ "children": [1577, 1576]
}
],
"sources": [
@@ -664,7 +664,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
]
}
@@ -676,25 +676,25 @@
],
"type": {
"type": "reference",
- "target": 1548,
+ "target": 1570,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1572,
+ "id": 1594,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -723,7 +723,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -752,7 +752,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1573,
+ "id": 1595,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -765,12 +765,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1556,
+ "id": 1578,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -780,7 +780,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -793,14 +793,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1557,
+ "id": 1579,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1559,
+ "id": 1581,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -810,7 +810,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -819,7 +819,7 @@
}
},
{
- "id": 1558,
+ "id": 1580,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -829,7 +829,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -841,7 +841,7 @@
"groups": [
{
"title": "Properties",
- "children": [1559, 1558]
+ "children": [1581, 1580]
}
],
"sources": [
@@ -849,7 +849,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -859,7 +859,7 @@
"defaultValue": "null"
},
{
- "id": 1570,
+ "id": 1592,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -871,7 +871,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -880,12 +880,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1571,
+ "id": 1593,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -905,7 +905,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -914,12 +914,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
},
{
- "id": 1560,
+ "id": 1582,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -929,12 +929,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"signatures": [
{
- "id": 1561,
+ "id": 1583,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -944,20 +944,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1562,
+ "id": 1584,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1566,
+ "id": 1588,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -967,7 +967,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 187,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L187"
}
],
"type": {
@@ -980,14 +980,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1567,
+ "id": 1589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1569,
+ "id": 1591,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -997,7 +997,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -1006,7 +1006,7 @@
}
},
{
- "id": 1568,
+ "id": 1590,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1016,7 +1016,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -1028,7 +1028,7 @@
"groups": [
{
"title": "Properties",
- "children": [1569, 1568]
+ "children": [1591, 1590]
}
],
"sources": [
@@ -1036,7 +1036,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -1046,7 +1046,7 @@
"defaultValue": "..."
},
{
- "id": 1564,
+ "id": 1586,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -1056,7 +1056,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 185,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L185"
}
],
"type": {
@@ -1066,7 +1066,7 @@
"defaultValue": "..."
},
{
- "id": 1563,
+ "id": 1585,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1076,7 +1076,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 184,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L184"
}
],
"type": {
@@ -1086,7 +1086,7 @@
"defaultValue": "..."
},
{
- "id": 1565,
+ "id": 1587,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1096,7 +1096,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 186,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L186"
}
],
"type": {
@@ -1109,7 +1109,7 @@
"groups": [
{
"title": "Properties",
- "children": [1566, 1564, 1563, 1565]
+ "children": [1588, 1586, 1585, 1587]
}
],
"sources": [
@@ -1117,7 +1117,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 183,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L183"
}
]
}
@@ -1129,15 +1129,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1549]
+ "children": [1571]
},
{
"title": "Properties",
- "children": [1572, 1556, 1570, 1571]
+ "children": [1594, 1578, 1592, 1593]
},
{
"title": "Methods",
- "children": [1560]
+ "children": [1582]
}
],
"sources": [
@@ -1145,20 +1145,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 175,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L175"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1539,
+ "id": 1561,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -1184,7 +1184,7 @@
},
"children": [
{
- "id": 1540,
+ "id": 1562,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1194,12 +1194,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"signatures": [
{
- "id": 1541,
+ "id": 1563,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -1209,12 +1209,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"parameters": [
{
- "id": 1542,
+ "id": 1564,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1227,25 +1227,25 @@
],
"type": {
"type": "reference",
- "target": 1539,
+ "target": 1561,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1545,
+ "id": 1567,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1274,7 +1274,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1303,7 +1303,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1546,
+ "id": 1568,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1316,12 +1316,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1543,
+ "id": 1565,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1333,7 +1333,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1342,12 +1342,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1544,
+ "id": 1566,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1367,7 +1367,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1376,7 +1376,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -1384,11 +1384,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1540]
+ "children": [1562]
},
{
"title": "Properties",
- "children": [1545, 1543, 1544]
+ "children": [1567, 1565, 1566]
}
],
"sources": [
@@ -1396,20 +1396,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 156,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L156"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1624,
+ "id": 1646,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -1435,7 +1435,7 @@
},
"children": [
{
- "id": 1625,
+ "id": 1647,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1445,12 +1445,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 289,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289"
}
],
"signatures": [
{
- "id": 1626,
+ "id": 1648,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -1460,12 +1460,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 289,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289"
}
],
"parameters": [
{
- "id": 1627,
+ "id": 1649,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1478,25 +1478,25 @@
],
"type": {
"type": "reference",
- "target": 1624,
+ "target": 1646,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1630,
+ "id": 1652,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1525,7 +1525,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1554,7 +1554,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1631,
+ "id": 1653,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1567,12 +1567,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1628,
+ "id": 1650,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1584,7 +1584,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1593,12 +1593,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1629,
+ "id": 1651,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1618,7 +1618,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1627,7 +1627,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -1635,11 +1635,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1625]
+ "children": [1647]
},
{
"title": "Properties",
- "children": [1630, 1628, 1629]
+ "children": [1652, 1650, 1651]
}
],
"sources": [
@@ -1647,20 +1647,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 288,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L288"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1531,
+ "id": 1553,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -1686,7 +1686,7 @@
},
"children": [
{
- "id": 1532,
+ "id": 1554,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1696,12 +1696,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"signatures": [
{
- "id": 1533,
+ "id": 1555,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -1711,30 +1711,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"type": {
"type": "reference",
- "target": 1531,
+ "target": 1553,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1536,
+ "id": 1558,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1763,7 +1763,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1792,7 +1792,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1537,
+ "id": 1559,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1805,12 +1805,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1534,
+ "id": 1556,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1822,7 +1822,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1831,12 +1831,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1535,
+ "id": 1557,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1856,7 +1856,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1865,7 +1865,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -1873,11 +1873,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1532]
+ "children": [1554]
},
{
"title": "Properties",
- "children": [1536, 1534, 1535]
+ "children": [1558, 1556, 1557]
}
],
"sources": [
@@ -1885,20 +1885,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L140"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1575,
+ "id": 1597,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -1924,7 +1924,7 @@
},
"children": [
{
- "id": 1576,
+ "id": 1598,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1934,12 +1934,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"signatures": [
{
- "id": 1577,
+ "id": 1599,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -1949,12 +1949,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"parameters": [
{
- "id": 1578,
+ "id": 1600,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1965,7 +1965,7 @@
}
},
{
- "id": 1579,
+ "id": 1601,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -1980,14 +1980,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1580,
+ "id": 1602,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1582,
+ "id": 1604,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1997,7 +1997,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -2006,7 +2006,7 @@
}
},
{
- "id": 1581,
+ "id": 1603,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2016,7 +2016,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -2028,7 +2028,7 @@
"groups": [
{
"title": "Properties",
- "children": [1582, 1581]
+ "children": [1604, 1603]
}
],
"sources": [
@@ -2036,7 +2036,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
]
}
@@ -2048,25 +2048,25 @@
],
"type": {
"type": "reference",
- "target": 1575,
+ "target": 1597,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1599,
+ "id": 1621,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2095,7 +2095,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2124,7 +2124,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1600,
+ "id": 1622,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2137,12 +2137,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1583,
+ "id": 1605,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2152,7 +2152,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2165,14 +2165,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1584,
+ "id": 1606,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1586,
+ "id": 1608,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2182,7 +2182,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2191,7 +2191,7 @@
}
},
{
- "id": 1585,
+ "id": 1607,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2201,7 +2201,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2213,7 +2213,7 @@
"groups": [
{
"title": "Properties",
- "children": [1586, 1585]
+ "children": [1608, 1607]
}
],
"sources": [
@@ -2221,7 +2221,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -2231,7 +2231,7 @@
"defaultValue": "null"
},
{
- "id": 1597,
+ "id": 1619,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2243,7 +2243,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2252,12 +2252,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1598,
+ "id": 1620,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2277,7 +2277,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2286,12 +2286,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
},
{
- "id": 1587,
+ "id": 1609,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -2301,12 +2301,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"signatures": [
{
- "id": 1588,
+ "id": 1610,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -2316,20 +2316,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1589,
+ "id": 1611,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1593,
+ "id": 1615,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2339,7 +2339,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 221,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L221"
}
],
"type": {
@@ -2352,14 +2352,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1594,
+ "id": 1616,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1596,
+ "id": 1618,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2369,7 +2369,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2378,7 +2378,7 @@
}
},
{
- "id": 1595,
+ "id": 1617,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2388,7 +2388,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2400,7 +2400,7 @@
"groups": [
{
"title": "Properties",
- "children": [1596, 1595]
+ "children": [1618, 1617]
}
],
"sources": [
@@ -2408,7 +2408,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -2418,7 +2418,7 @@
"defaultValue": "..."
},
{
- "id": 1591,
+ "id": 1613,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -2428,7 +2428,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 219,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L219"
}
],
"type": {
@@ -2438,7 +2438,7 @@
"defaultValue": "..."
},
{
- "id": 1590,
+ "id": 1612,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2448,7 +2448,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L218"
}
],
"type": {
@@ -2458,7 +2458,7 @@
"defaultValue": "..."
},
{
- "id": 1592,
+ "id": 1614,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2468,7 +2468,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 220,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L220"
}
],
"type": {
@@ -2481,7 +2481,7 @@
"groups": [
{
"title": "Properties",
- "children": [1593, 1591, 1590, 1592]
+ "children": [1615, 1613, 1612, 1614]
}
],
"sources": [
@@ -2489,7 +2489,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 217,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L217"
}
]
}
@@ -2501,15 +2501,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1576]
+ "children": [1598]
},
{
"title": "Properties",
- "children": [1599, 1583, 1597, 1598]
+ "children": [1621, 1605, 1619, 1620]
},
{
"title": "Methods",
- "children": [1587]
+ "children": [1609]
}
],
"sources": [
@@ -2517,20 +2517,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 208,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L208"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1602,
+ "id": 1624,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -2556,7 +2556,7 @@
},
"children": [
{
- "id": 1603,
+ "id": 1625,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2566,12 +2566,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 237,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237"
}
],
"signatures": [
{
- "id": 1604,
+ "id": 1626,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -2581,12 +2581,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 237,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237"
}
],
"parameters": [
{
- "id": 1605,
+ "id": 1627,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2597,7 +2597,7 @@
}
},
{
- "id": 1606,
+ "id": 1628,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -2610,25 +2610,25 @@
],
"type": {
"type": "reference",
- "target": 1602,
+ "target": 1624,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1609,
+ "id": 1631,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2657,7 +2657,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2686,7 +2686,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1610,
+ "id": 1632,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2699,12 +2699,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1607,
+ "id": 1629,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2716,7 +2716,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2725,12 +2725,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1608,
+ "id": 1630,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2750,7 +2750,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2759,7 +2759,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -2767,11 +2767,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1603]
+ "children": [1625]
},
{
"title": "Properties",
- "children": [1609, 1607, 1608]
+ "children": [1631, 1629, 1630]
}
],
"sources": [
@@ -2779,20 +2779,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 236,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L236"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1523,
+ "id": 1545,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -2818,7 +2818,7 @@
},
"children": [
{
- "id": 1524,
+ "id": 1546,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2828,12 +2828,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"signatures": [
{
- "id": 1525,
+ "id": 1547,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -2843,30 +2843,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"type": {
"type": "reference",
- "target": 1523,
+ "target": 1545,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1528,
+ "id": 1550,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2895,7 +2895,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2924,7 +2924,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1529,
+ "id": 1551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2937,12 +2937,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1526,
+ "id": 1548,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2954,7 +2954,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2963,12 +2963,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1527,
+ "id": 1549,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2988,7 +2988,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2997,7 +2997,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -3005,11 +3005,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1524]
+ "children": [1546]
},
{
"title": "Properties",
- "children": [1528, 1526, 1527]
+ "children": [1550, 1548, 1549]
}
],
"sources": [
@@ -3017,20 +3017,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 120,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L120"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1501,
+ "id": 1523,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -3056,7 +3056,7 @@
},
"children": [
{
- "id": 1502,
+ "id": 1524,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3066,12 +3066,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"signatures": [
{
- "id": 1503,
+ "id": 1525,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -3081,12 +3081,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"parameters": [
{
- "id": 1504,
+ "id": 1526,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3097,7 +3097,7 @@
}
},
{
- "id": 1505,
+ "id": 1527,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -3110,25 +3110,25 @@
],
"type": {
"type": "reference",
- "target": 1501,
+ "target": 1523,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1505,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1504,
"name": "AuthError.constructor"
}
},
{
- "id": 1507,
+ "id": 1529,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3157,7 +3157,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3186,7 +3186,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1508,
+ "id": 1530,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3199,12 +3199,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1487,
+ "target": 1509,
"name": "AuthError.code"
}
},
{
- "id": 1506,
+ "id": 1528,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -3214,7 +3214,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L80"
}
],
"type": {
@@ -3223,7 +3223,7 @@
}
},
{
- "id": 1509,
+ "id": 1531,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3243,7 +3243,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -3261,7 +3261,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1511,
"name": "AuthError.status"
}
}
@@ -3269,11 +3269,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1502]
+ "children": [1524]
},
{
"title": "Properties",
- "children": [1507, 1506, 1509]
+ "children": [1529, 1528, 1531]
}
],
"sources": [
@@ -3281,20 +3281,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 79,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L79"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1612,
+ "id": 1634,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -3320,7 +3320,7 @@
},
"children": [
{
- "id": 1613,
+ "id": 1635,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3330,12 +3330,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267"
}
],
"signatures": [
{
- "id": 1614,
+ "id": 1636,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -3345,12 +3345,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267"
}
],
"parameters": [
{
- "id": 1615,
+ "id": 1637,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3361,7 +3361,7 @@
}
},
{
- "id": 1616,
+ "id": 1638,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3372,7 +3372,7 @@
}
},
{
- "id": 1617,
+ "id": 1639,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -3401,25 +3401,25 @@
],
"type": {
"type": "reference",
- "target": 1612,
+ "target": 1634,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1621,
+ "id": 1643,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3448,7 +3448,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3477,7 +3477,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1622,
+ "id": 1644,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3490,12 +3490,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1619,
+ "id": 1641,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3507,7 +3507,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -3516,12 +3516,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1618,
+ "id": 1640,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -3539,7 +3539,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 265,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L265"
}
],
"type": {
@@ -3564,7 +3564,7 @@
}
},
{
- "id": 1620,
+ "id": 1642,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3584,7 +3584,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -3593,7 +3593,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -3601,11 +3601,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1613]
+ "children": [1635]
},
{
"title": "Properties",
- "children": [1621, 1619, 1618, 1620]
+ "children": [1643, 1641, 1640, 1642]
}
],
"sources": [
@@ -3613,20 +3613,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 261,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L261"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1511,
+ "id": 1533,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -3652,7 +3652,7 @@
},
"children": [
{
- "id": 1512,
+ "id": 1534,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3662,12 +3662,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"signatures": [
{
- "id": 1513,
+ "id": 1535,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -3677,12 +3677,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"parameters": [
{
- "id": 1514,
+ "id": 1536,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3693,7 +3693,7 @@
}
},
{
- "id": 1515,
+ "id": 1537,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -3704,7 +3704,7 @@
}
},
{
- "id": 1516,
+ "id": 1538,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3715,7 +3715,7 @@
}
},
{
- "id": 1517,
+ "id": 1539,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -3737,25 +3737,25 @@
],
"type": {
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1505,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1504,
"name": "AuthError.constructor"
}
},
{
- "id": 1520,
+ "id": 1542,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3784,7 +3784,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3813,7 +3813,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1521,
+ "id": 1543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3826,12 +3826,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1487,
+ "target": 1509,
"name": "AuthError.code"
}
},
{
- "id": 1518,
+ "id": 1540,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3841,7 +3841,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -3855,7 +3855,7 @@
}
},
{
- "id": 1519,
+ "id": 1541,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3873,7 +3873,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -3882,7 +3882,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1489,
+ "target": 1511,
"name": "AuthError.status"
}
}
@@ -3890,11 +3890,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1512]
+ "children": [1534]
},
{
"title": "Properties",
- "children": [1520, 1518, 1519]
+ "children": [1542, 1540, 1541]
}
],
"sources": [
@@ -3902,13 +3902,13 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 99,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L99"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -3916,42 +3916,42 @@
"extendedBy": [
{
"type": "reference",
- "target": 1523,
+ "target": 1545,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1531,
+ "target": 1553,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1539,
+ "target": 1561,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1548,
+ "target": 1570,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1575,
+ "target": 1597,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1602,
+ "target": 1624,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1612,
+ "target": 1634,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1624,
+ "target": 1646,
"name": "AuthInvalidJwtError"
}
]
@@ -3974,7 +3974,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"signatures": [
@@ -4008,7 +4008,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"parameters": [
@@ -4040,7 +4040,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 70,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
}
],
"type": {
@@ -4269,7 +4269,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"type": {
@@ -4285,7 +4285,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"indexSignatures": [
@@ -4300,7 +4300,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 68,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
}
],
"parameters": [
@@ -4337,7 +4337,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
}
],
"type": {
@@ -4358,7 +4358,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 65,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
}
]
}
@@ -4394,12 +4394,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
}
],
"type": {
"type": "reference",
- "target": 1278,
+ "target": 1285,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -4423,12 +4423,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
}
],
"type": {
"type": "reference",
- "target": 1404,
+ "target": 1411,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -4444,7 +4444,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"signatures": [
@@ -4475,7 +4475,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"parameters": [
@@ -4487,7 +4487,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 878,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -4502,7 +4502,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4524,7 +4524,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
}
],
"signatures": [
@@ -4555,7 +4555,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
}
],
"parameters": [
@@ -4616,7 +4616,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4638,7 +4638,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"signatures": [
@@ -4661,7 +4661,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"parameters": [
@@ -4673,7 +4673,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1088,
+ "target": 1095,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -4688,7 +4688,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1089,
+ "target": 1096,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -4710,7 +4710,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"signatures": [
@@ -4733,7 +4733,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"parameters": [
@@ -4774,7 +4774,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4796,7 +4796,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"signatures": [
@@ -4819,7 +4819,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"parameters": [
@@ -4894,7 +4894,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 129,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
}
],
"type": {
@@ -4923,7 +4923,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 132,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
}
],
"type": {
@@ -4943,7 +4943,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 127,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
}
]
}
@@ -4960,7 +4960,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4982,7 +4982,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"signatures": [
@@ -5013,7 +5013,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"parameters": [
@@ -5051,7 +5051,7 @@
},
"type": {
"type": "reference",
- "target": 1299,
+ "target": 1306,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -5087,7 +5087,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5113,7 +5113,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5132,14 +5132,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -5157,14 +5157,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
},
{
"type": "reference",
- "target": 1292,
+ "target": 1299,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -5182,7 +5182,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5202,7 +5202,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
@@ -5227,7 +5227,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -5250,7 +5250,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -5269,7 +5269,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -5286,12 +5286,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5308,7 +5308,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -5333,7 +5333,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"signatures": [
@@ -5356,7 +5356,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"parameters": [
@@ -5440,7 +5440,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -5459,7 +5459,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -5471,7 +5471,7 @@
},
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5490,7 +5490,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
]
}
@@ -5513,7 +5513,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 285,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
}
],
"signatures": [
@@ -5536,7 +5536,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 285,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
}
],
"parameters": [
@@ -5575,7 +5575,7 @@
},
"type": {
"type": "reference",
- "target": 878,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -5590,7 +5590,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -5621,7 +5621,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 32,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
}
]
},
@@ -5641,9 +5641,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 290,
+ "line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292"
}
],
"signatures": [
@@ -5675,9 +5675,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 290,
+ "line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292"
}
],
"parameters": [
@@ -5689,7 +5689,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 709,
+ "target": 716,
"name": "GoTrueClientOptions",
"package": "@supabase/auth-js"
}
@@ -5722,9 +5722,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 199,
+ "line": 201,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L201"
}
],
"type": {
@@ -5752,14 +5752,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 203,
+ "line": 205,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L205"
}
],
"type": {
"type": "reference",
- "target": 1148,
+ "target": 1155,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -5781,14 +5781,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 209,
+ "line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L211"
}
],
"type": {
"type": "reference",
- "target": 1447,
+ "target": 1462,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -5802,9 +5802,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 739,
+ "line": 743,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L739"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743"
}
],
"signatures": [
@@ -5825,9 +5825,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 739,
+ "line": 743,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L739"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743"
}
],
"parameters": [
@@ -5852,7 +5852,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 773,
+ "target": 780,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -5864,7 +5864,7 @@
]
},
{
- "id": 648,
+ "id": 655,
"name": "getClaims",
"variant": "declaration",
"kind": 2048,
@@ -5872,14 +5872,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3624,
+ "line": 3701,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701"
}
],
"signatures": [
{
- "id": 649,
+ "id": 656,
"name": "getClaims",
"variant": "signature",
"kind": 4096,
@@ -5921,14 +5921,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3624,
+ "line": 3701,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701"
}
],
"parameters": [
{
- "id": 650,
+ "id": 657,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -5958,7 +5958,7 @@
}
},
{
- "id": 651,
+ "id": 658,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -5974,14 +5974,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 652,
+ "id": 659,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 654,
+ "id": 661,
"name": "allowExpired",
"variant": "declaration",
"kind": 1024,
@@ -6015,9 +6015,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3633,
+ "line": 3710,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3633"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3710"
}
],
"type": {
@@ -6026,7 +6026,7 @@
}
},
{
- "id": 655,
+ "id": 662,
"name": "jwks",
"variant": "declaration",
"kind": 1024,
@@ -6044,22 +6044,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3636,
+ "line": 3713,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 656,
+ "id": 663,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 657,
+ "id": 664,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -6067,16 +6067,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3636,
+ "line": 3713,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1347,
+ "target": 1354,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -6086,22 +6086,22 @@
"groups": [
{
"title": "Properties",
- "children": [657]
+ "children": [664]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3636,
+ "line": 3713,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713"
}
]
}
}
},
{
- "id": 653,
+ "id": 660,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -6125,16 +6125,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3630,
+ "line": 3707,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3630"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3707"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1347,
+ "target": 1354,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -6144,15 +6144,15 @@
"groups": [
{
"title": "Properties",
- "children": [654, 655, 653]
+ "children": [661, 662, 660]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3626,
+ "line": 3703,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3626"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3703"
}
]
}
@@ -6173,14 +6173,14 @@
{
"type": "reflection",
"declaration": {
- "id": 658,
+ "id": 665,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 659,
+ "id": 666,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -6188,22 +6188,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 660,
+ "id": 667,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 661,
+ "id": 668,
"name": "claims",
"variant": "declaration",
"kind": 1024,
@@ -6211,20 +6211,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
"type": "reference",
- "target": 1327,
+ "target": 1334,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
},
{
- "id": 662,
+ "id": 669,
"name": "header",
"variant": "declaration",
"kind": 1024,
@@ -6232,20 +6232,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
"type": "reference",
- "target": 1312,
+ "target": 1319,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
},
{
- "id": 663,
+ "id": 670,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -6253,9 +6253,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
@@ -6272,22 +6272,22 @@
"groups": [
{
"title": "Properties",
- "children": [661, 662, 663]
+ "children": [668, 669, 670]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
]
}
}
},
{
- "id": 664,
+ "id": 671,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -6295,9 +6295,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3641,
+ "line": 3718,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3641"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3718"
}
],
"type": {
@@ -6309,15 +6309,15 @@
"groups": [
{
"title": "Properties",
- "children": [659, 664]
+ "children": [666, 671]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3639,
+ "line": 3716,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3716"
}
]
}
@@ -6325,14 +6325,14 @@
{
"type": "reflection",
"declaration": {
- "id": 665,
+ "id": 672,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 666,
+ "id": 673,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -6340,9 +6340,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3643,
+ "line": 3720,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720"
}
],
"type": {
@@ -6351,7 +6351,7 @@
}
},
{
- "id": 667,
+ "id": 674,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -6359,14 +6359,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3643,
+ "line": 3720,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -6375,15 +6375,15 @@
"groups": [
{
"title": "Properties",
- "children": [666, 667]
+ "children": [673, 674]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3643,
+ "line": 3720,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720"
}
]
}
@@ -6391,14 +6391,14 @@
{
"type": "reflection",
"declaration": {
- "id": 668,
+ "id": 675,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 669,
+ "id": 676,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -6406,9 +6406,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3644,
+ "line": 3721,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3644"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721"
}
],
"type": {
@@ -6417,7 +6417,7 @@
}
},
{
- "id": 670,
+ "id": 677,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -6425,9 +6425,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3644,
+ "line": 3721,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3644"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721"
}
],
"type": {
@@ -6439,15 +6439,15 @@
"groups": [
{
"title": "Properties",
- "children": [669, 670]
+ "children": [676, 677]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3644,
+ "line": 3721,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3644"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721"
}
]
}
@@ -6470,9 +6470,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1454,
+ "line": 1458,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458"
}
],
"signatures": [
@@ -6502,9 +6502,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1454,
+ "line": 1458,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458"
}
],
"type": {
@@ -6535,9 +6535,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1547,
+ "line": 1551,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1547"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551"
}
],
"type": {
@@ -6558,14 +6558,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1548,
+ "line": 1552,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1548"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1552"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -6580,9 +6580,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1547,
+ "line": 1551,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1547"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551"
}
]
}
@@ -6597,9 +6597,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1550,
+ "line": 1554,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1554"
}
],
"type": {
@@ -6617,9 +6617,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1546,
+ "line": 1550,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1546"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1550"
}
]
}
@@ -6642,9 +6642,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1553,
+ "line": 1557,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557"
}
],
"type": {
@@ -6665,9 +6665,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1554,
+ "line": 1558,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1554"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1558"
}
],
"type": {
@@ -6685,9 +6685,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1553,
+ "line": 1557,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557"
}
]
}
@@ -6702,14 +6702,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1556,
+ "line": 1560,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1556"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1560"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -6724,9 +6724,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1552,
+ "line": 1556,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1556"
}
]
}
@@ -6749,9 +6749,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1559,
+ "line": 1563,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1559"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563"
}
],
"type": {
@@ -6772,9 +6772,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1560,
+ "line": 1564,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1560"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1564"
}
],
"type": {
@@ -6792,9 +6792,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1559,
+ "line": 1563,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1559"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563"
}
]
}
@@ -6809,9 +6809,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1562,
+ "line": 1566,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1562"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1566"
}
],
"type": {
@@ -6829,9 +6829,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1558,
+ "line": 1562,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1558"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1562"
}
]
}
@@ -6854,9 +6854,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1696,
+ "line": 1700,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700"
}
],
"signatures": [
@@ -6877,9 +6877,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1696,
+ "line": 1700,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700"
}
],
"parameters": [
@@ -6914,7 +6914,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6934,9 +6934,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2278,
+ "line": 2282,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2278"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282"
}
],
"signatures": [
@@ -6957,9 +6957,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2278,
+ "line": 2282,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2278"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282"
}
],
"type": {
@@ -6990,9 +6990,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284"
}
],
"type": {
@@ -7013,16 +7013,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2281,
+ "line": 2285,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2281"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2285"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 815,
+ "target": 822,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -7038,9 +7038,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2284,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284"
}
]
}
@@ -7055,9 +7055,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2283,
+ "line": 2287,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2283"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2287"
}
],
"type": {
@@ -7075,9 +7075,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2279,
+ "line": 2283,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2279"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2283"
}
]
}
@@ -7100,9 +7100,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2285,
+ "line": 2289,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289"
}
],
"type": {
@@ -7119,14 +7119,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2285,
+ "line": 2289,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7141,9 +7141,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2285,
+ "line": 2289,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289"
}
]
}
@@ -7166,9 +7166,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 436,
+ "line": 440,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440"
}
],
"signatures": [
@@ -7189,9 +7189,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 436,
+ "line": 440,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440"
}
],
"type": {
@@ -7203,7 +7203,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1288,
+ "target": 1295,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -7225,9 +7225,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 400,
+ "line": 404,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404"
}
],
"signatures": [
@@ -7248,9 +7248,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 400,
+ "line": 404,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404"
}
],
"type": {
@@ -7269,21 +7269,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2303,
+ "line": 2307,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2303"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2308,
+ "line": 2312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2310,
+ "line": 2314,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2310"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2314"
}
],
"signatures": [
@@ -7304,9 +7304,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2303,
+ "line": 2307,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2303"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307"
}
],
"parameters": [
@@ -7318,7 +7318,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 938,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -7333,7 +7333,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 782,
+ "target": 789,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -7359,9 +7359,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2308,
+ "line": 2312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312"
}
],
"parameters": [
@@ -7373,7 +7373,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 950,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -7388,7 +7388,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 773,
+ "target": 780,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -7408,21 +7408,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2176,
+ "line": 2180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2180"
}
],
"signatures": [
@@ -7443,9 +7443,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
],
"parameters": [
@@ -7474,9 +7474,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
],
"signatures": [
@@ -7489,9 +7489,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
],
"parameters": [
@@ -7503,7 +7503,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 699,
+ "target": 706,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -7523,7 +7523,7 @@
},
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -7559,9 +7559,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2157,
+ "line": 2161,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161"
}
],
"type": {
@@ -7582,14 +7582,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2157,
+ "line": 2161,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161"
}
],
"type": {
"type": "reference",
- "target": 891,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -7604,9 +7604,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2157,
+ "line": 2161,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161"
}
]
}
@@ -7622,9 +7622,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 90,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
]
}
@@ -7666,9 +7666,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
],
"parameters": [
@@ -7697,9 +7697,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
],
"signatures": [
@@ -7712,9 +7712,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
],
"parameters": [
@@ -7726,7 +7726,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 699,
+ "target": 706,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -7746,7 +7746,7 @@
},
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -7793,9 +7793,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2173,
+ "line": 2177,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177"
}
],
"type": {
@@ -7816,14 +7816,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2173,
+ "line": 2177,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177"
}
],
"type": {
"type": "reference",
- "target": 891,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -7838,9 +7838,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2173,
+ "line": 2177,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177"
}
]
}
@@ -7856,9 +7856,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
]
}
@@ -7875,9 +7875,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1367,
+ "line": 1371,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371"
}
],
"signatures": [
@@ -7898,9 +7898,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1367,
+ "line": 1371,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371"
}
],
"type": {
@@ -7912,7 +7912,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -7932,9 +7932,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
],
"signatures": [
@@ -7955,9 +7955,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
],
"parameters": [
@@ -7995,9 +7995,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
],
"type": {
@@ -8015,9 +8015,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
]
}
@@ -8033,7 +8033,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8053,9 +8053,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1402,
+ "line": 1406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1402"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406"
}
],
"signatures": [
@@ -8076,9 +8076,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1402,
+ "line": 1406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1402"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406"
}
],
"parameters": [
@@ -8090,7 +8090,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1034,
+ "target": 1041,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -8105,7 +8105,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 768,
+ "target": 775,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -8125,9 +8125,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2232,
+ "line": 2236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236"
}
],
"signatures": [
@@ -8148,9 +8148,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2232,
+ "line": 2236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236"
}
],
"parameters": [
@@ -8207,9 +8207,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2236,
+ "line": 2240,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2236"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2240"
}
],
"type": {
@@ -8236,9 +8236,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2235,
+ "line": 2239,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2239"
}
],
"type": {
@@ -8256,9 +8256,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2234,
+ "line": 2238,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2238"
}
]
}
@@ -8294,9 +8294,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2240,
+ "line": 2244,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2240"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2244"
}
],
"type": {
@@ -8319,9 +8319,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2241,
+ "line": 2245,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2241"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2245"
}
],
"type": {
@@ -8339,9 +8339,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2239,
+ "line": 2243,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2243"
}
]
}
@@ -8364,9 +8364,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2243,
+ "line": 2247,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247"
}
],
"type": {
@@ -8383,14 +8383,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2243,
+ "line": 2247,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -8405,9 +8405,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2243,
+ "line": 2247,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247"
}
]
}
@@ -8430,9 +8430,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1828,
+ "line": 1832,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832"
}
],
"signatures": [
@@ -8453,9 +8453,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1828,
+ "line": 1832,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832"
}
],
"parameters": [
@@ -8491,9 +8491,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1829,
+ "line": 1833,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1829"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1833"
}
],
"type": {
@@ -8510,9 +8510,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1830,
+ "line": 1834,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1830"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1834"
}
],
"type": {
@@ -8530,9 +8530,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1828,
+ "line": 1832,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832"
}
]
}
@@ -8548,7 +8548,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8568,9 +8568,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 543,
+ "line": 547,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L543"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547"
}
],
"signatures": [
@@ -8602,9 +8602,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 543,
+ "line": 547,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L543"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547"
}
],
"parameters": [
@@ -8618,7 +8618,7 @@
},
"type": {
"type": "reference",
- "target": 901,
+ "target": 908,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -8633,7 +8633,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8653,9 +8653,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1152,
+ "line": 1156,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1152"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156"
}
],
"signatures": [
@@ -8676,9 +8676,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1152,
+ "line": 1156,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1152"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156"
}
],
"parameters": [
@@ -8690,7 +8690,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 950,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -8705,7 +8705,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 773,
+ "target": 780,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -8725,9 +8725,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 727,
+ "line": 731,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L727"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731"
}
],
"signatures": [
@@ -8748,9 +8748,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 727,
+ "line": 731,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L727"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731"
}
],
"parameters": [
@@ -8762,7 +8762,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 938,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -8777,7 +8777,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 782,
+ "target": 789,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -8797,9 +8797,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1205,
+ "line": 1209,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1205"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209"
}
],
"signatures": [
@@ -8836,9 +8836,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1205,
+ "line": 1209,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1205"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209"
}
],
"parameters": [
@@ -8850,7 +8850,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 920,
+ "target": 927,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -8865,7 +8865,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 768,
+ "target": 775,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -8885,9 +8885,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 663,
+ "line": 667,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L663"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667"
}
],
"signatures": [
@@ -8908,9 +8908,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 663,
+ "line": 667,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L663"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667"
}
],
"parameters": [
@@ -8922,7 +8922,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 915,
+ "target": 922,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -8937,7 +8937,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 777,
+ "target": 784,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -8957,9 +8957,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1322,
+ "line": 1326,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326"
}
],
"signatures": [
@@ -8980,9 +8980,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1322,
+ "line": 1326,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326"
}
],
"parameters": [
@@ -8994,7 +8994,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1048,
+ "target": 1055,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -9009,7 +9009,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 795,
+ "target": 802,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -9029,9 +9029,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 754,
+ "line": 758,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L754"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758"
}
],
"signatures": [
@@ -9063,9 +9063,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 754,
+ "line": 758,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L754"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758"
}
],
"parameters": [
@@ -9077,7 +9077,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1011,
+ "target": 1018,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -9111,9 +9111,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
],
"type": {
@@ -9134,14 +9134,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -9155,14 +9155,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -9177,9 +9177,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
]
}
@@ -9194,9 +9194,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 757,
+ "line": 761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L757"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L761"
}
],
"type": {
@@ -9214,9 +9214,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 755,
+ "line": 759,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L759"
}
]
}
@@ -9239,9 +9239,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
@@ -9262,9 +9262,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
@@ -9281,9 +9281,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
@@ -9301,9 +9301,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
]
}
@@ -9318,14 +9318,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9340,9 +9340,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
]
}
@@ -9365,9 +9365,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
],
"signatures": [
@@ -9428,9 +9428,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
],
"parameters": [
@@ -9442,7 +9442,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1303,
+ "target": 1310,
"name": "SignOut",
"package": "@supabase/auth-js"
},
@@ -9474,9 +9474,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
],
"type": {
@@ -9488,7 +9488,7 @@
},
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9505,9 +9505,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
]
}
@@ -9528,9 +9528,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 586,
+ "line": 590,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590"
}
],
"signatures": [
@@ -9571,9 +9571,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 586,
+ "line": 590,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590"
}
],
"parameters": [
@@ -9585,7 +9585,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 907,
+ "target": 914,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -9600,7 +9600,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9620,9 +9620,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2888,
+ "line": 2892,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2888"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892"
}
],
"signatures": [
@@ -9642,7 +9642,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueClientOptions#autoRefreshToken",
- "target": 718
+ "target": 725
},
{
"kind": "text",
@@ -9658,9 +9658,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2888,
+ "line": 2892,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2888"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892"
}
],
"type": {
@@ -9690,9 +9690,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2901,
+ "line": 2905,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2901"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905"
}
],
"signatures": [
@@ -9722,9 +9722,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2901,
+ "line": 2905,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2901"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905"
}
],
"type": {
@@ -9754,9 +9754,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2407,
+ "line": 2411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2407"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411"
}
],
"signatures": [
@@ -9777,9 +9777,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2407,
+ "line": 2411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2407"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411"
}
],
"parameters": [
@@ -9791,7 +9791,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 815,
+ "target": 822,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -9825,9 +9825,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2409,
+ "line": 2413,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2409"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2413"
}
],
"type": {
@@ -9850,9 +9850,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2410,
+ "line": 2414,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2410"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2414"
}
],
"type": {
@@ -9870,9 +9870,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2408,
+ "line": 2412,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2408"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2412"
}
]
}
@@ -9895,9 +9895,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2412,
+ "line": 2416,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416"
}
],
"type": {
@@ -9914,14 +9914,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2412,
+ "line": 2416,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9936,9 +9936,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2412,
+ "line": 2416,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416"
}
]
}
@@ -9961,9 +9961,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1757,
+ "line": 1761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761"
}
],
"signatures": [
@@ -9984,9 +9984,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1757,
+ "line": 1761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761"
}
],
"parameters": [
@@ -9998,7 +9998,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 872,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -10029,9 +10029,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1760,
+ "line": 1764,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1760"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1764"
}
],
"type": {
@@ -10049,9 +10049,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1759,
+ "line": 1763,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1763"
}
]
}
@@ -10068,7 +10068,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10088,9 +10088,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1261,
+ "line": 1265,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265"
}
],
"signatures": [
@@ -10111,9 +10111,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1261,
+ "line": 1265,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265"
}
],
"parameters": [
@@ -10125,7 +10125,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1012,
+ "target": 1019,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -10140,7 +10140,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -10164,7 +10164,7 @@
{
"title": "Methods",
"children": [
- 201, 648, 276, 339, 458, 185, 172, 468, 420, 269, 369, 273, 444, 357, 189, 257, 198,
+ 201, 655, 276, 339, 458, 185, 172, 468, 420, 269, 369, 273, 444, 357, 189, 257, 198,
260, 195, 266, 204, 410, 192, 534, 536, 479, 345, 263
]
}
@@ -10172,14 +10172,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 190,
+ "line": 192,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L192"
}
]
},
{
- "id": 681,
+ "id": 688,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "declaration",
"kind": 128,
@@ -10205,7 +10205,7 @@
},
"children": [
{
- "id": 682,
+ "id": 689,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -10215,12 +10215,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"signatures": [
{
- "id": 683,
+ "id": 690,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "signature",
"kind": 16384,
@@ -10230,12 +10230,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"parameters": [
{
- "id": 684,
+ "id": 691,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -10248,7 +10248,7 @@
],
"type": {
"type": "reference",
- "target": 681,
+ "target": 688,
"name": "NavigatorLockAcquireTimeoutError",
"package": "@supabase/auth-js"
},
@@ -10266,7 +10266,7 @@
}
},
{
- "id": 685,
+ "id": 692,
"name": "isAcquireTimeout",
"variant": "declaration",
"kind": 1024,
@@ -10280,7 +10280,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 35,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L35"
}
],
"type": {
@@ -10298,11 +10298,11 @@
"groups": [
{
"title": "Constructors",
- "children": [682]
+ "children": [689]
},
{
"title": "Properties",
- "children": [685]
+ "children": [692]
}
],
"sources": [
@@ -10310,7 +10310,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L52"
}
],
"extendedTypes": [
@@ -10326,14 +10326,14 @@
]
},
{
- "id": 878,
+ "id": 885,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 880,
+ "id": 887,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -10369,7 +10369,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 450,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L450"
}
],
"type": {
@@ -10378,7 +10378,7 @@
}
},
{
- "id": 883,
+ "id": 890,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -10398,7 +10398,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 476,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L476"
}
],
"type": {
@@ -10407,7 +10407,7 @@
}
},
{
- "id": 889,
+ "id": 896,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -10428,7 +10428,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 401,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L401"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401"
}
],
"type": {
@@ -10442,7 +10442,7 @@
}
},
{
- "id": 881,
+ "id": 888,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -10462,7 +10462,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L457"
}
],
"type": {
@@ -10471,7 +10471,7 @@
}
},
{
- "id": 886,
+ "id": 893,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -10507,7 +10507,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L501"
}
],
"type": {
@@ -10516,7 +10516,7 @@
}
},
{
- "id": 887,
+ "id": 894,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -10537,7 +10537,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 418,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418"
}
],
"type": {
@@ -10551,7 +10551,7 @@
}
},
{
- "id": 890,
+ "id": 897,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -10572,7 +10572,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411"
}
],
"type": {
@@ -10586,7 +10586,7 @@
}
},
{
- "id": 885,
+ "id": 892,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -10614,7 +10614,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 494,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L494"
}
],
"type": {
@@ -10623,7 +10623,7 @@
}
},
{
- "id": 888,
+ "id": 895,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -10644,7 +10644,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -10658,7 +10658,7 @@
}
},
{
- "id": 882,
+ "id": 889,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -10678,7 +10678,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L464"
}
],
"type": {
@@ -10687,7 +10687,7 @@
}
},
{
- "id": 884,
+ "id": 891,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -10739,7 +10739,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -10748,7 +10748,7 @@
}
},
{
- "id": 879,
+ "id": 886,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -10784,7 +10784,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L440"
}
],
"type": {
@@ -10796,7 +10796,7 @@
"groups": [
{
"title": "Properties",
- "children": [880, 883, 889, 881, 886, 887, 890, 885, 888, 882, 884, 879]
+ "children": [887, 890, 896, 888, 893, 894, 897, 892, 895, 889, 891, 886]
}
],
"sources": [
@@ -10804,7 +10804,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 429,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L429"
}
],
"extendedTypes": [
@@ -10817,7 +10817,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 872,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -10832,7 +10832,7 @@
]
},
{
- "id": 812,
+ "id": 819,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -10852,7 +10852,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1262
+ "target": 1269
},
{
"kind": "text",
@@ -10864,7 +10864,7 @@
},
"children": [
{
- "id": 813,
+ "id": 820,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -10882,18 +10882,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 286,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L286"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L286"
}
],
"type": {
"type": "reference",
- "target": 810,
+ "target": 817,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 814,
+ "id": 821,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -10911,7 +10911,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L292"
}
],
"type": {
@@ -10923,7 +10923,7 @@
"groups": [
{
"title": "Properties",
- "children": [813, 814]
+ "children": [820, 821]
}
],
"sources": [
@@ -10931,12 +10931,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 284,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L284"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L284"
}
]
},
{
- "id": 1447,
+ "id": 1462,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -10951,7 +10951,7 @@
},
"children": [
{
- "id": 1451,
+ "id": 1466,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -10959,14 +10959,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1753,
+ "line": 1778,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1753"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778"
}
],
"signatures": [
{
- "id": 1452,
+ "id": 1467,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -10993,14 +10993,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1753,
+ "line": 1778,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1753"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778"
}
],
"parameters": [
{
- "id": 1453,
+ "id": 1468,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11019,7 +11019,7 @@
}
},
{
- "id": 1454,
+ "id": 1469,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11037,14 +11037,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1455,
+ "id": 1470,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1456,
+ "id": 1471,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -11054,9 +11054,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1780,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1780"
}
],
"type": {
@@ -11068,15 +11068,15 @@
"groups": [
{
"title": "Properties",
- "children": [1456]
+ "children": [1471]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1780,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1780"
}
]
}
@@ -11092,7 +11092,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1444,
+ "target": 1451,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -11104,7 +11104,7 @@
]
},
{
- "id": 1457,
+ "id": 1472,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -11112,14 +11112,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1766,
+ "line": 1791,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1766"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1791"
}
],
"signatures": [
{
- "id": 1458,
+ "id": 1473,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -11146,14 +11146,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1766,
+ "line": 1791,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1766"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1791"
}
],
"parameters": [
{
- "id": 1459,
+ "id": 1474,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11172,7 +11172,7 @@
}
},
{
- "id": 1460,
+ "id": 1475,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11190,14 +11190,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1461,
+ "id": 1476,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1462,
+ "id": 1477,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -11207,9 +11207,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1768,
+ "line": 1793,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1768"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793"
}
],
"type": {
@@ -11221,15 +11221,15 @@
"groups": [
{
"title": "Properties",
- "children": [1462]
+ "children": [1477]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1768,
+ "line": 1793,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1768"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793"
}
]
}
@@ -11245,7 +11245,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1444,
+ "target": 1451,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -11257,7 +11257,7 @@
]
},
{
- "id": 1448,
+ "id": 1463,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -11265,14 +11265,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1743,
+ "line": 1768,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1743"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768"
}
],
"signatures": [
{
- "id": 1449,
+ "id": 1464,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -11299,14 +11299,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1743,
+ "line": 1768,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1743"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768"
}
],
"parameters": [
{
- "id": 1450,
+ "id": 1465,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11334,7 +11334,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1443,
+ "target": 1450,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -11344,32 +11344,238 @@
}
}
]
+ },
+ {
+ "id": 1478,
+ "name": "listGrants",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1802,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1802"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1479,
+ "name": "listGrants",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists all OAuth grants that the authenticated user has authorized.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Response with array of OAuth grants with client information and granted scopes"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1802,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1802"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1459,
+ "name": "AuthOAuthGrantsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1480,
+ "name": "revokeGrant",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1815,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1481,
+ "name": "revokeGrant",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Revokes a user's OAuth grant for a specific client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nRevocation marks consent as revoked, deletes active sessions for that OAuth client,\nand invalidates associated refresh tokens."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Empty response on successful revocation"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1815,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1482,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Revocation options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1483,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1484,
+ "name": "clientId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The OAuth client identifier (UUID) to revoke access for"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1815,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1484]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1815,
+ "character": 23,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1460,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
}
],
"groups": [
{
"title": "Methods",
- "children": [1451, 1457, 1448]
+ "children": [1466, 1472, 1463, 1478, 1480]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1730,
+ "line": 1755,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1730"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1755"
}
]
},
{
- "id": 1085,
+ "id": 1092,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1086,
+ "id": 1093,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -11405,7 +11611,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 855,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L855"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L855"
}
],
"type": {
@@ -11414,7 +11620,7 @@
}
},
{
- "id": 1087,
+ "id": 1094,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -11434,7 +11640,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 857,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L857"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L857"
}
],
"type": {
@@ -11446,7 +11652,7 @@
"groups": [
{
"title": "Properties",
- "children": [1086, 1087]
+ "children": [1093, 1094]
}
],
"sources": [
@@ -11454,12 +11660,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 849,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L849"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L849"
}
]
},
{
- "id": 1278,
+ "id": 1285,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -11480,7 +11686,7 @@
},
"children": [
{
- "id": 1282,
+ "id": 1289,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -11490,12 +11696,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1298,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298"
}
],
"signatures": [
{
- "id": 1283,
+ "id": 1290,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -11515,7 +11721,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1251
+ "target": 1258
}
]
},
@@ -11530,19 +11736,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1298,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298"
}
],
"parameters": [
{
- "id": 1284,
+ "id": 1291,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1268,
+ "target": 1275,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -11557,7 +11763,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1265,
+ "target": 1272,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -11569,7 +11775,7 @@
]
},
{
- "id": 1279,
+ "id": 1286,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -11579,12 +11785,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1288,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288"
}
],
"signatures": [
{
- "id": 1280,
+ "id": 1287,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -11602,19 +11808,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1288,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288"
}
],
"parameters": [
{
- "id": 1281,
+ "id": 1288,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1275,
+ "target": 1282,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -11629,7 +11835,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1272,
+ "target": 1279,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -11644,7 +11850,7 @@
"groups": [
{
"title": "Methods",
- "children": [1282, 1279]
+ "children": [1289, 1286]
}
],
"sources": [
@@ -11652,12 +11858,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1283,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1283"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1283"
}
]
},
{
- "id": 1404,
+ "id": 1411,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -11672,7 +11878,7 @@
},
"children": [
{
- "id": 1408,
+ "id": 1415,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -11682,12 +11888,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1637,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1637"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637"
}
],
"signatures": [
{
- "id": 1409,
+ "id": 1416,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -11713,19 +11919,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1637,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1637"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637"
}
],
"parameters": [
{
- "id": 1410,
+ "id": 1417,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1383,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -11740,7 +11946,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -11752,7 +11958,7 @@
]
},
{
- "id": 1418,
+ "id": 1425,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -11762,12 +11968,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"signatures": [
{
- "id": 1419,
+ "id": 1426,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -11793,12 +11999,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"parameters": [
{
- "id": 1420,
+ "id": 1427,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -11819,14 +12025,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1421,
+ "id": 1428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1422,
+ "id": 1429,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -11836,7 +12042,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"type": {
@@ -11845,7 +12051,7 @@
}
},
{
- "id": 1423,
+ "id": 1430,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -11855,7 +12061,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"type": {
@@ -11867,7 +12073,7 @@
},
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11878,7 +12084,7 @@
"groups": [
{
"title": "Properties",
- "children": [1422, 1423]
+ "children": [1429, 1430]
}
],
"sources": [
@@ -11886,7 +12092,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
]
}
@@ -11899,7 +12105,7 @@
]
},
{
- "id": 1411,
+ "id": 1418,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -11909,12 +12115,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1645,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1645"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645"
}
],
"signatures": [
{
- "id": 1412,
+ "id": 1419,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -11940,12 +12146,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1645,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1645"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645"
}
],
"parameters": [
{
- "id": 1413,
+ "id": 1420,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -11965,7 +12171,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -11977,7 +12183,7 @@
]
},
{
- "id": 1405,
+ "id": 1412,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -11987,12 +12193,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1629,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1629"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629"
}
],
"signatures": [
{
- "id": 1406,
+ "id": 1413,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -12018,12 +12224,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1629,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1629"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629"
}
],
"parameters": [
{
- "id": 1407,
+ "id": 1414,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -12032,7 +12238,7 @@
},
"type": {
"type": "reference",
- "target": 1299,
+ "target": 1306,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -12047,7 +12253,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1392,
+ "target": 1399,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -12059,7 +12265,7 @@
]
},
{
- "id": 1424,
+ "id": 1431,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -12069,12 +12275,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1669"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669"
}
],
"signatures": [
{
- "id": 1425,
+ "id": 1432,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -12100,12 +12306,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1669"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669"
}
],
"parameters": [
{
- "id": 1426,
+ "id": 1433,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12125,7 +12331,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12137,7 +12343,7 @@
]
},
{
- "id": 1414,
+ "id": 1421,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -12147,12 +12353,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1653,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1653"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653"
}
],
"signatures": [
{
- "id": 1415,
+ "id": 1422,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -12178,12 +12384,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1653,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1653"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653"
}
],
"parameters": [
{
- "id": 1416,
+ "id": 1423,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12194,14 +12400,14 @@
}
},
{
- "id": 1417,
+ "id": 1424,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1384,
+ "target": 1391,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -12216,7 +12422,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12231,7 +12437,7 @@
"groups": [
{
"title": "Methods",
- "children": [1408, 1418, 1411, 1405, 1424, 1414]
+ "children": [1415, 1425, 1418, 1412, 1431, 1421]
}
],
"sources": [
@@ -12239,12 +12445,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1622,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1622"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1622"
}
]
},
{
- "id": 1148,
+ "id": 1155,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -12259,7 +12465,7 @@
},
"children": [
{
- "id": 1264,
+ "id": 1271,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -12269,7 +12475,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1241,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1241"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1241"
}
],
"type": {
@@ -12283,7 +12489,7 @@
}
},
{
- "id": 1169,
+ "id": 1176,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -12293,30 +12499,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1191,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1192,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192"
}
],
"signatures": [
{
- "id": 1170,
+ "id": 1177,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -12334,12 +12540,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189"
}
],
"parameters": [
{
- "id": 1171,
+ "id": 1178,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -12347,14 +12553,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1172,
+ "id": 1179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1173,
+ "id": 1180,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -12372,7 +12578,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 963,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963"
}
],
"type": {
@@ -12384,7 +12590,7 @@
"groups": [
{
"title": "Properties",
- "children": [1173]
+ "children": [1180]
}
],
"sources": [
@@ -12392,7 +12598,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -12412,14 +12618,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1174,
+ "id": 1181,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1175,
+ "id": 1182,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12429,7 +12635,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -12438,7 +12644,7 @@
}
},
{
- "id": 1176,
+ "id": 1183,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12448,12 +12654,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12462,7 +12668,7 @@
"groups": [
{
"title": "Properties",
- "children": [1175, 1176]
+ "children": [1182, 1183]
}
],
"sources": [
@@ -12470,7 +12676,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -12478,14 +12684,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1177,
+ "id": 1184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1178,
+ "id": 1185,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12495,20 +12701,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1179,
+ "id": 1186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1182,
+ "id": 1189,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -12526,7 +12732,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1059,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1059"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059"
}
],
"type": {
@@ -12535,7 +12741,7 @@
}
},
{
- "id": 1180,
+ "id": 1187,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -12553,7 +12759,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1053,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1053"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053"
}
],
"type": {
@@ -12562,7 +12768,7 @@
}
},
{
- "id": 1181,
+ "id": 1188,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -12580,7 +12786,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
@@ -12592,7 +12798,7 @@
"groups": [
{
"title": "Properties",
- "children": [1182, 1180, 1181]
+ "children": [1189, 1187, 1188]
}
],
"sources": [
@@ -12600,14 +12806,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
}
},
{
- "id": 1183,
+ "id": 1190,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12617,7 +12823,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -12629,7 +12835,7 @@
"groups": [
{
"title": "Properties",
- "children": [1178, 1183]
+ "children": [1185, 1190]
}
],
"sources": [
@@ -12637,7 +12843,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -12650,7 +12856,7 @@
}
},
{
- "id": 1184,
+ "id": 1191,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -12660,12 +12866,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190"
}
],
"parameters": [
{
- "id": 1185,
+ "id": 1192,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -12673,14 +12879,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1186,
+ "id": 1193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1188,
+ "id": 1195,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -12698,7 +12904,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 973,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L973"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L973"
}
],
"type": {
@@ -12716,7 +12922,7 @@
}
},
{
- "id": 1187,
+ "id": 1194,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -12734,7 +12940,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 963,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963"
}
],
"type": {
@@ -12746,7 +12952,7 @@
"groups": [
{
"title": "Properties",
- "children": [1188, 1187]
+ "children": [1195, 1194]
}
],
"sources": [
@@ -12754,7 +12960,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -12774,14 +12980,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1189,
+ "id": 1196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1190,
+ "id": 1197,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12791,7 +12997,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -12800,7 +13006,7 @@
}
},
{
- "id": 1191,
+ "id": 1198,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12810,12 +13016,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12824,7 +13030,7 @@
"groups": [
{
"title": "Properties",
- "children": [1190, 1191]
+ "children": [1197, 1198]
}
],
"sources": [
@@ -12832,7 +13038,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -12840,14 +13046,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1192,
+ "id": 1199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1193,
+ "id": 1200,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12857,20 +13063,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1194,
+ "id": 1201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1197,
+ "id": 1204,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -12888,7 +13094,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1059,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1059"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059"
}
],
"type": {
@@ -12897,7 +13103,7 @@
}
},
{
- "id": 1195,
+ "id": 1202,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -12915,7 +13121,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1053,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1053"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053"
}
],
"type": {
@@ -12924,7 +13130,7 @@
}
},
{
- "id": 1196,
+ "id": 1203,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -12942,7 +13148,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
@@ -12954,7 +13160,7 @@
"groups": [
{
"title": "Properties",
- "children": [1197, 1195, 1196]
+ "children": [1204, 1202, 1203]
}
],
"sources": [
@@ -12962,14 +13168,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
}
},
{
- "id": 1198,
+ "id": 1205,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12979,7 +13185,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -12991,7 +13197,7 @@
"groups": [
{
"title": "Properties",
- "children": [1193, 1198]
+ "children": [1200, 1205]
}
],
"sources": [
@@ -12999,7 +13205,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -13012,7 +13218,7 @@
}
},
{
- "id": 1199,
+ "id": 1206,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -13022,12 +13228,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1191,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191"
}
],
"parameters": [
{
- "id": 1200,
+ "id": 1207,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -13035,14 +13241,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1201,
+ "id": 1208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1202,
+ "id": 1209,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -13060,7 +13266,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 963,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963"
}
],
"type": {
@@ -13069,7 +13275,7 @@
}
},
{
- "id": 1203,
+ "id": 1210,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -13079,20 +13285,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 982,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1204,
+ "id": 1211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1205,
+ "id": 1212,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -13110,7 +13316,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 984,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L984"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -13119,7 +13325,7 @@
}
},
{
- "id": 1206,
+ "id": 1213,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -13139,7 +13345,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 986,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L986"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -13154,7 +13360,7 @@
"groups": [
{
"title": "Properties",
- "children": [1205, 1206]
+ "children": [1212, 1213]
}
],
"sources": [
@@ -13162,7 +13368,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 982,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982"
}
]
}
@@ -13172,7 +13378,7 @@
"groups": [
{
"title": "Properties",
- "children": [1202, 1203]
+ "children": [1209, 1210]
}
],
"sources": [
@@ -13180,7 +13386,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -13200,14 +13406,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1207,
+ "id": 1214,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1208,
+ "id": 1215,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13217,7 +13423,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -13226,7 +13432,7 @@
}
},
{
- "id": 1209,
+ "id": 1216,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13236,12 +13442,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13250,7 +13456,7 @@
"groups": [
{
"title": "Properties",
- "children": [1208, 1209]
+ "children": [1215, 1216]
}
],
"sources": [
@@ -13258,7 +13464,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -13266,14 +13472,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1210,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1211,
+ "id": 1218,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13283,20 +13489,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1212,
+ "id": 1219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1215,
+ "id": 1222,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -13314,7 +13520,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1059,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1059"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059"
}
],
"type": {
@@ -13323,7 +13529,7 @@
}
},
{
- "id": 1213,
+ "id": 1220,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -13341,7 +13547,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1053,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1053"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053"
}
],
"type": {
@@ -13350,7 +13556,7 @@
}
},
{
- "id": 1214,
+ "id": 1221,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13368,7 +13574,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
@@ -13377,7 +13583,7 @@
}
},
{
- "id": 1216,
+ "id": 1223,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -13387,7 +13593,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1079,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1079"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1079"
}
],
"type": {
@@ -13396,14 +13602,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1217,
+ "id": 1224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1219,
+ "id": 1226,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -13413,20 +13619,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1082,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1082"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1220,
+ "id": 1227,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1221,
+ "id": 1228,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -13436,7 +13642,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1082,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1082"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082"
}
],
"type": {
@@ -13453,7 +13659,7 @@
"groups": [
{
"title": "Properties",
- "children": [1221]
+ "children": [1228]
}
],
"sources": [
@@ -13461,14 +13667,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1082,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1082"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082"
}
]
}
}
},
{
- "id": 1218,
+ "id": 1225,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13478,7 +13684,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1081,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1081"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1081"
}
],
"type": {
@@ -13490,7 +13696,7 @@
"groups": [
{
"title": "Properties",
- "children": [1219, 1218]
+ "children": [1226, 1225]
}
],
"sources": [
@@ -13498,7 +13704,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1080,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1080"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1080"
}
]
}
@@ -13506,14 +13712,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1222,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1224,
+ "id": 1231,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -13523,20 +13729,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1086,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1086"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1225,
+ "id": 1232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1226,
+ "id": 1233,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -13546,7 +13752,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1086,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1086"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086"
}
],
"type": {
@@ -13563,7 +13769,7 @@
"groups": [
{
"title": "Properties",
- "children": [1226]
+ "children": [1233]
}
],
"sources": [
@@ -13571,14 +13777,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1086,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1086"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086"
}
]
}
}
},
{
- "id": 1223,
+ "id": 1230,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13588,7 +13794,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1085,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1085"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1085"
}
],
"type": {
@@ -13600,7 +13806,7 @@
"groups": [
{
"title": "Properties",
- "children": [1224, 1223]
+ "children": [1231, 1230]
}
],
"sources": [
@@ -13608,7 +13814,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1084,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1084"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1084"
}
]
}
@@ -13620,7 +13826,7 @@
"groups": [
{
"title": "Properties",
- "children": [1215, 1213, 1214, 1216]
+ "children": [1222, 1220, 1221, 1223]
}
],
"sources": [
@@ -13628,14 +13834,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
}
},
{
- "id": 1227,
+ "id": 1234,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13645,7 +13851,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -13657,7 +13863,7 @@
"groups": [
{
"title": "Properties",
- "children": [1211, 1227]
+ "children": [1218, 1234]
}
],
"sources": [
@@ -13665,7 +13871,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -13678,7 +13884,7 @@
}
},
{
- "id": 1228,
+ "id": 1235,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -13688,19 +13894,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1192,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192"
}
],
"parameters": [
{
- "id": 1229,
+ "id": 1236,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1118,
+ "target": 1125,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -13715,7 +13921,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1137,
+ "target": 1144,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -13727,7 +13933,7 @@
]
},
{
- "id": 1254,
+ "id": 1261,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -13737,12 +13943,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1213"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213"
}
],
"signatures": [
{
- "id": 1255,
+ "id": 1262,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -13760,12 +13966,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1213"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213"
}
],
"parameters": [
{
- "id": 1256,
+ "id": 1263,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -13773,14 +13979,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1257,
+ "id": 1264,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1259,
+ "id": 1266,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -13798,7 +14004,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 917,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L917"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917"
}
],
"type": {
@@ -13807,7 +14013,7 @@
}
},
{
- "id": 1258,
+ "id": 1265,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -13825,7 +14031,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -13837,7 +14043,7 @@
"groups": [
{
"title": "Properties",
- "children": [1259, 1258]
+ "children": [1266, 1265]
}
],
"sources": [
@@ -13845,7 +14051,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -13861,7 +14067,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -13873,7 +14079,7 @@
]
},
{
- "id": 1149,
+ "id": 1156,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -13883,30 +14089,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183"
}
],
"signatures": [
{
- "id": 1150,
+ "id": 1157,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -13940,12 +14146,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180"
}
],
"parameters": [
{
- "id": 1151,
+ "id": 1158,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -13953,14 +14159,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1152,
+ "id": 1159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1153,
+ "id": 1160,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -13978,7 +14184,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -13987,7 +14193,7 @@
}
},
{
- "id": 1154,
+ "id": 1161,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14007,7 +14213,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359"
}
],
"type": {
@@ -14016,7 +14222,7 @@
}
},
{
- "id": 1155,
+ "id": 1162,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -14036,7 +14242,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1364,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1364"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1364"
}
],
"type": {
@@ -14048,7 +14254,7 @@
"groups": [
{
"title": "Properties",
- "children": [1153, 1154, 1155]
+ "children": [1160, 1161, 1162]
}
],
"sources": [
@@ -14056,7 +14262,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -14072,7 +14278,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1309,
+ "target": 1316,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -14082,7 +14288,7 @@
}
},
{
- "id": 1156,
+ "id": 1163,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14092,12 +14298,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181"
}
],
"parameters": [
{
- "id": 1157,
+ "id": 1164,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14105,14 +14311,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1158,
+ "id": 1165,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1159,
+ "id": 1166,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -14130,7 +14336,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -14139,7 +14345,7 @@
}
},
{
- "id": 1160,
+ "id": 1167,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14159,7 +14365,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359"
}
],
"type": {
@@ -14168,7 +14374,7 @@
}
},
{
- "id": 1161,
+ "id": 1168,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -14186,7 +14392,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1371,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1371"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1371"
}
],
"type": {
@@ -14198,7 +14404,7 @@
"groups": [
{
"title": "Properties",
- "children": [1159, 1160, 1161]
+ "children": [1166, 1167, 1168]
}
],
"sources": [
@@ -14206,7 +14412,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -14222,7 +14428,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1310,
+ "target": 1317,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -14232,7 +14438,7 @@
}
},
{
- "id": 1162,
+ "id": 1169,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14242,12 +14448,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182"
}
],
"parameters": [
{
- "id": 1163,
+ "id": 1170,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14255,14 +14461,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1164,
+ "id": 1171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1165,
+ "id": 1172,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -14280,7 +14486,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -14289,7 +14495,7 @@
}
},
{
- "id": 1166,
+ "id": 1173,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14309,7 +14515,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359"
}
],
"type": {
@@ -14321,7 +14527,7 @@
"groups": [
{
"title": "Properties",
- "children": [1165, 1166]
+ "children": [1172, 1173]
}
],
"sources": [
@@ -14329,7 +14535,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -14345,7 +14551,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1311,
+ "target": 1318,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -14355,7 +14561,7 @@
}
},
{
- "id": 1167,
+ "id": 1174,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14365,19 +14571,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183"
}
],
"parameters": [
{
- "id": 1168,
+ "id": 1175,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1101,
+ "target": 1108,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -14392,7 +14598,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1128,
+ "target": 1135,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -14404,7 +14610,7 @@
]
},
{
- "id": 1262,
+ "id": 1269,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -14414,12 +14620,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1238"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238"
}
],
"signatures": [
{
- "id": 1263,
+ "id": 1270,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -14461,7 +14667,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1238"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238"
}
],
"type": {
@@ -14473,7 +14679,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1143,
+ "target": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -14485,7 +14691,7 @@
]
},
{
- "id": 1260,
+ "id": 1267,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -14495,12 +14701,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1223,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1223"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223"
}
],
"signatures": [
{
- "id": 1261,
+ "id": 1268,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -14524,7 +14730,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1149
+ "target": 1156
},
{
"kind": "text",
@@ -14538,7 +14744,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1262
+ "target": 1269
},
{
"kind": "text",
@@ -14567,7 +14773,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1223,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1223"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223"
}
],
"type": {
@@ -14579,7 +14785,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1138,
+ "target": 1145,
"typeArguments": [
{
"type": "typeOperator",
@@ -14614,7 +14820,7 @@
]
},
{
- "id": 1251,
+ "id": 1258,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -14624,12 +14830,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1207,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1207"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207"
}
],
"signatures": [
{
- "id": 1252,
+ "id": 1259,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -14663,19 +14869,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1207,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1207"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207"
}
],
"parameters": [
{
- "id": 1253,
+ "id": 1260,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1102,
+ "target": 1109,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -14690,7 +14896,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1129,
+ "target": 1136,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -14702,7 +14908,7 @@
]
},
{
- "id": 1230,
+ "id": 1237,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -14712,30 +14918,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1201,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201"
}
],
"signatures": [
{
- "id": 1231,
+ "id": 1238,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -14753,12 +14959,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198"
}
],
"parameters": [
{
- "id": 1232,
+ "id": 1239,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14766,14 +14972,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1233,
+ "id": 1240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1235,
+ "id": 1242,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -14791,7 +14997,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 912,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L912"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
@@ -14800,7 +15006,7 @@
}
},
{
- "id": 1236,
+ "id": 1243,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -14818,7 +15024,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 917,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L917"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917"
}
],
"type": {
@@ -14827,7 +15033,7 @@
}
},
{
- "id": 1234,
+ "id": 1241,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -14845,7 +15051,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -14857,7 +15063,7 @@
"groups": [
{
"title": "Properties",
- "children": [1235, 1236, 1234]
+ "children": [1242, 1243, 1241]
}
],
"sources": [
@@ -14865,7 +15071,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -14881,7 +15087,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -14891,7 +15097,7 @@
}
},
{
- "id": 1237,
+ "id": 1244,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -14901,12 +15107,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199"
}
],
"parameters": [
{
- "id": 1238,
+ "id": 1245,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14914,14 +15120,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1246,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1241,
+ "id": 1248,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -14939,7 +15145,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 912,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L912"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
@@ -14948,7 +15154,7 @@
}
},
{
- "id": 1242,
+ "id": 1249,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -14966,7 +15172,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 917,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L917"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917"
}
],
"type": {
@@ -14975,7 +15181,7 @@
}
},
{
- "id": 1240,
+ "id": 1247,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -14993,7 +15199,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -15005,7 +15211,7 @@
"groups": [
{
"title": "Properties",
- "children": [1241, 1242, 1240]
+ "children": [1248, 1249, 1247]
}
],
"sources": [
@@ -15013,7 +15219,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -15029,7 +15235,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15039,7 +15245,7 @@
}
},
{
- "id": 1243,
+ "id": 1250,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15049,12 +15255,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200"
}
],
"parameters": [
{
- "id": 1244,
+ "id": 1251,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -15062,14 +15268,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1245,
+ "id": 1252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1247,
+ "id": 1254,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -15087,7 +15293,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 912,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L912"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
@@ -15096,7 +15302,7 @@
}
},
{
- "id": 1246,
+ "id": 1253,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -15114,7 +15320,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -15123,7 +15329,7 @@
}
},
{
- "id": 1248,
+ "id": 1255,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -15133,7 +15339,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 947,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L947"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947"
}
],
"type": {
@@ -15179,7 +15385,7 @@
"groups": [
{
"title": "Properties",
- "children": [1247, 1246, 1248]
+ "children": [1254, 1253, 1255]
}
],
"sources": [
@@ -15187,7 +15393,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -15203,7 +15409,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15213,7 +15419,7 @@
}
},
{
- "id": 1249,
+ "id": 1256,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15223,19 +15429,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1201,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201"
}
],
"parameters": [
{
- "id": 1250,
+ "id": 1257,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1113,
+ "target": 1120,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -15250,7 +15456,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15265,11 +15471,11 @@
"groups": [
{
"title": "Properties",
- "children": [1264]
+ "children": [1271]
},
{
"title": "Methods",
- "children": [1169, 1254, 1149, 1262, 1260, 1251, 1230]
+ "children": [1176, 1261, 1156, 1269, 1267, 1258, 1237]
}
],
"sources": [
@@ -15277,19 +15483,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1170,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1170"
}
]
},
{
- "id": 1347,
+ "id": 1354,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1350,
+ "id": 1357,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -15301,7 +15507,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1494,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1494"
}
],
"type": {
@@ -15310,7 +15516,7 @@
}
},
{
- "id": 1349,
+ "id": 1356,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -15320,7 +15526,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1493,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1493"
}
],
"type": {
@@ -15332,7 +15538,7 @@
}
},
{
- "id": 1351,
+ "id": 1358,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -15344,7 +15550,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1495,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1495"
}
],
"type": {
@@ -15353,7 +15559,7 @@
}
},
{
- "id": 1348,
+ "id": 1355,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -15363,7 +15569,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1492"
}
],
"type": {
@@ -15388,7 +15594,7 @@
"groups": [
{
"title": "Properties",
- "children": [1350, 1349, 1351, 1348]
+ "children": [1357, 1356, 1358, 1355]
}
],
"sources": [
@@ -15396,12 +15602,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1491,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1491"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1491"
}
],
"indexSignatures": [
{
- "id": 1352,
+ "id": 1359,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15411,12 +15617,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1496,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1496"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1496"
}
],
"parameters": [
{
- "id": 1353,
+ "id": 1360,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15435,7 +15641,7 @@
]
},
{
- "id": 1327,
+ "id": 1334,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -15461,7 +15667,7 @@
},
"children": [
{
- "id": 1343,
+ "id": 1350,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -15473,12 +15679,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459"
}
],
"type": {
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -15489,7 +15695,7 @@
}
},
{
- "id": 1335,
+ "id": 1342,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -15501,21 +15707,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1482,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1482"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1482"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 812,
+ "target": 819,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1333,
+ "id": 1340,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -15527,18 +15733,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1480,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1480"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1480"
}
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 845,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1339,
+ "id": 1346,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -15550,7 +15756,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455"
}
],
"type": {
@@ -15576,7 +15782,7 @@
}
},
{
- "id": 1328,
+ "id": 1335,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -15588,7 +15794,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1473,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1473"
}
],
"type": {
@@ -15597,7 +15803,7 @@
}
},
{
- "id": 1340,
+ "id": 1347,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -15609,7 +15815,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1456"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456"
}
],
"type": {
@@ -15623,7 +15829,7 @@
}
},
{
- "id": 1341,
+ "id": 1348,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -15635,7 +15841,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457"
}
],
"type": {
@@ -15649,7 +15855,7 @@
}
},
{
- "id": 1330,
+ "id": 1337,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -15661,7 +15867,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1475,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1475"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1475"
}
],
"type": {
@@ -15670,7 +15876,7 @@
}
},
{
- "id": 1337,
+ "id": 1344,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -15682,7 +15888,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1453"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453"
}
],
"type": {
@@ -15696,7 +15902,7 @@
}
},
{
- "id": 1331,
+ "id": 1338,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -15708,7 +15914,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1478"
}
],
"type": {
@@ -15717,7 +15923,7 @@
}
},
{
- "id": 1332,
+ "id": 1339,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -15729,7 +15935,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1479,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1479"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1479"
}
],
"type": {
@@ -15738,7 +15944,7 @@
}
},
{
- "id": 1329,
+ "id": 1336,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -15750,7 +15956,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1474,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1474"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1474"
}
],
"type": {
@@ -15759,7 +15965,7 @@
}
},
{
- "id": 1336,
+ "id": 1343,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -15771,7 +15977,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1485"
}
],
"type": {
@@ -15780,7 +15986,7 @@
}
},
{
- "id": 1342,
+ "id": 1349,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -15792,7 +15998,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1458,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1458"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458"
}
],
"type": {
@@ -15806,7 +16012,7 @@
}
},
{
- "id": 1344,
+ "id": 1351,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -15818,7 +16024,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1460,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460"
}
],
"type": {
@@ -15832,7 +16038,7 @@
}
},
{
- "id": 1338,
+ "id": 1345,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -15844,7 +16050,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454"
}
],
"type": {
@@ -15858,7 +16064,7 @@
}
},
{
- "id": 1334,
+ "id": 1341,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -15870,12 +16076,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1481,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1481"
}
],
"type": {
"type": "reference",
- "target": 843,
+ "target": 850,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -15885,8 +16091,8 @@
{
"title": "Properties",
"children": [
- 1343, 1335, 1333, 1339, 1328, 1340, 1341, 1330, 1337, 1331, 1332, 1329, 1336, 1342,
- 1344, 1338, 1334
+ 1350, 1342, 1340, 1346, 1335, 1347, 1348, 1337, 1344, 1338, 1339, 1336, 1343, 1349,
+ 1351, 1345, 1341
]
}
],
@@ -15895,12 +16101,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1471,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1471"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1471"
}
],
"indexSignatures": [
{
- "id": 1345,
+ "id": 1352,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15910,12 +16116,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1488,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1488"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1488"
}
],
"parameters": [
{
- "id": 1346,
+ "id": 1353,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15935,21 +16141,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1317,
+ "target": 1324,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 801,
+ "id": 808,
"name": "Session",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 804,
+ "id": 811,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -15967,7 +16173,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L239"
}
],
"type": {
@@ -15976,7 +16182,7 @@
}
},
{
- "id": 807,
+ "id": 814,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -15996,7 +16202,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L251"
}
],
"type": {
@@ -16005,7 +16211,7 @@
}
},
{
- "id": 806,
+ "id": 813,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -16023,7 +16229,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L247"
}
],
"type": {
@@ -16032,7 +16238,7 @@
}
},
{
- "id": 803,
+ "id": 810,
"name": "provider_refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -16052,7 +16258,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L235"
}
],
"type": {
@@ -16070,7 +16276,7 @@
}
},
{
- "id": 802,
+ "id": 809,
"name": "provider_token",
"variant": "declaration",
"kind": 1024,
@@ -16090,7 +16296,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L230"
}
],
"type": {
@@ -16108,7 +16314,7 @@
}
},
{
- "id": 805,
+ "id": 812,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -16126,7 +16332,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 243,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L243"
}
],
"type": {
@@ -16135,7 +16341,7 @@
}
},
{
- "id": 808,
+ "id": 815,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -16145,7 +16351,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 252,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L252"
}
],
"type": {
@@ -16154,7 +16360,7 @@
}
},
{
- "id": 809,
+ "id": 816,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -16172,12 +16378,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 257,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L257"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -16186,7 +16392,7 @@
"groups": [
{
"title": "Properties",
- "children": [804, 807, 806, 803, 802, 805, 808, 809]
+ "children": [811, 814, 813, 810, 809, 812, 815, 816]
}
],
"sources": [
@@ -16194,19 +16400,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 226,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L226"
}
]
},
{
- "id": 891,
+ "id": 898,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 893,
+ "id": 900,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -16224,13 +16430,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 514,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 894,
+ "id": 901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16240,12 +16446,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 514,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"signatures": [
{
- "id": 895,
+ "id": 902,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16255,25 +16461,25 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 514,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"parameters": [
{
- "id": 896,
+ "id": 903,
"name": "event",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 699,
+ "target": 706,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
},
{
- "id": 897,
+ "id": 904,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -16287,7 +16493,7 @@
},
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -16305,7 +16511,7 @@
}
},
{
- "id": 892,
+ "id": 899,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16323,7 +16529,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 510,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L510"
}
],
"type": {
@@ -16341,7 +16547,7 @@
}
},
{
- "id": 898,
+ "id": 905,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -16359,13 +16565,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 518,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 899,
+ "id": 906,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16375,12 +16581,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 518,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518"
}
],
"signatures": [
{
- "id": 900,
+ "id": 907,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16390,7 +16596,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 518,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518"
}
],
"type": {
@@ -16406,7 +16612,7 @@
"groups": [
{
"title": "Properties",
- "children": [893, 892, 898]
+ "children": [900, 899, 905]
}
],
"sources": [
@@ -16414,19 +16620,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 504,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L504"
}
]
},
{
- "id": 846,
+ "id": 853,
"name": "User",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 857,
+ "id": 864,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -16438,7 +16644,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 380,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L380"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L380"
}
],
"type": {
@@ -16447,7 +16653,7 @@
}
},
{
- "id": 848,
+ "id": 855,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -16457,18 +16663,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 371,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L371"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L371"
}
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 845,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 850,
+ "id": 857,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -16478,7 +16684,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 373,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L373"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L373"
}
],
"type": {
@@ -16487,7 +16693,7 @@
}
},
{
- "id": 851,
+ "id": 858,
"name": "confirmation_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -16499,7 +16705,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 374,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L374"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L374"
}
],
"type": {
@@ -16508,7 +16714,7 @@
}
},
{
- "id": 861,
+ "id": 868,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -16520,7 +16726,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 384,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L384"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L384"
}
],
"type": {
@@ -16529,7 +16735,7 @@
}
},
{
- "id": 860,
+ "id": 867,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -16539,7 +16745,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L383"
}
],
"type": {
@@ -16548,7 +16754,7 @@
}
},
{
- "id": 871,
+ "id": 878,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -16560,7 +16766,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 394,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L394"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L394"
}
],
"type": {
@@ -16569,7 +16775,7 @@
}
},
{
- "id": 858,
+ "id": 865,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -16581,7 +16787,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L381"
}
],
"type": {
@@ -16590,7 +16796,7 @@
}
},
{
- "id": 853,
+ "id": 860,
"name": "email_change_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -16602,7 +16808,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 376,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L376"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L376"
}
],
"type": {
@@ -16611,7 +16817,7 @@
}
},
{
- "id": 862,
+ "id": 869,
"name": "email_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -16623,7 +16829,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 385,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L385"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L385"
}
],
"type": {
@@ -16632,7 +16838,7 @@
}
},
{
- "id": 870,
+ "id": 877,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -16644,7 +16850,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 393,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L393"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L393"
}
],
"type": {
@@ -16654,7 +16860,7 @@
"types": [
{
"type": "reference",
- "target": 828,
+ "target": 835,
"typeArguments": [
{
"type": "union",
@@ -16683,7 +16889,7 @@
},
{
"type": "reference",
- "target": 828,
+ "target": 835,
"typeArguments": [
{
"type": "union",
@@ -16715,7 +16921,7 @@
}
},
{
- "id": 847,
+ "id": 854,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16725,7 +16931,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L370"
}
],
"type": {
@@ -16734,7 +16940,7 @@
}
},
{
- "id": 867,
+ "id": 874,
"name": "identities",
"variant": "declaration",
"kind": 1024,
@@ -16746,21 +16952,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 390,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L390"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 815,
+ "target": 822,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 856,
+ "id": 863,
"name": "invited_at",
"variant": "declaration",
"kind": 1024,
@@ -16772,7 +16978,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 379,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L379"
}
],
"type": {
@@ -16781,7 +16987,7 @@
}
},
{
- "id": 868,
+ "id": 875,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -16793,7 +16999,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 391,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L391"
}
],
"type": {
@@ -16802,7 +17008,7 @@
}
},
{
- "id": 869,
+ "id": 876,
"name": "is_sso_user",
"variant": "declaration",
"kind": 1024,
@@ -16814,7 +17020,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 392,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L392"
}
],
"type": {
@@ -16823,7 +17029,7 @@
}
},
{
- "id": 864,
+ "id": 871,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -16835,7 +17041,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 387,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L387"
}
],
"type": {
@@ -16844,7 +17050,7 @@
}
},
{
- "id": 854,
+ "id": 861,
"name": "new_email",
"variant": "declaration",
"kind": 1024,
@@ -16856,7 +17062,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 377,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L377"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L377"
}
],
"type": {
@@ -16865,7 +17071,7 @@
}
},
{
- "id": 855,
+ "id": 862,
"name": "new_phone",
"variant": "declaration",
"kind": 1024,
@@ -16877,7 +17083,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L378"
}
],
"type": {
@@ -16886,7 +17092,7 @@
}
},
{
- "id": 859,
+ "id": 866,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -16898,7 +17104,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L382"
}
],
"type": {
@@ -16907,7 +17113,7 @@
}
},
{
- "id": 863,
+ "id": 870,
"name": "phone_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -16919,7 +17125,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 386,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L386"
}
],
"type": {
@@ -16928,7 +17134,7 @@
}
},
{
- "id": 852,
+ "id": 859,
"name": "recovery_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -16940,7 +17146,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 375,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L375"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L375"
}
],
"type": {
@@ -16949,7 +17155,7 @@
}
},
{
- "id": 865,
+ "id": 872,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -16961,7 +17167,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 388,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L388"
}
],
"type": {
@@ -16970,7 +17176,7 @@
}
},
{
- "id": 866,
+ "id": 873,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -16982,7 +17188,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 389,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L389"
}
],
"type": {
@@ -16991,7 +17197,7 @@
}
},
{
- "id": 849,
+ "id": 856,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -17001,12 +17207,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 372,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L372"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L372"
}
],
"type": {
"type": "reference",
- "target": 843,
+ "target": 850,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -17016,8 +17222,8 @@
{
"title": "Properties",
"children": [
- 857, 848, 850, 851, 861, 860, 871, 858, 853, 862, 870, 847, 867, 856, 868, 869, 864,
- 854, 855, 859, 863, 852, 865, 866, 849
+ 864, 855, 857, 858, 868, 867, 878, 865, 860, 869, 877, 854, 874, 863, 875, 876, 871,
+ 861, 862, 866, 870, 859, 872, 873, 856
]
}
],
@@ -17026,19 +17232,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 369,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L369"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L369"
}
]
},
{
- "id": 838,
+ "id": 845,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 839,
+ "id": 846,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -17058,7 +17264,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L357"
}
],
"type": {
@@ -17067,7 +17273,7 @@
}
},
{
- "id": 840,
+ "id": 847,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -17087,7 +17293,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L361"
}
],
"type": {
@@ -17102,7 +17308,7 @@
"groups": [
{
"title": "Properties",
- "children": [839, 840]
+ "children": [846, 847]
}
],
"sources": [
@@ -17110,12 +17316,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 353,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L353"
}
],
"indexSignatures": [
{
- "id": 841,
+ "id": 848,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17125,12 +17331,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 362,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L362"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L362"
}
],
"parameters": [
{
- "id": 842,
+ "id": 849,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17149,14 +17355,14 @@
]
},
{
- "id": 872,
+ "id": 879,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 877,
+ "id": 884,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -17192,7 +17398,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L426"
}
],
"type": {
@@ -17201,7 +17407,7 @@
}
},
{
- "id": 873,
+ "id": 880,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -17221,7 +17427,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 401,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L401"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401"
}
],
"type": {
@@ -17230,7 +17436,7 @@
}
},
{
- "id": 876,
+ "id": 883,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -17250,7 +17456,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 418,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418"
}
],
"type": {
@@ -17259,7 +17465,7 @@
}
},
{
- "id": 875,
+ "id": 882,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -17279,7 +17485,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411"
}
],
"type": {
@@ -17288,7 +17494,7 @@
}
},
{
- "id": 874,
+ "id": 881,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -17308,7 +17514,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -17320,7 +17526,7 @@
"groups": [
{
"title": "Properties",
- "children": [877, 873, 876, 875, 874]
+ "children": [884, 880, 883, 882, 881]
}
],
"sources": [
@@ -17328,19 +17534,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 397,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L397"
}
]
},
{
- "id": 815,
+ "id": 822,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 824,
+ "id": 831,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -17352,7 +17558,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 303,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L303"
}
],
"type": {
@@ -17361,7 +17567,7 @@
}
},
{
- "id": 816,
+ "id": 823,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17371,7 +17577,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 296,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L296"
}
],
"type": {
@@ -17380,7 +17586,7 @@
}
},
{
- "id": 818,
+ "id": 825,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -17392,13 +17598,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 298,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 819,
+ "id": 826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17408,12 +17614,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 298,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298"
}
],
"indexSignatures": [
{
- "id": 820,
+ "id": 827,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17423,12 +17629,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 299,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L299"
}
],
"parameters": [
{
- "id": 821,
+ "id": 828,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17449,7 +17655,7 @@
}
},
{
- "id": 822,
+ "id": 829,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -17459,7 +17665,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 301,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L301"
}
],
"type": {
@@ -17468,7 +17674,7 @@
}
},
{
- "id": 825,
+ "id": 832,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -17480,7 +17686,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L304"
}
],
"type": {
@@ -17489,7 +17695,7 @@
}
},
{
- "id": 823,
+ "id": 830,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -17499,7 +17705,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 302,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L302"
}
],
"type": {
@@ -17508,7 +17714,7 @@
}
},
{
- "id": 826,
+ "id": 833,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -17520,7 +17726,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 305,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L305"
}
],
"type": {
@@ -17529,7 +17735,7 @@
}
},
{
- "id": 817,
+ "id": 824,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -17539,7 +17745,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L297"
}
],
"type": {
@@ -17551,7 +17757,7 @@
"groups": [
{
"title": "Properties",
- "children": [824, 816, 818, 822, 825, 823, 826, 817]
+ "children": [831, 823, 825, 829, 832, 830, 833, 824]
}
],
"sources": [
@@ -17559,12 +17765,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 295,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L295"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L295"
}
]
},
{
- "id": 843,
+ "id": 850,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -17574,12 +17780,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 365,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L365"
}
],
"indexSignatures": [
{
- "id": 844,
+ "id": 851,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17589,12 +17795,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 366,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L366"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L366"
}
],
"parameters": [
{
- "id": 845,
+ "id": 852,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17613,14 +17819,14 @@
]
},
{
- "id": 1021,
+ "id": 1028,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1022,
+ "id": 1029,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -17638,7 +17844,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 733,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L733"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L733"
}
],
"type": {
@@ -17647,7 +17853,7 @@
}
},
{
- "id": 1025,
+ "id": 1032,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -17659,20 +17865,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 738,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L738"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1026,
+ "id": 1033,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1028,
+ "id": 1035,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -17698,7 +17904,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 746,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L746"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L746"
}
],
"type": {
@@ -17707,7 +17913,7 @@
}
},
{
- "id": 1027,
+ "id": 1034,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -17727,7 +17933,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 740,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L740"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L740"
}
],
"type": {
@@ -17739,7 +17945,7 @@
"groups": [
{
"title": "Properties",
- "children": [1028, 1027]
+ "children": [1035, 1034]
}
],
"sources": [
@@ -17747,14 +17953,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 738,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L738"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738"
}
]
}
}
},
{
- "id": 1023,
+ "id": 1030,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -17772,7 +17978,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 735,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L735"
}
],
"type": {
@@ -17781,7 +17987,7 @@
}
},
{
- "id": 1024,
+ "id": 1031,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17799,12 +18005,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 737,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L737"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L737"
}
],
"type": {
"type": "reference",
- "target": 1033,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -17813,7 +18019,7 @@
"groups": [
{
"title": "Properties",
- "children": [1022, 1025, 1023, 1024]
+ "children": [1029, 1032, 1030, 1031]
}
],
"sources": [
@@ -17821,19 +18027,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 731,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L731"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L731"
}
]
},
{
- "id": 1013,
+ "id": 1020,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1017,
+ "id": 1024,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -17845,20 +18051,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 719,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1018,
+ "id": 1025,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1020,
+ "id": 1027,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -17884,7 +18090,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 728,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L728"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L728"
}
],
"type": {
@@ -17893,7 +18099,7 @@
}
},
{
- "id": 1019,
+ "id": 1026,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -17913,7 +18119,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 721,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L721"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L721"
}
],
"type": {
@@ -17925,7 +18131,7 @@
"groups": [
{
"title": "Properties",
- "children": [1020, 1019]
+ "children": [1027, 1026]
}
],
"sources": [
@@ -17933,14 +18139,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 719,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719"
}
]
}
}
},
{
- "id": 1014,
+ "id": 1021,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -17958,7 +18164,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 714,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L714"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L714"
}
],
"type": {
@@ -17967,7 +18173,7 @@
}
},
{
- "id": 1015,
+ "id": 1022,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -17985,7 +18191,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 716,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L716"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L716"
}
],
"type": {
@@ -17994,7 +18200,7 @@
}
},
{
- "id": 1016,
+ "id": 1023,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18012,12 +18218,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 718,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L718"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L718"
}
],
"type": {
"type": "reference",
- "target": 1032,
+ "target": 1039,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -18026,7 +18232,7 @@
"groups": [
{
"title": "Properties",
- "children": [1017, 1014, 1015, 1016]
+ "children": [1024, 1021, 1022, 1023]
}
],
"sources": [
@@ -18034,19 +18240,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 712,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L712"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L712"
}
]
},
{
- "id": 1029,
+ "id": 1036,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1030,
+ "id": 1037,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -18064,7 +18270,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 752,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L752"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L752"
}
],
"type": {
@@ -18073,7 +18279,7 @@
}
},
{
- "id": 1031,
+ "id": 1038,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18091,12 +18297,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 755,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L755"
}
],
"type": {
"type": "reference",
- "target": 1033,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -18105,7 +18311,7 @@
"groups": [
{
"title": "Properties",
- "children": [1030, 1031]
+ "children": [1037, 1038]
}
],
"sources": [
@@ -18113,12 +18319,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 750,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L750"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L750"
}
]
},
{
- "id": 810,
+ "id": 817,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -18128,7 +18334,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 274,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274"
}
],
"type": {
@@ -18164,7 +18370,7 @@
{
"type": "reflection",
"declaration": {
- "id": 811,
+ "id": 818,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18174,7 +18380,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 274,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274"
}
]
}
@@ -18185,7 +18391,7 @@
}
},
{
- "id": 699,
+ "id": 706,
"name": "AuthChangeEvent",
"variant": "declaration",
"kind": 2097152,
@@ -18195,7 +18401,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 44,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -18227,7 +18433,7 @@
},
{
"type": "reference",
- "target": 698,
+ "target": 705,
"name": "AuthChangeEventMFA",
"package": "@supabase/auth-js"
}
@@ -18235,7 +18441,7 @@
}
},
{
- "id": 698,
+ "id": 705,
"name": "AuthChangeEventMFA",
"variant": "declaration",
"kind": 2097152,
@@ -18245,7 +18451,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 42,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L42"
}
],
"type": {
@@ -18254,7 +18460,7 @@
}
},
{
- "id": 1142,
+ "id": 1149,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -18264,7 +18470,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1144,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1144"
}
],
"type": {
@@ -18282,7 +18488,7 @@
}
},
{
- "id": 937,
+ "id": 944,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -18292,7 +18498,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 593,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L593"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L593"
}
],
"type": {
@@ -18310,7 +18516,7 @@
}
},
{
- "id": 1268,
+ "id": 1275,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -18329,20 +18535,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1254,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1269,
+ "id": 1276,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1270,
+ "id": 1277,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -18360,7 +18566,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1256"
}
],
"type": {
@@ -18369,7 +18575,7 @@
}
},
{
- "id": 1271,
+ "id": 1278,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -18387,7 +18593,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1259"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1259"
}
],
"type": {
@@ -18399,7 +18605,7 @@
"groups": [
{
"title": "Properties",
- "children": [1270, 1271]
+ "children": [1277, 1278]
}
],
"sources": [
@@ -18407,14 +18613,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1254,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254"
}
]
}
}
},
{
- "id": 1265,
+ "id": 1272,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18433,24 +18639,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1247,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1266,
+ "id": 1273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1267,
+ "id": 1274,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -18468,7 +18674,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1249,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1249"
}
],
"type": {
@@ -18480,7 +18686,7 @@
"groups": [
{
"title": "Properties",
- "children": [1267]
+ "children": [1274]
}
],
"sources": [
@@ -18488,7 +18694,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1247,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247"
}
]
}
@@ -18499,7 +18705,7 @@
}
},
{
- "id": 1275,
+ "id": 1282,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -18518,20 +18724,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1273,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1273"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1276,
+ "id": 1283,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1277,
+ "id": 1284,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -18549,7 +18755,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1275,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1275"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1275"
}
],
"type": {
@@ -18561,7 +18767,7 @@
"groups": [
{
"title": "Properties",
- "children": [1277]
+ "children": [1284]
}
],
"sources": [
@@ -18569,14 +18775,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1273,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1273"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273"
}
]
}
}
},
{
- "id": 1272,
+ "id": 1279,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18595,24 +18801,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1265,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1273,
+ "id": 1280,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1274,
+ "id": 1281,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -18630,14 +18836,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1267"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1267"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 828,
+ "target": 835,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -18647,7 +18853,7 @@
"groups": [
{
"title": "Properties",
- "children": [1274]
+ "children": [1281]
}
],
"sources": [
@@ -18655,7 +18861,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1265,
"character": 60,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265"
}
]
}
@@ -18666,7 +18872,7 @@
}
},
{
- "id": 1133,
+ "id": 1140,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18676,16 +18882,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1074,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1074"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1074"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -18726,7 +18932,7 @@
}
},
{
- "id": 1137,
+ "id": 1144,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18736,7 +18942,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1126,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1126"
}
],
"type": {
@@ -18744,19 +18950,19 @@
"types": [
{
"type": "reference",
- "target": 1132,
+ "target": 1139,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1133,
+ "target": 1140,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1134,
+ "target": 1141,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -18764,7 +18970,7 @@
}
},
{
- "id": 1132,
+ "id": 1139,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18774,16 +18980,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1066,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1066"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1066"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -18824,7 +19030,7 @@
}
},
{
- "id": 1134,
+ "id": 1141,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18855,16 +19061,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1095,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1095"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1095"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -18905,7 +19111,7 @@
}
},
{
- "id": 1135,
+ "id": 1142,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -18923,12 +19129,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1115,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1115"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -18965,7 +19171,7 @@
}
},
{
- "id": 1136,
+ "id": 1143,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18983,16 +19189,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1123,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1123"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1135,
+ "target": 1142,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -19002,7 +19208,7 @@
}
},
{
- "id": 1310,
+ "id": 1317,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19012,16 +19218,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1429,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1429"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -19062,7 +19268,7 @@
}
},
{
- "id": 1128,
+ "id": 1135,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19072,7 +19278,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1041,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1041"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1041"
}
],
"type": {
@@ -19080,19 +19286,19 @@
"types": [
{
"type": "reference",
- "target": 1309,
+ "target": 1316,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1310,
+ "target": 1317,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1311,
+ "target": 1318,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -19100,7 +19306,7 @@
}
},
{
- "id": 1309,
+ "id": 1316,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19110,16 +19316,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1420,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1420"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1420"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -19160,7 +19366,7 @@
}
},
{
- "id": 1311,
+ "id": 1318,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19191,16 +19397,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1442,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1442"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -19241,7 +19447,7 @@
}
},
{
- "id": 1143,
+ "id": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19251,24 +19457,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1146,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1144,
+ "id": 1151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1147,
+ "id": 1154,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -19286,21 +19492,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1163"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1163"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 812,
+ "target": 819,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1145,
+ "id": 1152,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -19318,7 +19524,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1148"
}
],
"type": {
@@ -19326,7 +19532,7 @@
"types": [
{
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -19338,7 +19544,7 @@
}
},
{
- "id": 1146,
+ "id": 1153,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -19358,7 +19564,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1169
+ "target": 1176
}
]
}
@@ -19369,7 +19575,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1156,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1156"
}
],
"type": {
@@ -19377,7 +19583,7 @@
"types": [
{
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -19392,7 +19598,7 @@
"groups": [
{
"title": "Properties",
- "children": [1147, 1145, 1146]
+ "children": [1154, 1152, 1153]
}
],
"sources": [
@@ -19400,7 +19606,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1146,
"character": 74,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146"
}
]
}
@@ -19411,7 +19617,7 @@
}
},
{
- "id": 1138,
+ "id": 1145,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19429,12 +19635,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1132,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1132"
}
],
"typeParameters": [
{
- "id": 1141,
+ "id": 1148,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -19469,7 +19675,7 @@
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "intersection",
@@ -19477,14 +19683,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1139,
+ "id": 1146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1140,
+ "id": 1147,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -19502,18 +19708,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1136,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1136"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "reference",
- "target": 828,
+ "target": 835,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -19527,7 +19733,7 @@
"groups": [
{
"title": "Properties",
- "children": [1140]
+ "children": [1147]
}
],
"sources": [
@@ -19535,7 +19741,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1134,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1134"
}
]
}
@@ -19551,7 +19757,7 @@
},
"objectType": {
"type": "reference",
- "target": 1141,
+ "target": 1148,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -19561,11 +19767,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "reference",
- "target": 828,
+ "target": 835,
"typeArguments": [
{
"type": "reference",
@@ -19599,7 +19805,7 @@
}
},
{
- "id": 1129,
+ "id": 1136,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19609,24 +19815,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1046,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1046"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1130,
+ "id": 1137,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1131,
+ "id": 1138,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -19644,7 +19850,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1048,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1048"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1048"
}
],
"type": {
@@ -19656,7 +19862,7 @@
"groups": [
{
"title": "Properties",
- "children": [1131]
+ "children": [1138]
}
],
"sources": [
@@ -19664,7 +19870,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1046,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1046"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046"
}
]
}
@@ -19675,7 +19881,7 @@
}
},
{
- "id": 1127,
+ "id": 1134,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19693,16 +19899,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1039,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1039"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1039"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1120,
+ "target": 1127,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -19712,7 +19918,7 @@
}
},
{
- "id": 1120,
+ "id": 1127,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -19730,20 +19936,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1018,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1018"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1121,
+ "id": 1128,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1122,
+ "id": 1129,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -19761,7 +19967,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1020,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1020"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1020"
}
],
"type": {
@@ -19770,7 +19976,7 @@
}
},
{
- "id": 1124,
+ "id": 1131,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -19788,7 +19994,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1026,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1026"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1026"
}
],
"type": {
@@ -19797,7 +20003,7 @@
}
},
{
- "id": 1125,
+ "id": 1132,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -19815,7 +20021,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1029,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1029"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1029"
}
],
"type": {
@@ -19824,7 +20030,7 @@
}
},
{
- "id": 1123,
+ "id": 1130,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -19850,7 +20056,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1023,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1023"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1023"
}
],
"type": {
@@ -19859,7 +20065,7 @@
}
},
{
- "id": 1126,
+ "id": 1133,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -19877,12 +20083,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1032,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1032"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1032"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -19891,7 +20097,7 @@
"groups": [
{
"title": "Properties",
- "children": [1122, 1124, 1125, 1123, 1126]
+ "children": [1129, 1131, 1132, 1130, 1133]
}
],
"sources": [
@@ -19899,14 +20105,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1018,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1018"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018"
}
]
}
}
},
{
- "id": 1443,
+ "id": 1450,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19924,16 +20130,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1713,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1713"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1713"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1433,
+ "target": 1440,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
}
@@ -19943,7 +20149,7 @@
}
},
{
- "id": 1444,
+ "id": 1451,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19961,24 +20167,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1719,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1445,
+ "id": 1452,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1446,
+ "id": 1453,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -19996,7 +20202,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1721,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1721"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1721"
}
],
"type": {
@@ -20008,7 +20214,7 @@
"groups": [
{
"title": "Properties",
- "children": [1446]
+ "children": [1453]
}
],
"sources": [
@@ -20016,7 +20222,96 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1719,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1459,
+ "name": "AuthOAuthGrantsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for listing user's OAuth grants.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1741,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1741"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 749,
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1454,
+ "name": "OAuthGrant",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1460,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for revoking an OAuth grant.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1747,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1747"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 749,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1461,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1747,
+ "character": 57,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1747"
}
]
}
@@ -20027,7 +20322,7 @@
}
},
{
- "id": 768,
+ "id": 775,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20050,24 +20345,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 178,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 769,
+ "id": 776,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 772,
+ "id": 779,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -20079,7 +20374,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -20097,7 +20392,7 @@
}
},
{
- "id": 771,
+ "id": 778,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20107,7 +20402,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L180"
}
],
"type": {
@@ -20116,7 +20411,7 @@
}
},
{
- "id": 770,
+ "id": 777,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20126,7 +20421,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L179"
}
],
"type": {
@@ -20138,7 +20433,7 @@
"groups": [
{
"title": "Properties",
- "children": [772, 771, 770]
+ "children": [779, 778, 777]
}
],
"sources": [
@@ -20146,7 +20441,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 178,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178"
}
]
}
@@ -20157,7 +20452,7 @@
}
},
{
- "id": 759,
+ "id": 766,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20167,24 +20462,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 162,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 760,
+ "id": 767,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 762,
+ "id": 769,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20194,7 +20489,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L164"
}
],
"type": {
@@ -20202,7 +20497,7 @@
"types": [
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -20214,7 +20509,7 @@
}
},
{
- "id": 761,
+ "id": 768,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20224,7 +20519,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L163"
}
],
"type": {
@@ -20232,7 +20527,7 @@
"types": [
{
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -20247,7 +20542,7 @@
"groups": [
{
"title": "Properties",
- "children": [762, 761]
+ "children": [769, 768]
}
],
"sources": [
@@ -20255,7 +20550,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 162,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162"
}
]
}
@@ -20266,7 +20561,7 @@
}
},
{
- "id": 763,
+ "id": 770,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -20276,24 +20571,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 167,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 764,
+ "id": 771,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 766,
+ "id": 773,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20303,7 +20598,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L169"
}
],
"type": {
@@ -20311,7 +20606,7 @@
"types": [
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -20323,7 +20618,7 @@
}
},
{
- "id": 765,
+ "id": 772,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20333,7 +20628,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 168,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L168"
}
],
"type": {
@@ -20341,7 +20636,7 @@
"types": [
{
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -20353,7 +20648,7 @@
}
},
{
- "id": 767,
+ "id": 774,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -20365,7 +20660,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 170,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L170"
}
],
"type": {
@@ -20373,7 +20668,7 @@
"types": [
{
"type": "reference",
- "target": 733,
+ "target": 740,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -20388,7 +20683,7 @@
"groups": [
{
"title": "Properties",
- "children": [766, 765, 767]
+ "children": [773, 772, 774]
}
],
"sources": [
@@ -20396,7 +20691,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 167,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167"
}
]
}
@@ -20407,7 +20702,7 @@
}
},
{
- "id": 773,
+ "id": 780,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20417,24 +20712,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 184,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 774,
+ "id": 781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 776,
+ "id": 783,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20444,18 +20739,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L186"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 775,
+ "id": 782,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20465,12 +20760,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 185,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L185"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -20479,7 +20774,7 @@
"groups": [
{
"title": "Properties",
- "children": [776, 775]
+ "children": [783, 782]
}
],
"sources": [
@@ -20487,7 +20782,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 184,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184"
}
]
}
@@ -20498,7 +20793,7 @@
}
},
{
- "id": 777,
+ "id": 784,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -20508,24 +20803,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 189,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 778,
+ "id": 785,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 780,
+ "id": 787,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20535,18 +20830,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 191,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L191"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 779,
+ "id": 786,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20556,18 +20851,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L190"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
},
{
- "id": 781,
+ "id": 788,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -20579,12 +20874,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 192,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L192"
}
],
"type": {
"type": "reference",
- "target": 733,
+ "target": 740,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -20593,7 +20888,7 @@
"groups": [
{
"title": "Properties",
- "children": [780, 779, 781]
+ "children": [787, 786, 788]
}
],
"sources": [
@@ -20601,7 +20896,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 189,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189"
}
]
}
@@ -20612,7 +20907,7 @@
}
},
{
- "id": 1291,
+ "id": 1298,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -20622,16 +20917,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1325,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1325"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1325"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -20641,7 +20936,7 @@
}
},
{
- "id": 1376,
+ "id": 1383,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -20659,20 +20954,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1565,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1565"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1377,
+ "id": 1384,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1378,
+ "id": 1385,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -20690,7 +20985,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1567,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1567"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1567"
}
],
"type": {
@@ -20699,7 +20994,7 @@
}
},
{
- "id": 1379,
+ "id": 1386,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -20719,7 +21014,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1569,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1569"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1569"
}
],
"type": {
@@ -20728,7 +21023,7 @@
}
},
{
- "id": 1381,
+ "id": 1388,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -20748,21 +21043,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1573,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1573"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1573"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1356,
+ "target": 1363,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1380,
+ "id": 1387,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -20780,7 +21075,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1571"
}
],
"type": {
@@ -20792,7 +21087,7 @@
}
},
{
- "id": 1382,
+ "id": 1389,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -20812,21 +21107,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1575,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1575"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1575"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1357,
+ "target": 1364,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1383,
+ "id": 1390,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -20846,7 +21141,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1577,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1577"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1577"
}
],
"type": {
@@ -20858,7 +21153,7 @@
"groups": [
{
"title": "Properties",
- "children": [1378, 1379, 1381, 1380, 1382, 1383]
+ "children": [1385, 1386, 1388, 1387, 1389, 1390]
}
],
"sources": [
@@ -20866,14 +21161,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1565,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1565"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565"
}
]
}
}
},
{
- "id": 1033,
+ "id": 1040,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -20883,7 +21178,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 759,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L759"
}
],
"type": {
@@ -20917,7 +21212,7 @@
}
},
{
- "id": 993,
+ "id": 1000,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -20927,7 +21222,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 670,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L670"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L670"
}
],
"type": {
@@ -20941,7 +21236,7 @@
}
},
{
- "id": 994,
+ "id": 1001,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -20951,7 +21246,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 672,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L672"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L672"
}
],
"type": {
@@ -20960,14 +21255,14 @@
{
"type": "reflection",
"declaration": {
- "id": 995,
+ "id": 1002,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 996,
+ "id": 1003,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -20977,7 +21272,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 674,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L674"
}
],
"type": {
@@ -20986,7 +21281,7 @@
}
},
{
- "id": 999,
+ "id": 1006,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -20998,20 +21293,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 682,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L682"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1000,
+ "id": 1007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1002,
+ "id": 1009,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -21031,7 +21326,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 687,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L687"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L687"
}
],
"type": {
@@ -21040,7 +21335,7 @@
}
},
{
- "id": 1003,
+ "id": 1010,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -21052,7 +21347,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 689,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L689"
}
],
"type": {
@@ -21109,7 +21404,7 @@
}
},
{
- "id": 1001,
+ "id": 1008,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -21129,7 +21424,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 684,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L684"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L684"
}
],
"type": {
@@ -21141,7 +21436,7 @@
"groups": [
{
"title": "Properties",
- "children": [1002, 1003, 1001]
+ "children": [1009, 1010, 1008]
}
],
"sources": [
@@ -21149,14 +21444,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 682,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L682"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682"
}
]
}
}
},
{
- "id": 998,
+ "id": 1005,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -21176,7 +21471,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 680,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L680"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L680"
}
],
"type": {
@@ -21185,7 +21480,7 @@
}
},
{
- "id": 997,
+ "id": 1004,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -21213,12 +21508,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 677,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L677"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"type": {
"type": "reference",
- "target": 993,
+ "target": 1000,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -21227,7 +21522,7 @@
"groups": [
{
"title": "Properties",
- "children": [996, 999, 998, 997]
+ "children": [1003, 1006, 1005, 1004]
}
],
"sources": [
@@ -21235,7 +21530,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 673,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L673"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L673"
}
]
}
@@ -21243,14 +21538,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1004,
+ "id": 1011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1005,
+ "id": 1012,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -21260,7 +21555,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 695,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L695"
}
],
"type": {
@@ -21269,7 +21564,7 @@
}
},
{
- "id": 1006,
+ "id": 1013,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -21311,7 +21606,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 698,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L698"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L698"
}
],
"type": {
@@ -21320,7 +21615,7 @@
}
},
{
- "id": 1008,
+ "id": 1015,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -21332,20 +21627,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 703,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L703"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1009,
+ "id": 1016,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1010,
+ "id": 1017,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -21365,7 +21660,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 705,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L705"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L705"
}
],
"type": {
@@ -21377,7 +21672,7 @@
"groups": [
{
"title": "Properties",
- "children": [1010]
+ "children": [1017]
}
],
"sources": [
@@ -21385,14 +21680,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 703,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L703"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703"
}
]
}
}
},
{
- "id": 1007,
+ "id": 1014,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -21410,7 +21705,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 701,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L701"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L701"
}
],
"type": {
@@ -21427,7 +21722,7 @@
"groups": [
{
"title": "Properties",
- "children": [1005, 1006, 1008, 1007]
+ "children": [1012, 1013, 1015, 1014]
}
],
"sources": [
@@ -21435,7 +21730,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 694,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L694"
}
]
}
@@ -21444,7 +21739,7 @@
}
},
{
- "id": 828,
+ "id": 835,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -21468,7 +21763,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1149
+ "target": 1156
},
{
"kind": "text",
@@ -21482,7 +21777,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1260
+ "target": 1267
},
{
"kind": "text",
@@ -21510,31 +21805,31 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 329,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L329"
}
],
"typeParameters": [
{
- "id": 836,
+ "id": 843,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 827,
+ "target": 834,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 827,
+ "target": 834,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 837,
+ "id": 844,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -21573,14 +21868,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 829,
+ "id": 836,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 834,
+ "id": 841,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -21590,7 +21885,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 349,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L349"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L349"
}
],
"type": {
@@ -21599,7 +21894,7 @@
}
},
{
- "id": 832,
+ "id": 839,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -21633,19 +21928,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 342,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L342"
}
],
"type": {
"type": "reference",
- "target": 836,
+ "target": 843,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 831,
+ "id": 838,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -21665,7 +21960,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 337,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L337"
}
],
"type": {
@@ -21674,7 +21969,7 @@
}
},
{
- "id": 830,
+ "id": 837,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -21692,7 +21987,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 334,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L334"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L334"
}
],
"type": {
@@ -21701,7 +21996,7 @@
}
},
{
- "id": 833,
+ "id": 840,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -21747,19 +22042,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 347,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L347"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L347"
}
],
"type": {
"type": "reference",
- "target": 837,
+ "target": 844,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 835,
+ "id": 842,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -21769,7 +22064,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 350,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L350"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L350"
}
],
"type": {
@@ -21781,7 +22076,7 @@
"groups": [
{
"title": "Properties",
- "children": [834, 832, 831, 830, 833, 835]
+ "children": [841, 839, 838, 837, 840, 842]
}
],
"sources": [
@@ -21789,14 +22084,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 332,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L332"
}
]
}
}
},
{
- "id": 827,
+ "id": 834,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -21830,7 +22125,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 313,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L313"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L313"
}
],
"type": {
@@ -21855,7 +22150,7 @@
}
},
{
- "id": 1079,
+ "id": 1086,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -21865,20 +22160,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 838,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L838"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1080,
+ "id": 1087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1082,
+ "id": 1089,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -21896,7 +22191,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 841,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L841"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L841"
}
],
"type": {
@@ -21905,7 +22200,7 @@
}
},
{
- "id": 1083,
+ "id": 1090,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -21923,7 +22218,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 845,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L845"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L845"
}
],
"type": {
@@ -21932,7 +22227,7 @@
}
},
{
- "id": 1084,
+ "id": 1091,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -21944,7 +22239,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 846,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L846"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L846"
}
],
"type": {
@@ -21956,7 +22251,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -21970,7 +22265,7 @@
}
},
{
- "id": 1081,
+ "id": 1088,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -21980,7 +22275,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 839,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L839"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L839"
}
],
"type": {
@@ -22001,7 +22296,7 @@
"groups": [
{
"title": "Properties",
- "children": [1082, 1083, 1084, 1081]
+ "children": [1089, 1090, 1091, 1088]
}
],
"sources": [
@@ -22009,14 +22304,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 838,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L838"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838"
}
]
}
}
},
{
- "id": 1069,
+ "id": 1076,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22026,20 +22321,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 824,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L824"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1070,
+ "id": 1077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1072,
+ "id": 1079,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22057,7 +22352,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 827,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L827"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L827"
}
],
"type": {
@@ -22066,7 +22361,7 @@
}
},
{
- "id": 1073,
+ "id": 1080,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22078,7 +22373,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 828,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L828"
}
],
"type": {
@@ -22090,7 +22385,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -22113,7 +22408,7 @@
}
},
{
- "id": 1071,
+ "id": 1078,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22123,7 +22418,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 825,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L825"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L825"
}
],
"type": {
@@ -22144,7 +22439,7 @@
"groups": [
{
"title": "Properties",
- "children": [1072, 1073, 1071]
+ "children": [1079, 1080, 1078]
}
],
"sources": [
@@ -22152,14 +22447,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 824,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L824"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824"
}
]
}
}
},
{
- "id": 1088,
+ "id": 1095,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22169,7 +22464,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 860,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L860"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L860"
}
],
"type": {
@@ -22177,25 +22472,25 @@
"types": [
{
"type": "reference",
- "target": 1063,
+ "target": 1070,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1069,
+ "target": 1076,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1074,
+ "target": 1081,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1079,
+ "target": 1086,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -22203,7 +22498,7 @@
}
},
{
- "id": 1093,
+ "id": 1100,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -22221,20 +22516,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 872,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L872"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1094,
+ "id": 1101,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1095,
+ "id": 1102,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -22252,7 +22547,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 877,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L877"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L877"
}
],
"type": {
@@ -22261,7 +22556,7 @@
}
},
{
- "id": 1096,
+ "id": 1103,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -22279,7 +22574,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 882,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L882"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L882"
}
],
"type": {
@@ -22288,7 +22583,7 @@
}
},
{
- "id": 1097,
+ "id": 1104,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -22306,7 +22601,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 886,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L886"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L886"
}
],
"type": {
@@ -22315,7 +22610,7 @@
}
},
{
- "id": 1098,
+ "id": 1105,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -22333,7 +22628,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 888,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L888"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L888"
}
],
"type": {
@@ -22342,7 +22637,7 @@
}
},
{
- "id": 1099,
+ "id": 1106,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -22360,12 +22655,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 890,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L890"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L890"
}
],
"type": {
"type": "reference",
- "target": 1100,
+ "target": 1107,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -22374,7 +22669,7 @@
"groups": [
{
"title": "Properties",
- "children": [1095, 1096, 1097, 1098, 1099]
+ "children": [1102, 1103, 1104, 1105, 1106]
}
],
"sources": [
@@ -22382,14 +22677,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 872,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L872"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872"
}
]
}
}
},
{
- "id": 1089,
+ "id": 1096,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -22399,24 +22694,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 866,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L866"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1090,
+ "id": 1097,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1091,
+ "id": 1098,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -22426,18 +22721,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 867,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L867"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L867"
}
],
"type": {
"type": "reference",
- "target": 1093,
+ "target": 1100,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1092,
+ "id": 1099,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -22447,12 +22742,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 868,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L868"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L868"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -22461,7 +22756,7 @@
"groups": [
{
"title": "Properties",
- "children": [1091, 1092]
+ "children": [1098, 1099]
}
],
"sources": [
@@ -22469,7 +22764,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 866,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L866"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866"
}
]
}
@@ -22480,7 +22775,7 @@
}
},
{
- "id": 1100,
+ "id": 1107,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -22490,7 +22785,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 893,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L893"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L893"
}
],
"type": {
@@ -22524,7 +22819,7 @@
}
},
{
- "id": 1074,
+ "id": 1081,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22534,20 +22829,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 831,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L831"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1075,
+ "id": 1082,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1077,
+ "id": 1084,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22565,7 +22860,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 834,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L834"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L834"
}
],
"type": {
@@ -22574,7 +22869,7 @@
}
},
{
- "id": 1078,
+ "id": 1085,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22586,7 +22881,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 835,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L835"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L835"
}
],
"type": {
@@ -22598,7 +22893,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -22612,7 +22907,7 @@
}
},
{
- "id": 1076,
+ "id": 1083,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22622,7 +22917,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 832,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L832"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L832"
}
],
"type": {
@@ -22634,7 +22929,7 @@
"groups": [
{
"title": "Properties",
- "children": [1077, 1078, 1076]
+ "children": [1084, 1085, 1083]
}
],
"sources": [
@@ -22642,14 +22937,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 831,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L831"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831"
}
]
}
}
},
{
- "id": 1063,
+ "id": 1070,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22659,20 +22954,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 817,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1064,
+ "id": 1071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1066,
+ "id": 1073,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22682,7 +22977,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 819,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L819"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L819"
}
],
"type": {
@@ -22691,7 +22986,7 @@
}
},
{
- "id": 1068,
+ "id": 1075,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22703,7 +22998,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 821,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L821"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L821"
}
],
"type": {
@@ -22715,7 +23010,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -22738,7 +23033,7 @@
}
},
{
- "id": 1067,
+ "id": 1074,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -22748,7 +23043,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 820,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L820"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L820"
}
],
"type": {
@@ -22757,7 +23052,7 @@
}
},
{
- "id": 1065,
+ "id": 1072,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22767,7 +23062,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 818,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L818"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L818"
}
],
"type": {
@@ -22779,7 +23074,7 @@
"groups": [
{
"title": "Properties",
- "children": [1066, 1068, 1067, 1065]
+ "children": [1073, 1075, 1074, 1072]
}
],
"sources": [
@@ -22787,14 +23082,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 817,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817"
}
]
}
}
},
{
- "id": 709,
+ "id": 716,
"name": "GoTrueClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -22804,20 +23099,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 70,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 710,
+ "id": 717,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 718,
+ "id": 725,
"name": "autoRefreshToken",
"variant": "declaration",
"kind": 1024,
@@ -22829,7 +23124,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L80"
}
],
"type": {
@@ -22838,7 +23133,7 @@
}
},
{
- "id": 724,
+ "id": 731,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -22850,7 +23145,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -22863,7 +23158,7 @@
{
"type": "reflection",
"declaration": {
- "id": 725,
+ "id": 732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -22873,19 +23168,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 98,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98"
}
],
"signatures": [
{
- "id": 726,
+ "id": 733,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 727,
+ "id": 734,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -22896,7 +23191,7 @@
}
},
{
- "id": 728,
+ "id": 735,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -22924,7 +23219,7 @@
}
},
{
- "id": 717,
+ "id": 724,
"name": "detectSessionInUrl",
"variant": "declaration",
"kind": 1024,
@@ -22936,7 +23231,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -22945,7 +23240,7 @@
}
},
{
- "id": 722,
+ "id": 729,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -22957,7 +23252,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -22971,7 +23266,7 @@
}
},
{
- "id": 723,
+ "id": 730,
"name": "flowType",
"variant": "declaration",
"kind": 1024,
@@ -22983,18 +23278,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L96"
}
],
"type": {
"type": "reference",
- "target": 937,
+ "target": 944,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
},
{
- "id": 730,
+ "id": 737,
"name": "hasCustomAuthorizationHeader",
"variant": "declaration",
"kind": 1024,
@@ -23015,7 +23310,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L109"
}
],
"type": {
@@ -23024,7 +23319,7 @@
}
},
{
- "id": 712,
+ "id": 719,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -23036,13 +23331,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 713,
+ "id": 720,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -23052,12 +23347,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"indexSignatures": [
{
- "id": 714,
+ "id": 721,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -23067,12 +23362,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"parameters": [
{
- "id": 715,
+ "id": 722,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -23093,7 +23388,7 @@
}
},
{
- "id": 729,
+ "id": 736,
"name": "lock",
"variant": "declaration",
"kind": 1024,
@@ -23114,18 +23409,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L104"
}
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 707,
"name": "LockFunc",
"package": "@supabase/auth-js"
}
},
{
- "id": 719,
+ "id": 726,
"name": "persistSession",
"variant": "declaration",
"kind": 1024,
@@ -23137,7 +23432,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L82"
}
],
"type": {
@@ -23146,7 +23441,7 @@
}
},
{
- "id": 720,
+ "id": 727,
"name": "storage",
"variant": "declaration",
"kind": 1024,
@@ -23158,18 +23453,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L84"
}
],
"type": {
"type": "reference",
- "target": 1285,
+ "target": 1292,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
},
{
- "id": 716,
+ "id": 723,
"name": "storageKey",
"variant": "declaration",
"kind": 1024,
@@ -23181,7 +23476,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L76"
}
],
"type": {
@@ -23190,7 +23485,7 @@
}
},
{
- "id": 731,
+ "id": 738,
"name": "throwOnError",
"variant": "declaration",
"kind": 1024,
@@ -23210,7 +23505,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L114"
}
],
"type": {
@@ -23219,7 +23514,7 @@
}
},
{
- "id": 711,
+ "id": 718,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -23231,7 +23526,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -23240,7 +23535,7 @@
}
},
{
- "id": 721,
+ "id": 728,
"name": "userStorage",
"variant": "declaration",
"kind": 1024,
@@ -23301,12 +23596,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L92"
}
],
"type": {
"type": "reference",
- "target": 1285,
+ "target": 1292,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -23315,7 +23610,7 @@
"groups": [
{
"title": "Properties",
- "children": [718, 724, 717, 722, 723, 730, 712, 729, 719, 720, 716, 731, 711, 721]
+ "children": [725, 731, 724, 729, 730, 737, 719, 736, 726, 727, 723, 738, 718, 728]
}
],
"sources": [
@@ -23323,14 +23618,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 70,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70"
}
]
}
}
},
{
- "id": 1288,
+ "id": 1295,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -23340,20 +23635,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1323,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1323"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1289,
+ "id": 1296,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1290,
+ "id": 1297,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -23363,7 +23658,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1323,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1323"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323"
}
],
"type": {
@@ -23371,7 +23666,7 @@
"types": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -23386,7 +23681,7 @@
"groups": [
{
"title": "Properties",
- "children": [1290]
+ "children": [1297]
}
],
"sources": [
@@ -23394,14 +23689,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1323,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1323"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323"
}
]
}
}
},
{
- "id": 1312,
+ "id": 1319,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -23411,20 +23706,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1446,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1313,
+ "id": 1320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1314,
+ "id": 1321,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -23434,7 +23729,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1447,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1447"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1447"
}
],
"type": {
@@ -23456,7 +23751,7 @@
}
},
{
- "id": 1315,
+ "id": 1322,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -23466,7 +23761,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1448,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1448"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1448"
}
],
"type": {
@@ -23475,7 +23770,7 @@
}
},
{
- "id": 1316,
+ "id": 1323,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -23485,7 +23780,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1449"
}
],
"type": {
@@ -23497,7 +23792,7 @@
"groups": [
{
"title": "Properties",
- "children": [1314, 1315, 1316]
+ "children": [1321, 1322, 1323]
}
],
"sources": [
@@ -23505,14 +23800,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1446,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446"
}
]
}
}
},
{
- "id": 700,
+ "id": 707,
"name": "LockFunc",
"variant": "declaration",
"kind": 2097152,
@@ -23539,13 +23834,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 701,
+ "id": 708,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -23555,19 +23850,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"signatures": [
{
- "id": 702,
+ "id": 709,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"typeParameters": [
{
- "id": 708,
+ "id": 715,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -23576,7 +23871,7 @@
],
"parameters": [
{
- "id": 703,
+ "id": 710,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -23595,7 +23890,7 @@
}
},
{
- "id": 704,
+ "id": 711,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -23622,7 +23917,7 @@
}
},
{
- "id": 705,
+ "id": 712,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -23638,7 +23933,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 706,
+ "id": 713,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -23648,12 +23943,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"signatures": [
{
- "id": 707,
+ "id": 714,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -23667,7 +23962,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 708,
+ "target": 715,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -23691,7 +23986,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 708,
+ "target": 715,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -23706,7 +24001,7 @@
}
},
{
- "id": 1119,
+ "id": 1126,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -23716,7 +24011,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1012,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1012"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1012"
}
],
"type": {
@@ -23730,7 +24025,7 @@
}
},
{
- "id": 1118,
+ "id": 1125,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -23740,7 +24035,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 999,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L999"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L999"
}
],
"type": {
@@ -23748,19 +24043,19 @@
"types": [
{
"type": "reference",
- "target": 1115,
+ "target": 1122,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1116,
+ "target": 1123,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1117,
+ "target": 1124,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -23768,7 +24063,7 @@
}
},
{
- "id": 1116,
+ "id": 1123,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -23778,12 +24073,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 976,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L976"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L976"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -23814,7 +24109,7 @@
}
},
{
- "id": 1115,
+ "id": 1122,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -23824,12 +24119,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 969,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L969"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L969"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "reference",
@@ -23846,7 +24141,7 @@
}
},
{
- "id": 1117,
+ "id": 1124,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -23877,12 +24172,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 995,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L995"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L995"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -23913,7 +24208,7 @@
}
},
{
- "id": 1101,
+ "id": 1108,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -23923,7 +24218,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 901,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L901"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L901"
}
],
"type": {
@@ -23931,19 +24226,19 @@
"types": [
{
"type": "reference",
- "target": 1306,
+ "target": 1313,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1307,
+ "target": 1314,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1308,
+ "target": 1315,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -23951,7 +24246,7 @@
}
},
{
- "id": 1307,
+ "id": 1314,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -23961,12 +24256,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1373,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1373"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1373"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24003,7 +24298,7 @@
}
},
{
- "id": 1306,
+ "id": 1313,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -24013,12 +24308,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1367,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1367"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24055,7 +24350,7 @@
}
},
{
- "id": 1308,
+ "id": 1315,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -24086,12 +24381,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1386,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1386"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24128,7 +24423,7 @@
}
},
{
- "id": 1114,
+ "id": 1121,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -24138,7 +24433,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 967,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L967"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L967"
}
],
"type": {
@@ -24163,7 +24458,7 @@
}
},
{
- "id": 1102,
+ "id": 1109,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -24173,20 +24468,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 903,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1103,
+ "id": 1110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1104,
+ "id": 1111,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -24204,7 +24499,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 905,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L905"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L905"
}
],
"type": {
@@ -24216,7 +24511,7 @@
"groups": [
{
"title": "Properties",
- "children": [1104]
+ "children": [1111]
}
],
"sources": [
@@ -24224,14 +24519,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 903,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903"
}
]
}
}
},
{
- "id": 1113,
+ "id": 1120,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -24241,7 +24536,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 959,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L959"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L959"
}
],
"type": {
@@ -24249,19 +24544,19 @@
"types": [
{
"type": "reference",
- "target": 1105,
+ "target": 1112,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1106,
+ "target": 1113,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1111,
+ "target": 1118,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -24269,7 +24564,7 @@
}
},
{
- "id": 1106,
+ "id": 1113,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -24279,12 +24574,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 924,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L924"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L924"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24315,7 +24610,7 @@
}
},
{
- "id": 1105,
+ "id": 1112,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -24325,12 +24620,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 920,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L920"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L920"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24361,7 +24656,7 @@
}
},
{
- "id": 1107,
+ "id": 1114,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -24379,12 +24674,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 946,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L946"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946"
}
],
"typeParameters": [
{
- "id": 1110,
+ "id": 1117,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -24428,14 +24723,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1108,
+ "id": 1115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1109,
+ "id": 1116,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -24445,7 +24740,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 947,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L947"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947"
}
],
"type": {
@@ -24469,7 +24764,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1110,
+ "target": 1117,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -24485,7 +24780,7 @@
"groups": [
{
"title": "Properties",
- "children": [1109]
+ "children": [1116]
}
],
"sources": [
@@ -24493,14 +24788,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 946,
"character": 98,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L946"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946"
}
]
}
}
},
{
- "id": 1111,
+ "id": 1118,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -24531,12 +24826,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 956,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L956"
}
],
"typeParameters": [
{
- "id": 1112,
+ "id": 1119,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -24579,7 +24874,7 @@
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24595,11 +24890,11 @@
},
{
"type": "reference",
- "target": 1107,
+ "target": 1114,
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1119,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -24616,7 +24911,7 @@
}
},
{
- "id": 1032,
+ "id": 1039,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -24626,7 +24921,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 758,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L758"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L758"
}
],
"type": {
@@ -24644,7 +24939,7 @@
}
},
{
- "id": 1427,
+ "id": 1434,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -24662,21 +24957,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1676,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1676"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1428,
+ "id": 1435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1429,
- "name": "client_id",
+ "id": 1436,
+ "name": "id",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -24693,7 +24988,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1678,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1678"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1678"
}
],
"type": {
@@ -24702,8 +24997,8 @@
}
},
{
- "id": 1430,
- "name": "client_name",
+ "id": 1439,
+ "name": "logo_uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -24711,16 +25006,16 @@
"summary": [
{
"kind": "text",
- "text": "Human-readable name of the OAuth client"
+ "text": "URI of the OAuth client's logo"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1680,
+ "line": 1684,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1680"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1684"
}
],
"type": {
@@ -24729,8 +25024,8 @@
}
},
{
- "id": 1431,
- "name": "client_uri",
+ "id": 1437,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -24738,16 +25033,16 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's website"
+ "text": "Human-readable name of the OAuth client"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1682,
+ "line": 1680,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1682"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1680"
}
],
"type": {
@@ -24756,8 +25051,8 @@
}
},
{
- "id": 1432,
- "name": "logo_uri",
+ "id": 1438,
+ "name": "uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -24765,16 +25060,16 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's logo"
+ "text": "URI of the OAuth client's website"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1684,
+ "line": 1682,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1684"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1682"
}
],
"type": {
@@ -24786,7 +25081,7 @@
"groups": [
{
"title": "Properties",
- "children": [1429, 1430, 1431, 1432]
+ "children": [1436, 1439, 1437, 1438]
}
],
"sources": [
@@ -24794,14 +25089,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1676,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1676"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676"
}
]
}
}
},
{
- "id": 1433,
+ "id": 1440,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -24819,20 +25114,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1691,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1691"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1434,
+ "id": 1441,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1435,
+ "id": 1442,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -24850,7 +25145,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1693,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1693"
}
],
"type": {
@@ -24859,7 +25154,7 @@
}
},
{
- "id": 1437,
+ "id": 1444,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -24877,18 +25172,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1697,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1697"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1697"
}
],
"type": {
"type": "reference",
- "target": 1427,
+ "target": 1434,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1436,
+ "id": 1443,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -24908,7 +25203,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1695,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1695"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1695"
}
],
"type": {
@@ -24917,7 +25212,7 @@
}
},
{
- "id": 1442,
+ "id": 1449,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -24935,7 +25230,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1706,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1706"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1706"
}
],
"type": {
@@ -24944,7 +25239,7 @@
}
},
{
- "id": 1438,
+ "id": 1445,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -24962,20 +25257,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1699,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1699"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1439,
+ "id": 1446,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1441,
+ "id": 1448,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -24993,7 +25288,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1703,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1703"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1703"
}
],
"type": {
@@ -25002,7 +25297,7 @@
}
},
{
- "id": 1440,
+ "id": 1447,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -25020,7 +25315,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1701,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1701"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1701"
}
],
"type": {
@@ -25032,7 +25327,7 @@
"groups": [
{
"title": "Properties",
- "children": [1441, 1440]
+ "children": [1448, 1447]
}
],
"sources": [
@@ -25040,7 +25335,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1699,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1699"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699"
}
]
}
@@ -25050,7 +25345,7 @@
"groups": [
{
"title": "Properties",
- "children": [1435, 1437, 1436, 1442, 1438]
+ "children": [1442, 1444, 1443, 1449, 1445]
}
],
"sources": [
@@ -25058,14 +25353,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1691,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1691"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691"
}
]
}
}
},
{
- "id": 1360,
+ "id": 1367,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -25083,20 +25378,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1530,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1361,
+ "id": 1368,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1362,
+ "id": 1369,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -25114,7 +25409,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1532"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1532"
}
],
"type": {
@@ -25123,7 +25418,7 @@
}
},
{
- "id": 1363,
+ "id": 1370,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -25141,7 +25436,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1534,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1534"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1534"
}
],
"type": {
@@ -25150,7 +25445,7 @@
}
},
{
- "id": 1364,
+ "id": 1371,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -25170,7 +25465,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1536"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1536"
}
],
"type": {
@@ -25179,7 +25474,7 @@
}
},
{
- "id": 1365,
+ "id": 1372,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -25197,18 +25492,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1538"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1538"
}
],
"type": {
"type": "reference",
- "target": 1358,
+ "target": 1365,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1368,
+ "id": 1375,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -25228,7 +25523,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1544,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1544"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1544"
}
],
"type": {
@@ -25237,7 +25532,7 @@
}
},
{
- "id": 1374,
+ "id": 1381,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -25255,7 +25550,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1556,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1556"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1556"
}
],
"type": {
@@ -25264,7 +25559,7 @@
}
},
{
- "id": 1371,
+ "id": 1378,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -25282,21 +25577,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1550,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1550"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1356,
+ "target": 1363,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1369,
+ "id": 1376,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -25316,7 +25611,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1546,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1546"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1546"
}
],
"type": {
@@ -25325,7 +25620,7 @@
}
},
{
- "id": 1370,
+ "id": 1377,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -25343,7 +25638,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1548,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1548"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1548"
}
],
"type": {
@@ -25355,7 +25650,7 @@
}
},
{
- "id": 1367,
+ "id": 1374,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -25373,18 +25668,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1542,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1542"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1542"
}
],
"type": {
"type": "reference",
- "target": 1359,
+ "target": 1366,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1372,
+ "id": 1379,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -25402,21 +25697,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1552,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1552"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1357,
+ "target": 1364,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1373,
+ "id": 1380,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -25436,7 +25731,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1554,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1554"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1554"
}
],
"type": {
@@ -25445,7 +25740,7 @@
}
},
{
- "id": 1366,
+ "id": 1373,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -25463,7 +25758,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1540"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1540"
}
],
"type": {
@@ -25472,7 +25767,7 @@
}
},
{
- "id": 1375,
+ "id": 1382,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -25490,7 +25785,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1558,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1558"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1558"
}
],
"type": {
@@ -25503,7 +25798,7 @@
{
"title": "Properties",
"children": [
- 1362, 1363, 1364, 1365, 1368, 1374, 1371, 1369, 1370, 1367, 1372, 1373, 1366, 1375
+ 1369, 1370, 1371, 1372, 1375, 1381, 1378, 1376, 1377, 1374, 1379, 1380, 1373, 1382
]
}
],
@@ -25512,14 +25807,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1530,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530"
}
]
}
}
},
{
- "id": 1356,
+ "id": 1363,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -25537,7 +25832,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1506,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1506"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1506"
}
],
"type": {
@@ -25555,7 +25850,7 @@
}
},
{
- "id": 1392,
+ "id": 1399,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -25573,7 +25868,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1608,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1608"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1608"
}
],
"type": {
@@ -25582,14 +25877,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1393,
+ "id": 1400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1394,
+ "id": 1401,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -25599,7 +25894,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
],
"type": {
@@ -25608,14 +25903,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1395,
+ "id": 1402,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1397,
+ "id": 1404,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -25625,7 +25920,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
],
"type": {
@@ -25634,7 +25929,7 @@
}
},
{
- "id": 1396,
+ "id": 1403,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -25644,14 +25939,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1360,
+ "target": 1367,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -25661,7 +25956,7 @@
"groups": [
{
"title": "Properties",
- "children": [1397, 1396]
+ "children": [1404, 1403]
}
],
"sources": [
@@ -25669,14 +25964,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
]
}
},
{
"type": "reference",
- "target": 1292,
+ "target": 1299,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -25684,7 +25979,7 @@
}
},
{
- "id": 1398,
+ "id": 1405,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -25694,7 +25989,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1611,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1611"
}
],
"type": {
@@ -25706,7 +26001,7 @@
"groups": [
{
"title": "Properties",
- "children": [1394, 1398]
+ "children": [1401, 1405]
}
],
"sources": [
@@ -25714,7 +26009,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1609,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1609"
}
]
}
@@ -25722,14 +26017,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1399,
+ "id": 1406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1400,
+ "id": 1407,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -25739,20 +26034,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1614,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1401,
+ "id": 1408,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1402,
+ "id": 1409,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -25762,7 +26057,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1614,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614"
}
],
"type": {
@@ -25773,7 +26068,7 @@
"groups": [
{
"title": "Properties",
- "children": [1402]
+ "children": [1409]
}
],
"sources": [
@@ -25781,14 +26076,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1614,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614"
}
]
}
}
},
{
- "id": 1403,
+ "id": 1410,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -25798,12 +26093,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1615,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1615"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1615"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -25812,7 +26107,7 @@
"groups": [
{
"title": "Properties",
- "children": [1400, 1403]
+ "children": [1407, 1410]
}
],
"sources": [
@@ -25820,7 +26115,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1613,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1613"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1613"
}
]
}
@@ -25829,7 +26124,7 @@
}
},
{
- "id": 1359,
+ "id": 1366,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -25847,7 +26142,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1524,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1524"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1524"
}
],
"type": {
@@ -25865,7 +26160,7 @@
}
},
{
- "id": 1391,
+ "id": 1398,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -25883,16 +26178,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1602,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1602"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1602"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1360,
+ "target": 1367,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -25902,7 +26197,7 @@
}
},
{
- "id": 1357,
+ "id": 1364,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -25920,7 +26215,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1512,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1512"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1512"
}
],
"type": {
@@ -25929,7 +26224,7 @@
}
},
{
- "id": 1358,
+ "id": 1365,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -25947,7 +26242,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1518,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1518"
}
],
"type": {
@@ -25965,7 +26260,142 @@
}
},
{
- "id": 782,
+ "id": 1454,
+ "name": "OAuthGrant",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An OAuth grant representing a user's authorization of an OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1728,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1728"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1455,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1456,
+ "name": "client",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client information"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1730,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1730"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1434,
+ "name": "OAuthAuthorizationClient",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1458,
+ "name": "granted_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the grant was created (ISO 8601 date-time)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1734,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1734"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1457,
+ "name": "scopes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of scopes granted to this client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1732,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1732"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1456, 1458, 1457]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1728,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1728"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 789,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -25975,7 +26405,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 195,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L195"
}
],
"type": {
@@ -25984,14 +26414,14 @@
{
"type": "reflection",
"declaration": {
- "id": 783,
+ "id": 790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 784,
+ "id": 791,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26001,20 +26431,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 785,
+ "id": 792,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 786,
+ "id": 793,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -26024,18 +26454,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L198"
}
],
"type": {
"type": "reference",
- "target": 697,
+ "target": 704,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 787,
+ "id": 794,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -26045,7 +26475,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L199"
}
],
"type": {
@@ -26057,7 +26487,7 @@
"groups": [
{
"title": "Properties",
- "children": [786, 787]
+ "children": [793, 794]
}
],
"sources": [
@@ -26065,14 +26495,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 197,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197"
}
]
}
}
},
{
- "id": 788,
+ "id": 795,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26082,7 +26512,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 201,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L201"
}
],
"type": {
@@ -26094,7 +26524,7 @@
"groups": [
{
"title": "Properties",
- "children": [784, 788]
+ "children": [791, 795]
}
],
"sources": [
@@ -26102,7 +26532,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 196,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -26110,14 +26540,14 @@
{
"type": "reflection",
"declaration": {
- "id": 789,
+ "id": 796,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 790,
+ "id": 797,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26127,20 +26557,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 791,
+ "id": 798,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 792,
+ "id": 799,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -26150,18 +26580,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 205,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L205"
}
],
"type": {
"type": "reference",
- "target": 697,
+ "target": 704,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 793,
+ "id": 800,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -26171,7 +26601,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L206"
}
],
"type": {
@@ -26183,7 +26613,7 @@
"groups": [
{
"title": "Properties",
- "children": [792, 793]
+ "children": [799, 800]
}
],
"sources": [
@@ -26191,14 +26621,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 204,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204"
}
]
}
}
},
{
- "id": 794,
+ "id": 801,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26208,12 +26638,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 208,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L208"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -26222,7 +26652,7 @@
"groups": [
{
"title": "Properties",
- "children": [790, 794]
+ "children": [797, 801]
}
],
"sources": [
@@ -26230,7 +26660,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 203,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L203"
}
]
}
@@ -26239,7 +26669,7 @@
}
},
{
- "id": 1299,
+ "id": 1306,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -26249,20 +26679,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1334,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1334"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1300,
+ "id": 1307,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1301,
+ "id": 1308,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -26282,7 +26712,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1336,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1336"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1336"
}
],
"type": {
@@ -26291,7 +26721,7 @@
}
},
{
- "id": 1302,
+ "id": 1309,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -26311,7 +26741,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1338,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1338"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1338"
}
],
"type": {
@@ -26323,7 +26753,7 @@
"groups": [
{
"title": "Properties",
- "children": [1301, 1302]
+ "children": [1308, 1309]
}
],
"sources": [
@@ -26331,14 +26761,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1334,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1334"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334"
}
]
}
}
},
{
- "id": 1292,
+ "id": 1299,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -26348,20 +26778,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1327,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1293,
+ "id": 1300,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1295,
+ "id": 1302,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -26371,7 +26801,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1330"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1330"
}
],
"type": {
@@ -26380,7 +26810,7 @@
}
},
{
- "id": 1294,
+ "id": 1301,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -26390,7 +26820,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1329"
}
],
"type": {
@@ -26408,7 +26838,7 @@
}
},
{
- "id": 1296,
+ "id": 1303,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -26418,7 +26848,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1331"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1331"
}
],
"type": {
@@ -26430,7 +26860,7 @@
"groups": [
{
"title": "Properties",
- "children": [1295, 1294, 1296]
+ "children": [1302, 1301, 1303]
}
],
"sources": [
@@ -26438,12 +26868,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1327,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327"
}
],
"indexSignatures": [
{
- "id": 1297,
+ "id": 1304,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -26453,12 +26883,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1328"
}
],
"parameters": [
{
- "id": 1298,
+ "id": 1305,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -26479,7 +26909,7 @@
}
},
{
- "id": 737,
+ "id": 744,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -26497,12 +26927,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
],
"typeParameters": [
{
- "id": 738,
+ "id": 745,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -26513,7 +26943,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -26529,7 +26959,7 @@
},
"trueType": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -26542,7 +26972,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -26562,7 +26992,7 @@
},
"objectType": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -26572,7 +27002,7 @@
}
},
{
- "id": 697,
+ "id": 704,
"name": "Provider",
"variant": "declaration",
"kind": 2097152,
@@ -26590,7 +27020,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -26688,7 +27118,7 @@
}
},
{
- "id": 742,
+ "id": 749,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -26706,19 +27136,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 141,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L141"
}
],
"typeParameters": [
{
- "id": 749,
+ "id": 756,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 750,
+ "id": 757,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -26734,7 +27164,7 @@
},
"default": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -26746,14 +27176,14 @@
{
"type": "reflection",
"declaration": {
- "id": 743,
+ "id": 750,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 744,
+ "id": 751,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26763,19 +27193,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reference",
- "target": 749,
+ "target": 756,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 745,
+ "id": 752,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26785,7 +27215,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -26797,7 +27227,7 @@
"groups": [
{
"title": "Properties",
- "children": [744, 745]
+ "children": [751, 752]
}
],
"sources": [
@@ -26805,7 +27235,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 142,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L142"
}
]
}
@@ -26813,14 +27243,14 @@
{
"type": "reflection",
"declaration": {
- "id": 746,
+ "id": 753,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 747,
+ "id": 754,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26830,7 +27260,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -26839,7 +27269,7 @@
}
},
{
- "id": 748,
+ "id": 755,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26849,7 +27279,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
@@ -26865,19 +27295,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 750,
+ "target": 757,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -26888,7 +27318,7 @@
"groups": [
{
"title": "Properties",
- "children": [747, 748]
+ "children": [754, 755]
}
],
"sources": [
@@ -26896,7 +27326,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 146,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L146"
}
]
}
@@ -26905,7 +27335,7 @@
}
},
{
- "id": 751,
+ "id": 758,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -26928,12 +27358,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 155,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L155"
}
],
"typeParameters": [
{
- "id": 758,
+ "id": 765,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -26946,14 +27376,14 @@
{
"type": "reflection",
"declaration": {
- "id": 752,
+ "id": 759,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 753,
+ "id": 760,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26963,19 +27393,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 156,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156"
}
],
"type": {
"type": "reference",
- "target": 758,
+ "target": 765,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 754,
+ "id": 761,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26985,7 +27415,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 156,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156"
}
],
"type": {
@@ -26997,7 +27427,7 @@
"groups": [
{
"title": "Properties",
- "children": [753, 754]
+ "children": [760, 761]
}
],
"sources": [
@@ -27005,7 +27435,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 156,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156"
}
]
}
@@ -27013,14 +27443,14 @@
{
"type": "reflection",
"declaration": {
- "id": 755,
+ "id": 762,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 756,
+ "id": 763,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -27030,14 +27460,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 158,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L158"
}
],
"type": {
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 758,
+ "target": 765,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27054,7 +27484,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 758,
+ "target": 765,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27072,7 +27502,7 @@
}
},
{
- "id": 757,
+ "id": 764,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -27082,12 +27512,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 159,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L159"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -27096,7 +27526,7 @@
"groups": [
{
"title": "Properties",
- "children": [756, 757]
+ "children": [763, 764]
}
],
"sources": [
@@ -27104,7 +27534,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 157,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L157"
}
]
}
@@ -27113,7 +27543,7 @@
}
},
{
- "id": 1317,
+ "id": 1324,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -27123,20 +27553,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1452,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1452"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1318,
+ "id": 1325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1325,
+ "id": 1332,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -27146,18 +27576,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459"
}
],
"type": {
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1321,
+ "id": 1328,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -27167,7 +27597,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455"
}
],
"type": {
@@ -27188,7 +27618,7 @@
}
},
{
- "id": 1322,
+ "id": 1329,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -27198,7 +27628,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1456"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456"
}
],
"type": {
@@ -27207,7 +27637,7 @@
}
},
{
- "id": 1323,
+ "id": 1330,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -27217,7 +27647,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457"
}
],
"type": {
@@ -27226,7 +27656,7 @@
}
},
{
- "id": 1319,
+ "id": 1326,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -27236,7 +27666,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1453"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453"
}
],
"type": {
@@ -27245,7 +27675,7 @@
}
},
{
- "id": 1324,
+ "id": 1331,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -27255,7 +27685,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1458,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1458"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458"
}
],
"type": {
@@ -27264,7 +27694,7 @@
}
},
{
- "id": 1326,
+ "id": 1333,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -27274,7 +27704,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1460,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460"
}
],
"type": {
@@ -27283,7 +27713,7 @@
}
},
{
- "id": 1320,
+ "id": 1327,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -27293,7 +27723,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454"
}
],
"type": {
@@ -27305,7 +27735,7 @@
"groups": [
{
"title": "Properties",
- "children": [1325, 1321, 1322, 1323, 1319, 1324, 1326, 1320]
+ "children": [1332, 1328, 1329, 1330, 1326, 1331, 1333, 1327]
}
],
"sources": [
@@ -27313,7 +27743,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1452,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1452"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452"
}
]
}
@@ -27321,13 +27751,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1327,
+ "target": 1334,
"name": "JwtPayload"
}
]
},
{
- "id": 1034,
+ "id": 1041,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -27337,7 +27767,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 761,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L761"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L761"
}
],
"type": {
@@ -27346,14 +27776,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1035,
+ "id": 1042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1037,
+ "id": 1044,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -27363,7 +27793,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 764,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L764"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L764"
}
],
"type": {
@@ -27372,7 +27802,7 @@
}
},
{
- "id": 1038,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -27384,20 +27814,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 765,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L765"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1039,
+ "id": 1046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1041,
+ "id": 1048,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -27417,7 +27847,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 769,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L769"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L769"
}
],
"type": {
@@ -27426,7 +27856,7 @@
}
},
{
- "id": 1040,
+ "id": 1047,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -27446,7 +27876,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 767,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L767"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L767"
}
],
"type": {
@@ -27458,7 +27888,7 @@
"groups": [
{
"title": "Properties",
- "children": [1041, 1040]
+ "children": [1048, 1047]
}
],
"sources": [
@@ -27466,14 +27896,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 765,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L765"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765"
}
]
}
}
},
{
- "id": 1036,
+ "id": 1043,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -27483,7 +27913,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 763,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L763"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L763"
}
],
"type": {
@@ -27495,7 +27925,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1033,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -27521,7 +27951,7 @@
"groups": [
{
"title": "Properties",
- "children": [1037, 1038, 1036]
+ "children": [1044, 1045, 1043]
}
],
"sources": [
@@ -27529,7 +27959,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 762,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L762"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L762"
}
]
}
@@ -27537,14 +27967,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1042,
+ "id": 1049,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1045,
+ "id": 1052,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -27556,20 +27986,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 775,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L775"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1046,
+ "id": 1053,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1054,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -27589,7 +28019,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 777,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L777"
}
],
"type": {
@@ -27601,7 +28031,7 @@
"groups": [
{
"title": "Properties",
- "children": [1047]
+ "children": [1054]
}
],
"sources": [
@@ -27609,14 +28039,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 775,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L775"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775"
}
]
}
}
},
{
- "id": 1044,
+ "id": 1051,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -27626,7 +28056,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 774,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L774"
}
],
"type": {
@@ -27635,7 +28065,7 @@
}
},
{
- "id": 1043,
+ "id": 1050,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -27645,7 +28075,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 773,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L773"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L773"
}
],
"type": {
@@ -27657,7 +28087,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1032,
+ "target": 1039,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -27683,7 +28113,7 @@
"groups": [
{
"title": "Properties",
- "children": [1045, 1044, 1043]
+ "children": [1052, 1051, 1050]
}
],
"sources": [
@@ -27691,7 +28121,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 772,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L772"
}
]
}
@@ -27700,7 +28130,7 @@
}
},
{
- "id": 901,
+ "id": 908,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -27710,20 +28140,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 521,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 902,
+ "id": 909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 903,
+ "id": 910,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -27735,20 +28165,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 904,
+ "id": 911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 906,
+ "id": 913,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -27768,7 +28198,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 530,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L530"
}
],
"type": {
@@ -27777,7 +28207,7 @@
}
},
{
- "id": 905,
+ "id": 912,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -27813,7 +28243,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 528,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L528"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L528"
}
],
"type": {
@@ -27825,7 +28255,7 @@
"groups": [
{
"title": "Properties",
- "children": [906, 905]
+ "children": [913, 912]
}
],
"sources": [
@@ -27833,7 +28263,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 522,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522"
}
]
}
@@ -27843,7 +28273,7 @@
"groups": [
{
"title": "Properties",
- "children": [903]
+ "children": [910]
}
],
"sources": [
@@ -27851,14 +28281,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 521,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521"
}
]
}
}
},
{
- "id": 950,
+ "id": 957,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -27868,20 +28298,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 609,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 951,
+ "id": 958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 955,
+ "id": 962,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -27909,7 +28339,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 615,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L615"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L615"
}
],
"type": {
@@ -27918,7 +28348,7 @@
}
},
{
- "id": 956,
+ "id": 963,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -27946,7 +28376,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 617,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L617"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L617"
}
],
"type": {
@@ -27955,7 +28385,7 @@
}
},
{
- "id": 957,
+ "id": 964,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -27967,20 +28397,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 618,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 958,
+ "id": 965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 959,
+ "id": 966,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -28000,7 +28430,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 620,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L620"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L620"
}
],
"type": {
@@ -28012,7 +28442,7 @@
"groups": [
{
"title": "Properties",
- "children": [959]
+ "children": [966]
}
],
"sources": [
@@ -28020,14 +28450,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 618,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618"
}
]
}
}
},
{
- "id": 952,
+ "id": 959,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -28101,7 +28531,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 611,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611"
}
],
"type": {
@@ -28137,7 +28567,7 @@
{
"type": "reflection",
"declaration": {
- "id": 953,
+ "id": 960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -28147,7 +28577,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 611,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611"
}
]
}
@@ -28158,7 +28588,7 @@
}
},
{
- "id": 954,
+ "id": 961,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -28208,7 +28638,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 613,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L613"
}
],
"type": {
@@ -28220,7 +28650,7 @@
"groups": [
{
"title": "Properties",
- "children": [955, 956, 957, 952, 954]
+ "children": [962, 963, 964, 959, 961]
}
],
"sources": [
@@ -28228,14 +28658,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 609,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609"
}
]
}
}
},
{
- "id": 938,
+ "id": 945,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -28245,20 +28675,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 594,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 939,
+ "id": 946,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 941,
+ "id": 948,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28270,20 +28700,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 597,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 942,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 945,
+ "id": 952,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -28303,13 +28733,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 603,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 946,
+ "id": 953,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -28319,12 +28749,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 603,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603"
}
],
"indexSignatures": [
{
- "id": 947,
+ "id": 954,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -28334,12 +28764,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 603,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603"
}
],
"parameters": [
{
- "id": 948,
+ "id": 955,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -28360,7 +28790,7 @@
}
},
{
- "id": 943,
+ "id": 950,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -28380,7 +28810,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 599,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L599"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L599"
}
],
"type": {
@@ -28389,7 +28819,7 @@
}
},
{
- "id": 944,
+ "id": 951,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -28409,7 +28839,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 601,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L601"
}
],
"type": {
@@ -28418,7 +28848,7 @@
}
},
{
- "id": 949,
+ "id": 956,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -28438,7 +28868,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 605,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L605"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L605"
}
],
"type": {
@@ -28450,7 +28880,7 @@
"groups": [
{
"title": "Properties",
- "children": [945, 943, 944, 949]
+ "children": [952, 950, 951, 956]
}
],
"sources": [
@@ -28458,14 +28888,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 597,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597"
}
]
}
}
},
{
- "id": 940,
+ "id": 947,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -28483,12 +28913,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 596,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L596"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L596"
}
],
"type": {
"type": "reference",
- "target": 697,
+ "target": 704,
"name": "Provider",
"package": "@supabase/auth-js"
}
@@ -28497,7 +28927,7 @@
"groups": [
{
"title": "Properties",
- "children": [941, 940]
+ "children": [948, 947]
}
],
"sources": [
@@ -28505,14 +28935,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 594,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594"
}
]
}
}
},
{
- "id": 915,
+ "id": 922,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -28522,7 +28952,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 549,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549"
}
],
"type": {
@@ -28540,14 +28970,14 @@
{
"type": "reflection",
"declaration": {
- "id": 916,
+ "id": 923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 917,
+ "id": 924,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28559,20 +28989,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 550,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 918,
+ "id": 925,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 919,
+ "id": 926,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -28584,7 +29014,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 551,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L551"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L551"
}
],
"type": {
@@ -28596,7 +29026,7 @@
"groups": [
{
"title": "Properties",
- "children": [919]
+ "children": [926]
}
],
"sources": [
@@ -28604,7 +29034,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 550,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550"
}
]
}
@@ -28614,7 +29044,7 @@
"groups": [
{
"title": "Properties",
- "children": [917]
+ "children": [924]
}
],
"sources": [
@@ -28622,7 +29052,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 549,
"character": 70,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549"
}
]
}
@@ -28631,7 +29061,7 @@
}
},
{
- "id": 920,
+ "id": 927,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -28641,7 +29071,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 555,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L555"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L555"
}
],
"type": {
@@ -28650,14 +29080,14 @@
{
"type": "reflection",
"declaration": {
- "id": 921,
+ "id": 928,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 922,
+ "id": 929,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -28675,7 +29105,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 558,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L558"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L558"
}
],
"type": {
@@ -28684,7 +29114,7 @@
}
},
{
- "id": 923,
+ "id": 930,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28696,214 +29126,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 559,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L559"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 924,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 928,
- "name": "captchaToken",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Verification token received when the user completes the captcha on the site."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 571,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L571"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 927,
- "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/src/lib/types.ts",
- "line": 569,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L569"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "object"
- }
- },
- {
- "id": 925,
- "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/src/lib/types.ts",
- "line": 561,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L561"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 926,
- "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/src/lib/types.ts",
- "line": 563,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L563"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [928, 927, 925, 926]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 559,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L559"
- }
- ]
- }
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [922, 923]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 556,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L556"
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 929,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 931,
- "name": "options",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 577,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L577"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 932,
+ "id": 931,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -28928,9 +29157,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 587,
+ "line": 571,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L571"
}
],
"type": {
@@ -28938,44 +29167,6 @@
"name": "string"
}
},
- {
- "id": 936,
- "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/src/lib/types.ts",
- "line": 589,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L589"
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "sms"
- },
- {
- "type": "literal",
- "value": "whatsapp"
- }
- ]
- }
- },
{
"id": 934,
"name": "data",
@@ -29011,9 +29202,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 585,
+ "line": 569,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L585"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L569"
}
],
"type": {
@@ -29021,6 +29212,35 @@
"name": "object"
}
},
+ {
+ "id": 932,
+ "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/src/lib/types.ts",
+ "line": 561,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L561"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
{
"id": 933,
"name": "shouldCreateUser",
@@ -29037,12 +29257,222 @@
}
]
},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 563,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L563"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [935, 934, 932, 933]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 559,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L559"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [929, 930]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 556,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L556"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 936,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 938,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 577,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L577"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 939,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 942,
+ "name": "captchaToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verification token received when the user completes the captcha on the site."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 587,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L587"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 943,
+ "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/src/lib/types.ts",
+ "line": 589,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L589"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ }
+ },
+ {
+ "id": 941,
+ "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/src/lib/types.ts",
+ "line": 585,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L585"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 940,
+ "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/src/lib/types.ts",
"line": 579,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L579"
}
],
"type": {
@@ -29054,7 +29484,7 @@
"groups": [
{
"title": "Properties",
- "children": [935, 936, 934, 933]
+ "children": [942, 943, 941, 940]
}
],
"sources": [
@@ -29062,14 +29492,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 577,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L577"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L577"
}
]
}
}
},
{
- "id": 930,
+ "id": 937,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -29087,7 +29517,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 576,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L576"
}
],
"type": {
@@ -29099,7 +29529,7 @@
"groups": [
{
"title": "Properties",
- "children": [931, 930]
+ "children": [938, 937]
}
],
"sources": [
@@ -29107,7 +29537,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 574,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L574"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L574"
}
]
}
@@ -29116,7 +29546,7 @@
}
},
{
- "id": 1048,
+ "id": 1055,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -29126,7 +29556,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 781,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L781"
}
],
"type": {
@@ -29135,14 +29565,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1049,
+ "id": 1056,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1051,
+ "id": 1058,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29154,20 +29584,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 786,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1052,
+ "id": 1059,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1054,
+ "id": 1061,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29187,7 +29617,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 790,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L790"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L790"
}
],
"type": {
@@ -29196,7 +29626,7 @@
}
},
{
- "id": 1053,
+ "id": 1060,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29216,7 +29646,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 788,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L788"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L788"
}
],
"type": {
@@ -29225,7 +29655,7 @@
}
},
{
- "id": 1055,
+ "id": 1062,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -29245,7 +29675,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 796,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L796"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L796"
}
],
"type": {
@@ -29257,7 +29687,7 @@
"groups": [
{
"title": "Properties",
- "children": [1054, 1053, 1055]
+ "children": [1061, 1060, 1062]
}
],
"sources": [
@@ -29265,14 +29695,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 786,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786"
}
]
}
}
},
{
- "id": 1050,
+ "id": 1057,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -29290,7 +29720,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 784,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L784"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L784"
}
],
"type": {
@@ -29302,7 +29732,7 @@
"groups": [
{
"title": "Properties",
- "children": [1051, 1050]
+ "children": [1058, 1057]
}
],
"sources": [
@@ -29310,7 +29740,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 782,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L782"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L782"
}
]
}
@@ -29318,14 +29748,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1056,
+ "id": 1063,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1057,
+ "id": 1064,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -29343,7 +29773,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 801,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L801"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L801"
}
],
"type": {
@@ -29352,7 +29782,7 @@
}
},
{
- "id": 1058,
+ "id": 1065,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29364,20 +29794,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 803,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1059,
+ "id": 1066,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1061,
+ "id": 1068,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29397,7 +29827,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 807,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L807"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L807"
}
],
"type": {
@@ -29406,7 +29836,7 @@
}
},
{
- "id": 1060,
+ "id": 1067,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29426,7 +29856,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 805,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L805"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L805"
}
],
"type": {
@@ -29435,7 +29865,7 @@
}
},
{
- "id": 1062,
+ "id": 1069,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -29455,7 +29885,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 813,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L813"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L813"
}
],
"type": {
@@ -29467,7 +29897,7 @@
"groups": [
{
"title": "Properties",
- "children": [1061, 1060, 1062]
+ "children": [1068, 1067, 1069]
}
],
"sources": [
@@ -29475,7 +29905,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 803,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803"
}
]
}
@@ -29485,7 +29915,7 @@
"groups": [
{
"title": "Properties",
- "children": [1057, 1058]
+ "children": [1064, 1065]
}
],
"sources": [
@@ -29493,7 +29923,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 799,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L799"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L799"
}
]
}
@@ -29502,7 +29932,7 @@
}
},
{
- "id": 1303,
+ "id": 1310,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -29512,20 +29942,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1341,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1341"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1304,
+ "id": 1311,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1305,
+ "id": 1312,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -29545,7 +29975,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1352,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1352"
}
],
"type": {
@@ -29570,7 +30000,7 @@
"groups": [
{
"title": "Properties",
- "children": [1305]
+ "children": [1312]
}
],
"sources": [
@@ -29578,14 +30008,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1341"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341"
}
]
}
}
},
{
- "id": 1355,
+ "id": 1362,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -29595,7 +30025,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1500,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1500"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1500"
}
],
"type": {
@@ -29608,7 +30038,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1354,
+ "target": 1361,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -29616,7 +30046,7 @@
}
},
{
- "id": 907,
+ "id": 914,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -29626,12 +30056,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 534,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L534"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L534"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -29648,14 +30078,14 @@
{
"type": "reflection",
"declaration": {
- "id": 908,
+ "id": 915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 909,
+ "id": 916,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29667,20 +30097,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 536,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 910,
+ "id": 917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 913,
+ "id": 920,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29692,7 +30122,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 539,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L539"
}
],
"type": {
@@ -29701,7 +30131,7 @@
}
},
{
- "id": 914,
+ "id": 921,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -29713,7 +30143,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 540,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L540"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L540"
}
],
"type": {
@@ -29731,7 +30161,7 @@
}
},
{
- "id": 912,
+ "id": 919,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29743,7 +30173,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 538,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L538"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L538"
}
],
"type": {
@@ -29752,7 +30182,7 @@
}
},
{
- "id": 911,
+ "id": 918,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29764,7 +30194,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 537,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L537"
}
],
"type": {
@@ -29776,7 +30206,7 @@
"groups": [
{
"title": "Properties",
- "children": [913, 914, 912, 911]
+ "children": [920, 921, 919, 918]
}
],
"sources": [
@@ -29784,7 +30214,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 536,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536"
}
]
}
@@ -29794,7 +30224,7 @@
"groups": [
{
"title": "Properties",
- "children": [909]
+ "children": [916]
}
],
"sources": [
@@ -29802,7 +30232,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 535,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L535"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L535"
}
]
}
@@ -29815,7 +30245,7 @@
}
},
{
- "id": 960,
+ "id": 967,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -29825,20 +30255,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 624,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 961,
+ "id": 968,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 966,
+ "id": 973,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -29850,7 +30280,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 626,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626"
}
],
"type": {
@@ -29859,14 +30289,14 @@
{
"type": "reflection",
"declaration": {
- "id": 967,
+ "id": 974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 968,
+ "id": 975,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -29876,13 +30306,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 627,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L627"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 969,
+ "id": 976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -29892,12 +30322,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 627,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L627"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627"
}
],
"signatures": [
{
- "id": 970,
+ "id": 977,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -29915,7 +30345,7 @@
"groups": [
{
"title": "Properties",
- "children": [968]
+ "children": [975]
}
],
"sources": [
@@ -29923,7 +30353,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 626,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626"
}
]
}
@@ -29936,7 +30366,7 @@
}
},
{
- "id": 962,
+ "id": 969,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -29948,13 +30378,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 625,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 963,
+ "id": 970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -29964,19 +30394,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 625,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625"
}
],
"signatures": [
{
- "id": 964,
+ "id": 971,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 965,
+ "id": 972,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -30040,7 +30470,7 @@
}
},
{
- "id": 971,
+ "id": 978,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -30052,13 +30482,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 630,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L630"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 972,
+ "id": 979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -30068,19 +30498,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 630,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L630"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630"
}
],
"signatures": [
{
- "id": 973,
+ "id": 980,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 974,
+ "id": 981,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -30096,7 +30526,7 @@
}
},
{
- "id": 975,
+ "id": 982,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -30156,7 +30586,7 @@
"groups": [
{
"title": "Properties",
- "children": [966, 962, 971]
+ "children": [973, 969, 978]
}
],
"sources": [
@@ -30164,14 +30594,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 624,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624"
}
]
}
}
},
{
- "id": 976,
+ "id": 983,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -30181,7 +30611,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 633,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L633"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L633"
}
],
"type": {
@@ -30190,14 +30620,14 @@
{
"type": "reflection",
"declaration": {
- "id": 977,
+ "id": 984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 978,
+ "id": 985,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -30207,7 +30637,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 635,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L635"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L635"
}
],
"type": {
@@ -30216,7 +30646,7 @@
}
},
{
- "id": 981,
+ "id": 988,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30228,20 +30658,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 643,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 982,
+ "id": 989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 984,
+ "id": 991,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30261,7 +30691,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 648,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L648"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L648"
}
],
"type": {
@@ -30270,7 +30700,7 @@
}
},
{
- "id": 985,
+ "id": 992,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -30282,7 +30712,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 650,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L650"
}
],
"type": {
@@ -30343,7 +30773,7 @@
}
},
{
- "id": 983,
+ "id": 990,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -30363,7 +30793,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 645,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L645"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L645"
}
],
"type": {
@@ -30375,7 +30805,7 @@
"groups": [
{
"title": "Properties",
- "children": [984, 985, 983]
+ "children": [991, 992, 990]
}
],
"sources": [
@@ -30383,14 +30813,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 643,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643"
}
]
}
}
},
{
- "id": 980,
+ "id": 987,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -30410,7 +30840,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 641,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L641"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L641"
}
],
"type": {
@@ -30419,7 +30849,7 @@
}
},
{
- "id": 979,
+ "id": 986,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -30447,12 +30877,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 638,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L638"
}
],
"type": {
"type": "reference",
- "target": 960,
+ "target": 967,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -30461,7 +30891,7 @@
"groups": [
{
"title": "Properties",
- "children": [978, 981, 980, 979]
+ "children": [985, 988, 987, 986]
}
],
"sources": [
@@ -30469,7 +30899,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 634,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L634"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L634"
}
]
}
@@ -30477,14 +30907,14 @@
{
"type": "reflection",
"declaration": {
- "id": 986,
+ "id": 993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 987,
+ "id": 994,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -30494,7 +30924,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 656,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L656"
}
],
"type": {
@@ -30503,7 +30933,7 @@
}
},
{
- "id": 988,
+ "id": 995,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -30545,7 +30975,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 659,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L659"
}
],
"type": {
@@ -30554,7 +30984,7 @@
}
},
{
- "id": 990,
+ "id": 997,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30566,20 +30996,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 664,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 991,
+ "id": 998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 992,
+ "id": 999,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30599,7 +31029,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 666,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L666"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L666"
}
],
"type": {
@@ -30611,7 +31041,7 @@
"groups": [
{
"title": "Properties",
- "children": [992]
+ "children": [999]
}
],
"sources": [
@@ -30619,14 +31049,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 664,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664"
}
]
}
}
},
{
- "id": 989,
+ "id": 996,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -30644,7 +31074,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 662,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L662"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L662"
}
],
"type": {
@@ -30661,7 +31091,7 @@
"groups": [
{
"title": "Properties",
- "children": [987, 988, 990, 989]
+ "children": [994, 995, 997, 996]
}
],
"sources": [
@@ -30669,7 +31099,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 655,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L655"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L655"
}
]
}
@@ -30678,7 +31108,7 @@
}
},
{
- "id": 795,
+ "id": 802,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -30688,24 +31118,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 211,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 796,
+ "id": 803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 797,
+ "id": 804,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -30731,7 +31161,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L219"
}
],
"type": {
@@ -30743,7 +31173,7 @@
"groups": [
{
"title": "Properties",
- "children": [797]
+ "children": [804]
}
],
"sources": [
@@ -30751,7 +31181,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 211,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211"
}
]
}
@@ -30762,7 +31192,7 @@
}
},
{
- "id": 739,
+ "id": 746,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -30780,19 +31210,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 136,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L136"
}
],
"typeParameters": [
{
- "id": 740,
+ "id": 747,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 741,
+ "id": 748,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -30802,7 +31232,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 740,
+ "target": 747,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -30819,14 +31249,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 747,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 741,
+ "target": 748,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -30837,7 +31267,7 @@
}
},
{
- "id": 1285,
+ "id": 1292,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -30847,7 +31277,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1310,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1310"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1310"
}
],
"type": {
@@ -30904,14 +31334,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1286,
+ "id": 1293,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1287,
+ "id": 1294,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -30939,7 +31369,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1320,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1320"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1320"
}
],
"type": {
@@ -30951,7 +31381,7 @@
"groups": [
{
"title": "Properties",
- "children": [1287]
+ "children": [1294]
}
],
"sources": [
@@ -30959,7 +31389,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1312,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1312"
}
]
}
@@ -30968,7 +31398,7 @@
}
},
{
- "id": 1384,
+ "id": 1391,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -30986,20 +31416,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1585,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1585"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1385,
+ "id": 1392,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1386,
+ "id": 1393,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -31019,7 +31449,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1587,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1587"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1587"
}
],
"type": {
@@ -31028,7 +31458,7 @@
}
},
{
- "id": 1387,
+ "id": 1394,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -31048,7 +31478,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1589,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1589"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1589"
}
],
"type": {
@@ -31057,7 +31487,7 @@
}
},
{
- "id": 1390,
+ "id": 1397,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -31077,21 +31507,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1595,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1595"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1595"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1356,
+ "target": 1363,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1388,
+ "id": 1395,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -31111,7 +31541,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1591,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1591"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1591"
}
],
"type": {
@@ -31120,7 +31550,7 @@
}
},
{
- "id": 1389,
+ "id": 1396,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -31140,7 +31570,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1593,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1593"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1593"
}
],
"type": {
@@ -31155,7 +31585,7 @@
"groups": [
{
"title": "Properties",
- "children": [1386, 1387, 1390, 1388, 1389]
+ "children": [1393, 1394, 1397, 1395, 1396]
}
],
"sources": [
@@ -31163,14 +31593,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1585,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1585"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585"
}
]
}
}
},
{
- "id": 798,
+ "id": 805,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -31180,24 +31610,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 222,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 799,
+ "id": 806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 800,
+ "id": 807,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -31207,12 +31637,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 223,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L223"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -31221,7 +31651,7 @@
"groups": [
{
"title": "Properties",
- "children": [800]
+ "children": [807]
}
],
"sources": [
@@ -31229,7 +31659,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 222,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222"
}
]
}
@@ -31240,7 +31670,7 @@
}
},
{
- "id": 1012,
+ "id": 1019,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -31250,7 +31680,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 711,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L711"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L711"
}
],
"type": {
@@ -31258,19 +31688,19 @@
"types": [
{
"type": "reference",
- "target": 1013,
+ "target": 1020,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1021,
+ "target": 1028,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1029,
+ "target": 1036,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -31278,7 +31708,7 @@
}
},
{
- "id": 733,
+ "id": 740,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -31288,20 +31718,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 734,
+ "id": 741,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 736,
+ "id": 743,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -31311,7 +31741,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L122"
}
],
"type": {
@@ -31320,7 +31750,7 @@
}
},
{
- "id": 735,
+ "id": 742,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -31330,14 +31760,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L121"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 732,
+ "target": 739,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -31347,7 +31777,7 @@
"groups": [
{
"title": "Properties",
- "children": [736, 735]
+ "children": [743, 742]
}
],
"sources": [
@@ -31355,14 +31785,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120"
}
]
}
}
},
{
- "id": 732,
+ "id": 739,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -31372,7 +31802,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 119,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L119"
}
],
"type": {
@@ -31397,7 +31827,7 @@
}
},
{
- "id": 1011,
+ "id": 1018,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -31407,7 +31837,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 709,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L709"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L709"
}
],
"type": {
@@ -31415,13 +31845,13 @@
"types": [
{
"type": "reference",
- "target": 976,
+ "target": 983,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 994,
+ "target": 1001,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -31429,7 +31859,7 @@
}
},
{
- "id": 671,
+ "id": 678,
"name": "AuthAdminApi",
"variant": "declaration",
"kind": 32,
@@ -31441,7 +31871,7 @@
"fileName": "packages/core/auth-js/src/AuthAdminApi.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/AuthAdminApi.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthAdminApi.ts#L3"
}
],
"type": {
@@ -31456,7 +31886,7 @@
"defaultValue": "GoTrueAdminApi"
},
{
- "id": 672,
+ "id": 679,
"name": "AuthClient",
"variant": "declaration",
"kind": 32,
@@ -31468,7 +31898,7 @@
"fileName": "packages/core/auth-js/src/AuthClient.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/AuthClient.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthClient.ts#L3"
}
],
"type": {
@@ -31483,7 +31913,7 @@
"defaultValue": "GoTrueClient"
},
{
- "id": 686,
+ "id": 693,
"name": "lockInternals",
"variant": "declaration",
"kind": 32,
@@ -31499,20 +31929,20 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 687,
+ "id": 694,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 688,
+ "id": 695,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -31526,7 +31956,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L10"
}
],
"type": {
@@ -31539,7 +31969,7 @@
"groups": [
{
"title": "Properties",
- "children": [688]
+ "children": [695]
}
],
"sources": [
@@ -31547,7 +31977,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6"
}
]
}
@@ -31555,7 +31985,7 @@
"defaultValue": "..."
},
{
- "id": 1354,
+ "id": 1361,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -31567,7 +31997,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1499,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1499"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1499"
}
],
"type": {
@@ -31594,7 +32024,7 @@
"defaultValue": "..."
},
{
- "id": 1466,
+ "id": 1488,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -31604,12 +32034,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"signatures": [
{
- "id": 1467,
+ "id": 1489,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -31619,12 +32049,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"parameters": [
{
- "id": 1468,
+ "id": 1490,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31641,7 +32071,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1491,
+ "target": 1513,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -31650,7 +32080,7 @@
]
},
{
- "id": 1463,
+ "id": 1485,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -31660,12 +32090,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"signatures": [
{
- "id": 1464,
+ "id": 1486,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -31675,12 +32105,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"parameters": [
{
- "id": 1465,
+ "id": 1487,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31697,7 +32127,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -31706,7 +32136,7 @@
]
},
{
- "id": 1472,
+ "id": 1494,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -31716,12 +32146,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"signatures": [
{
- "id": 1473,
+ "id": 1495,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -31731,12 +32161,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"parameters": [
{
- "id": 1474,
+ "id": 1496,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31753,7 +32183,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1548,
+ "target": 1570,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -31762,7 +32192,7 @@
]
},
{
- "id": 1475,
+ "id": 1497,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -31772,12 +32202,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 242,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242"
}
],
"signatures": [
{
- "id": 1476,
+ "id": 1498,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -31787,12 +32217,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 242,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242"
}
],
"parameters": [
{
- "id": 1477,
+ "id": 1499,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31809,7 +32239,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1602,
+ "target": 1624,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -31818,7 +32248,7 @@
]
},
{
- "id": 1469,
+ "id": 1491,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -31828,12 +32258,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"signatures": [
{
- "id": 1470,
+ "id": 1492,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -31843,12 +32273,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"parameters": [
{
- "id": 1471,
+ "id": 1493,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31865,7 +32295,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1523,
+ "target": 1545,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -31874,7 +32304,7 @@
]
},
{
- "id": 1478,
+ "id": 1500,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -31884,12 +32314,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"signatures": [
{
- "id": 1479,
+ "id": 1501,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -31899,12 +32329,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"parameters": [
{
- "id": 1480,
+ "id": 1502,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31921,7 +32351,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1612,
+ "target": 1634,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -31930,7 +32360,7 @@
]
},
{
- "id": 673,
+ "id": 680,
"name": "navigatorLock",
"variant": "declaration",
"kind": 64,
@@ -31940,12 +32370,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"signatures": [
{
- "id": 674,
+ "id": 681,
"name": "navigatorLock",
"variant": "signature",
"kind": 4096,
@@ -32016,12 +32446,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"typeParameters": [
{
- "id": 675,
+ "id": 682,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -32030,7 +32460,7 @@
],
"parameters": [
{
- "id": 676,
+ "id": 683,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -32049,7 +32479,7 @@
}
},
{
- "id": 677,
+ "id": 684,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -32076,7 +32506,7 @@
}
},
{
- "id": 678,
+ "id": 685,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -32092,7 +32522,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 679,
+ "id": 686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32102,12 +32532,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"signatures": [
{
- "id": 680,
+ "id": 687,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -32117,7 +32547,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"type": {
@@ -32129,7 +32559,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 675,
+ "target": 682,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32153,7 +32583,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 675,
+ "target": 682,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32166,7 +32596,7 @@
]
},
{
- "id": 689,
+ "id": 696,
"name": "processLock",
"variant": "declaration",
"kind": 64,
@@ -32176,12 +32606,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 214,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214"
}
],
"signatures": [
{
- "id": 690,
+ "id": 697,
"name": "processLock",
"variant": "signature",
"kind": 4096,
@@ -32219,12 +32649,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 214,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214"
}
],
"typeParameters": [
{
- "id": 691,
+ "id": 698,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -32233,7 +32663,7 @@
],
"parameters": [
{
- "id": 692,
+ "id": 699,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -32252,7 +32682,7 @@
}
},
{
- "id": 693,
+ "id": 700,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -32279,7 +32709,7 @@
}
},
{
- "id": 694,
+ "id": 701,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -32295,7 +32725,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 695,
+ "id": 702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32305,12 +32735,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217"
}
],
"signatures": [
{
- "id": 696,
+ "id": 703,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -32320,7 +32750,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217"
}
],
"type": {
@@ -32332,7 +32762,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 691,
+ "target": 698,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32356,7 +32786,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 691,
+ "target": 698,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32373,35 +32803,35 @@
{
"title": "Classes",
"children": [
- 1491, 1481, 1548, 1539, 1624, 1531, 1575, 1602, 1523, 1501, 1612, 1511, 1, 107, 681
+ 1513, 1503, 1570, 1561, 1646, 1553, 1597, 1624, 1545, 1523, 1634, 1533, 1, 107, 688
]
},
{
"title": "Interfaces",
"children": [
- 878, 812, 1447, 1085, 1278, 1404, 1148, 1347, 1327, 801, 891, 846, 838, 872, 815, 843, 1021,
- 1013, 1029
+ 885, 819, 1462, 1092, 1285, 1411, 1155, 1354, 1334, 808, 898, 853, 845, 879, 822, 850, 1028,
+ 1020, 1036
]
},
{
"title": "Type Aliases",
"children": [
- 810, 699, 698, 1142, 937, 1268, 1265, 1275, 1272, 1133, 1137, 1132, 1134, 1135, 1136, 1310,
- 1128, 1309, 1311, 1143, 1138, 1129, 1127, 1120, 1443, 1444, 768, 759, 763, 773, 777, 1291,
- 1376, 1033, 993, 994, 828, 827, 1079, 1069, 1088, 1093, 1089, 1100, 1074, 1063, 709, 1288,
- 1312, 700, 1119, 1118, 1116, 1115, 1117, 1101, 1307, 1306, 1308, 1114, 1102, 1113, 1106,
- 1105, 1107, 1111, 1032, 1427, 1433, 1360, 1356, 1392, 1359, 1391, 1357, 1358, 782, 1299,
- 1292, 737, 697, 742, 751, 1317, 1034, 901, 950, 938, 915, 920, 1048, 1303, 1355, 907, 960,
- 976, 795, 739, 1285, 1384, 798, 1012, 733, 732, 1011
+ 817, 706, 705, 1149, 944, 1275, 1272, 1282, 1279, 1140, 1144, 1139, 1141, 1142, 1143, 1317,
+ 1135, 1316, 1318, 1150, 1145, 1136, 1134, 1127, 1450, 1451, 1459, 1460, 775, 766, 770, 780,
+ 784, 1298, 1383, 1040, 1000, 1001, 835, 834, 1086, 1076, 1095, 1100, 1096, 1107, 1081, 1070,
+ 716, 1295, 1319, 707, 1126, 1125, 1123, 1122, 1124, 1108, 1314, 1313, 1315, 1121, 1109,
+ 1120, 1113, 1112, 1114, 1118, 1039, 1434, 1440, 1367, 1363, 1399, 1366, 1398, 1364, 1365,
+ 1454, 789, 1306, 1299, 744, 704, 749, 758, 1324, 1041, 908, 957, 945, 922, 927, 1055, 1310,
+ 1362, 914, 967, 983, 802, 746, 1292, 1391, 805, 1019, 740, 739, 1018
]
},
{
"title": "Variables",
- "children": [671, 672, 686, 1354]
+ "children": [678, 679, 693, 1361]
},
{
"title": "Functions",
- "children": [1466, 1463, 1472, 1475, 1469, 1478, 673, 689]
+ "children": [1488, 1485, 1494, 1497, 1491, 1500, 680, 696]
}
],
"packageName": "@supabase/auth-js",
@@ -33489,1045 +33919,1017 @@
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.stopAutoRefresh"
},
- "648": {
+ "655": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "649": {
+ "656": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "650": {
+ "657": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "jwt"
},
- "651": {
+ "658": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "652": {
+ "659": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "653": {
+ "660": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "654": {
+ "661": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.allowExpired"
},
- "655": {
+ "662": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.jwks"
},
- "656": {
+ "663": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "657": {
+ "664": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "658": {
+ "665": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "659": {
+ "666": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "660": {
+ "667": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "661": {
+ "668": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.claims"
},
- "662": {
+ "669": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.header"
},
- "663": {
+ "670": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.signature"
},
- "664": {
+ "671": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "665": {
+ "672": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "666": {
+ "673": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "667": {
+ "674": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "668": {
+ "675": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "669": {
+ "676": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "670": {
+ "677": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "671": {
+ "678": {
"sourceFileName": "src/AuthAdminApi.ts",
"qualifiedName": "AuthAdminApi"
},
- "672": {
+ "679": {
"sourceFileName": "src/AuthClient.ts",
"qualifiedName": "AuthClient"
},
- "673": {
+ "680": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "674": {
+ "681": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "675": {
+ "682": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "R"
},
- "676": {
+ "683": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "name"
},
- "677": {
+ "684": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "678": {
+ "685": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "fn"
},
- "679": {
+ "686": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "680": {
+ "687": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "681": {
+ "688": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "682": {
+ "689": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.__constructor"
},
- "683": {
+ "690": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "684": {
+ "691": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "message"
},
- "685": {
+ "692": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout"
},
- "686": {
+ "693": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "internals"
},
- "687": {
+ "694": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__object"
},
- "688": {
+ "695": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__object.debug"
},
- "689": {
+ "696": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "690": {
+ "697": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "691": {
+ "698": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "R"
},
- "692": {
+ "699": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "name"
},
- "693": {
+ "700": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "694": {
+ "701": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "fn"
},
- "695": {
+ "702": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "696": {
+ "703": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "697": {
+ "704": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Provider"
},
- "698": {
+ "705": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthChangeEventMFA"
},
- "699": {
+ "706": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthChangeEvent"
},
- "700": {
+ "707": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "LockFunc"
},
- "701": {
+ "708": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "702": {
+ "709": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "703": {
+ "710": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "name"
},
- "704": {
+ "711": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "acquireTimeout"
},
- "705": {
+ "712": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "fn"
},
- "706": {
+ "713": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "707": {
+ "714": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "708": {
+ "715": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "R"
},
- "709": {
+ "716": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueClientOptions"
},
- "710": {
+ "717": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "711": {
+ "718": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "712": {
+ "719": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.headers"
},
- "713": {
+ "720": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "714": {
+ "721": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "716": {
+ "723": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.storageKey"
},
- "717": {
+ "724": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.detectSessionInUrl"
},
- "718": {
+ "725": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.autoRefreshToken"
},
- "719": {
+ "726": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.persistSession"
},
- "720": {
+ "727": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.storage"
},
- "721": {
+ "728": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.userStorage"
},
- "722": {
+ "729": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.fetch"
},
- "723": {
+ "730": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.flowType"
},
- "724": {
+ "731": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.debug"
},
- "725": {
+ "732": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "726": {
+ "733": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "727": {
+ "734": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "message"
},
- "728": {
+ "735": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "args"
},
- "729": {
+ "736": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.lock"
},
- "730": {
+ "737": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.hasCustomAuthorizationHeader"
},
- "731": {
+ "738": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.throwOnError"
},
- "732": {
+ "739": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "WeakPasswordReasons"
},
- "733": {
+ "740": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "WeakPassword"
},
- "734": {
+ "741": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "735": {
+ "742": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.reasons"
},
- "736": {
+ "743": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.message"
},
- "737": {
+ "744": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Prettify"
},
- "738": {
+ "745": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "739": {
+ "746": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "StrictOmit"
},
- "740": {
+ "747": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "741": {
+ "748": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "K"
},
- "742": {
+ "749": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequestResult"
},
- "743": {
+ "750": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "744": {
+ "751": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "745": {
+ "752": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "746": {
+ "753": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "747": {
+ "754": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "748": {
+ "755": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "749": {
+ "756": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "750": {
+ "757": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "ErrorType"
},
- "751": {
+ "758": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequestResultSafeDestructure"
},
- "752": {
+ "759": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "753": {
+ "760": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "754": {
+ "761": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "755": {
+ "762": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "756": {
+ "763": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "757": {
+ "764": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "758": {
+ "765": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "759": {
+ "766": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthResponse"
},
- "760": {
+ "767": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "761": {
+ "768": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "762": {
+ "769": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "763": {
+ "770": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthResponsePassword"
},
- "764": {
+ "771": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "765": {
+ "772": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "766": {
+ "773": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "767": {
+ "774": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.weak_password"
},
- "768": {
+ "775": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthOtpResponse"
},
- "769": {
+ "776": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "770": {
+ "777": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "771": {
+ "778": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "772": {
+ "779": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.messageId"
},
- "773": {
+ "780": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthTokenResponse"
},
- "774": {
+ "781": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "775": {
+ "782": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "776": {
+ "783": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "777": {
+ "784": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthTokenResponsePassword"
},
- "778": {
+ "785": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "779": {
+ "786": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "780": {
+ "787": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "781": {
+ "788": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.weakPassword"
},
- "782": {
+ "789": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "OAuthResponse"
},
- "783": {
+ "790": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "784": {
+ "791": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "785": {
+ "792": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "786": {
+ "793": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "787": {
+ "794": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "788": {
+ "795": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "789": {
+ "796": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "790": {
+ "797": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "791": {
+ "798": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "792": {
+ "799": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "793": {
+ "800": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "794": {
+ "801": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "795": {
+ "802": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SSOResponse"
},
- "796": {
+ "803": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "797": {
+ "804": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "798": {
+ "805": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserResponse"
},
- "799": {
+ "806": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "800": {
+ "807": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "801": {
+ "808": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session"
},
- "802": {
+ "809": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.provider_token"
},
- "803": {
+ "810": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.provider_refresh_token"
},
- "804": {
+ "811": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.access_token"
},
- "805": {
+ "812": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.refresh_token"
},
- "806": {
+ "813": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.expires_in"
},
- "807": {
+ "814": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.expires_at"
},
- "808": {
+ "815": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.token_type"
},
- "809": {
+ "816": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.user"
},
- "810": {
+ "817": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMRMethod"
},
- "811": {
+ "818": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "812": {
+ "819": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry"
},
- "813": {
+ "820": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry.method"
},
- "814": {
+ "821": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry.timestamp"
},
- "815": {
+ "822": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity"
},
- "816": {
+ "823": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.id"
},
- "817": {
+ "824": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.user_id"
},
- "818": {
+ "825": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_data"
},
- "819": {
+ "826": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "820": {
+ "827": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "822": {
+ "829": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "823": {
+ "830": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "824": {
+ "831": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "825": {
+ "832": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "826": {
+ "833": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "827": {
+ "834": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "828": {
+ "835": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Factor"
},
- "829": {
+ "836": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "830": {
+ "837": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "831": {
+ "838": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "832": {
+ "839": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "833": {
+ "840": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "834": {
+ "841": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "835": {
+ "842": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "836": {
+ "843": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Type"
},
- "837": {
+ "844": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Status"
},
- "838": {
+ "845": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "839": {
+ "846": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "840": {
+ "847": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.providers"
},
- "841": {
+ "848": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "843": {
+ "850": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "844": {
+ "851": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata.__index"
},
- "846": {
+ "853": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User"
},
- "847": {
+ "854": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.id"
},
- "848": {
+ "855": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.app_metadata"
},
- "849": {
+ "856": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.user_metadata"
},
- "850": {
+ "857": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.aud"
},
- "851": {
+ "858": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.confirmation_sent_at"
},
- "852": {
+ "859": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.recovery_sent_at"
},
- "853": {
+ "860": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.email_change_sent_at"
},
- "854": {
+ "861": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.new_email"
},
- "855": {
+ "862": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.new_phone"
},
- "856": {
+ "863": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.invited_at"
},
- "857": {
+ "864": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.action_link"
},
- "858": {
+ "865": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.email"
},
- "859": {
+ "866": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.phone"
},
- "860": {
+ "867": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.created_at"
},
- "861": {
+ "868": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.confirmed_at"
},
- "862": {
+ "869": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.email_confirmed_at"
},
- "863": {
+ "870": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.phone_confirmed_at"
},
- "864": {
+ "871": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.last_sign_in_at"
},
- "865": {
+ "872": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.role"
},
- "866": {
+ "873": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.updated_at"
},
- "867": {
+ "874": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.identities"
},
- "868": {
+ "875": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.is_anonymous"
},
- "869": {
+ "876": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.is_sso_user"
},
- "870": {
+ "877": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.factors"
},
- "871": {
+ "878": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.deleted_at"
},
- "872": {
+ "879": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes"
},
- "873": {
+ "880": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.email"
},
- "874": {
+ "881": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.phone"
},
- "875": {
+ "882": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.password"
},
- "876": {
+ "883": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.nonce"
},
- "877": {
+ "884": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.data"
},
- "878": {
+ "885": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes"
},
- "879": {
+ "886": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.user_metadata"
},
- "880": {
+ "887": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.app_metadata"
},
- "881": {
+ "888": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.email_confirm"
},
- "882": {
+ "889": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.phone_confirm"
},
- "883": {
+ "890": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.ban_duration"
},
- "884": {
+ "891": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.role"
},
- "885": {
+ "892": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.password_hash"
},
- "886": {
+ "893": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.id"
},
- "887": {
+ "894": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "nonce"
},
- "888": {
+ "895": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "phone"
},
- "889": {
+ "896": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "email"
},
- "890": {
+ "897": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "password"
},
- "891": {
+ "898": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription"
},
- "892": {
+ "899": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription.id"
},
- "893": {
+ "900": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription.callback"
},
- "894": {
+ "901": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "895": {
+ "902": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "896": {
+ "903": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "event"
},
- "897": {
+ "904": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "session"
},
- "898": {
+ "905": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription.unsubscribe"
},
- "899": {
+ "906": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "900": {
+ "907": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "901": {
+ "908": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignInAnonymouslyCredentials"
},
- "902": {
+ "909": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "903": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
- },
- "904": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
- },
- "905": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
- },
- "906": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
- },
- "907": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
- },
- "908": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
- },
- "909": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
- },
"910": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"911": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"912": {
"sourceFileName": "src/lib/types.ts",
@@ -34539,79 +34941,79 @@
},
"914": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"915": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type"
},
"916": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"917": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"918": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.emailRedirectTo"
},
"919": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"920": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"921": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.channel"
},
"922": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"923": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"924": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"925": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"926": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.captchaToken"
},
"927": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"928": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"929": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email"
},
"930": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.options"
},
"931": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"932": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.emailRedirectTo"
},
"933": {
"sourceFileName": "src/lib/types.ts",
@@ -34627,15 +35029,15 @@
},
"936": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.phone"
},
"938": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "__type.options"
},
"939": {
"sourceFileName": "src/lib/types.ts",
@@ -34643,27 +35045,27 @@
},
"940": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type.shouldCreateUser"
},
"941": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.data"
},
"942": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"943": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.channel"
},
"944": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "AuthFlowType"
},
"945": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"946": {
"sourceFileName": "src/lib/types.ts",
@@ -34671,23 +35073,27 @@
},
"947": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.provider"
+ },
+ "948": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.options"
},
"949": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.redirectTo"
},
"951": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.scopes"
},
"952": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type.queryParams"
},
"953": {
"sourceFileName": "src/lib/types.ts",
@@ -34695,19 +35101,15 @@
},
"954": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token"
- },
- "955": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type.__index"
},
"956": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"957": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"958": {
"sourceFileName": "src/lib/types.ts",
@@ -34715,47 +35117,47 @@
},
"959": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.provider"
},
"960": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type"
},
"961": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.token"
},
"962": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "__type.access_token"
},
"963": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.nonce"
},
"964": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"965": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"966": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.captchaToken"
},
"967": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWallet"
},
"968": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type"
},
"969": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"970": {
"sourceFileName": "src/lib/types.ts",
@@ -34763,27 +35165,27 @@
},
"971": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"972": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "inputs"
},
"973": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"974": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"975": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "__type.toBase58"
},
"976": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "__type"
},
"977": {
"sourceFileName": "src/lib/types.ts",
@@ -34791,259 +35193,259 @@
},
"978": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signMessage"
},
"979": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type"
},
"980": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type"
},
"981": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "message"
},
"982": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "encoding"
},
"983": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"984": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"985": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.chain"
},
"986": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.wallet"
},
"987": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.statement"
},
"988": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.options"
},
"989": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type"
},
"990": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.url"
},
"991": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"992": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.signInWithSolana"
},
"993": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type"
},
"994": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "__type.chain"
},
"995": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.message"
},
"996": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signature"
},
"997": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.options"
},
"998": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.captchaToken"
},
"1000": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWallet"
},
"1001": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"1002": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1003": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.chain"
},
"1004": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.wallet"
},
"1005": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.statement"
},
"1006": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.options"
},
"1007": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type"
},
"1008": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.url"
},
"1009": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1010": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.signInWithEthereum"
},
"1011": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type"
},
"1012": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "__type.chain"
},
"1013": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "__type.message"
},
"1014": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "__type.signature"
},
"1015": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "__type.options"
},
"1016": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "__type"
},
"1017": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "__type.captchaToken"
},
"1018": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Web3Credentials"
},
"1019": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "VerifyOtpParams"
},
"1020": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"1021": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"1022": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"1023": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"1024": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"1025": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "__type"
},
"1026": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.redirectTo"
},
"1027": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.captchaToken"
},
"1028": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"1029": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"1030": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"1031": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"1032": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"1033": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "__type"
},
"1034": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "__type.redirectTo"
},
"1035": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1036": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1037": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1038": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1039": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MobileOtpType"
},
"1040": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "EmailOtpType"
},
"1041": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "ResendParams"
},
"1042": {
"sourceFileName": "src/lib/types.ts",
@@ -35055,7 +35457,7 @@
},
"1044": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.email"
},
"1045": {
"sourceFileName": "src/lib/types.ts",
@@ -35067,11 +35469,11 @@
},
"1047": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1048": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type.captchaToken"
},
"1049": {
"sourceFileName": "src/lib/types.ts",
@@ -35079,19 +35481,19 @@
},
"1050": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "__type.type"
},
"1051": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"1052": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1053": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1054": {
"sourceFileName": "src/lib/types.ts",
@@ -35099,7 +35501,7 @@
},
"1055": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "SignInWithSSO"
},
"1056": {
"sourceFileName": "src/lib/types.ts",
@@ -35107,7 +35509,7 @@
},
"1057": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type.providerId"
},
"1058": {
"sourceFileName": "src/lib/types.ts",
@@ -35131,375 +35533,375 @@
},
"1063": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type"
},
"1064": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.domain"
},
"1065": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type.options"
},
"1066": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1067": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.redirectTo"
},
"1068": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.captchaToken"
},
"1069": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1070": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1071": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1072": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1073": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1074": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.password"
},
"1075": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1076": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1077": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1078": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1079": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.email"
},
"1080": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1081": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1082": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1083": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.type"
},
"1084": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1085": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.options"
},
"1086": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1087": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "__type"
},
"1088": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "__type.type"
},
"1089": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "__type.email"
},
"1090": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.newEmail"
},
"1091": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "__type.options"
},
"1092": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "GenerateLinkOptions"
},
"1093": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1094": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1095": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "GenerateLinkParams"
},
"1096": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "GenerateLinkResponse"
},
"1097": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type"
},
"1098": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.properties"
},
"1099": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.user"
},
"1100": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "GenerateLinkProperties"
},
"1101": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "__type"
},
"1102": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "__type.action_link"
},
"1103": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email_otp"
},
"1104": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "__type.hashed_token"
},
"1105": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type.redirect_to"
},
"1106": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "__type.verification_type"
},
"1107": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "GenerateLinkType"
},
"1108": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAEnrollParams"
},
"1109": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "MFAUnenrollParams"
},
"1110": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type"
},
"1111": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "__type.factorId"
},
"1112": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1113": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1114": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1115": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "__type"
},
"1116": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "__type.webauthn"
},
"1117": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "T"
},
"1118": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1119": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "T"
},
"1120": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAVerifyParams"
},
"1121": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFATOTPChannel"
},
"1122": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1123": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1124": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1125": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "MFAChallengeParams"
},
"1126": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1127": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1128": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "__type"
},
"1129": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "__type.access_token"
},
"1130": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.token_type"
},
"1131": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.expires_in"
},
"1132": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type.refresh_token"
},
"1133": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "__type.user"
},
"1134": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1135": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1136": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1137": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "__type"
},
"1138": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "__type.id"
},
"1139": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1140": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1141": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1142": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1143": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1144": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1145": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1146": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type"
},
"1147": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.all"
},
"1148": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "T"
},
"1149": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1150": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1151": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1152": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.currentLevel"
},
"1153": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type.nextLevel"
},
"1154": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1155": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "GoTrueMFAApi"
},
"1156": {
"sourceFileName": "src/lib/types.ts",
@@ -35507,91 +35909,91 @@
},
"1157": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1158": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1159": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1160": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1161": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "friendlyName"
},
"1162": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "issuer"
},
"1163": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1164": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1165": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1166": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1167": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1168": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "phone"
},
"1169": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1170": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1171": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1172": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorType"
},
"1173": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "friendlyName"
},
"1174": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1175": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "params"
},
"1176": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1177": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1178": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "params"
},
"1179": {
"sourceFileName": "src/lib/types.ts",
@@ -35599,15 +36001,15 @@
},
"1180": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "factorId"
},
"1181": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1182": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "data"
},
"1183": {
"sourceFileName": "src/lib/types.ts",
@@ -35615,11 +36017,11 @@
},
"1184": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type"
},
"1185": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "data"
},
"1186": {
"sourceFileName": "src/lib/types.ts",
@@ -35627,47 +36029,47 @@
},
"1187": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "id"
},
"1188": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "type"
},
"1189": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1190": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1191": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1192": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1193": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1194": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1195": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "channel"
},
"1196": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1197": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "data"
},
"1198": {
"sourceFileName": "src/lib/types.ts",
@@ -35675,11 +36077,11 @@
},
"1199": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type"
},
"1200": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "data"
},
"1201": {
"sourceFileName": "src/lib/types.ts",
@@ -35687,63 +36089,63 @@
},
"1202": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "id"
},
"1203": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "type"
},
"1204": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1205": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "error"
},
"1206": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1207": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1208": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1209": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "factorId"
},
"1210": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1211": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1212": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpId"
},
"1213": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type.rpOrigins"
},
"1214": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1215": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "data"
},
"1216": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "error"
},
"1217": {
"sourceFileName": "src/lib/types.ts",
@@ -35751,79 +36153,79 @@
},
"1218": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "data"
},
"1219": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1220": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "id"
},
"1221": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "type"
},
"1222": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1223": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "webauthn"
},
"1224": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1225": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.type"
},
"1226": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.credential_options"
},
"1227": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1228": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type.publicKey"
},
"1229": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "__type.type"
},
"1231": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "__type.credential_options"
},
"1232": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1233": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"1234": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "error"
},
"1235": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1236": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "params"
},
"1237": {
"sourceFileName": "src/lib/types.ts",
@@ -35831,143 +36233,143 @@
},
"1238": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1239": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1240": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1241": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1242": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1243": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1244": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1245": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1246": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1247": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1248": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "challengeId"
},
"1249": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1250": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1251": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1252": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "__type"
},
"1253": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "factorId"
},
"1254": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "challengeId"
},
"1255": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "webauthn"
},
"1256": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1257": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1258": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1259": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1260": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "params"
},
"1261": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1262": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1263": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "params"
},
"1264": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "__type"
},
"1265": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "factorId"
},
"1266": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "code"
},
"1267": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1268": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1269": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1270": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1271": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1272": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1273": {
"sourceFileName": "src/lib/types.ts",
@@ -35975,11 +36377,11 @@
},
"1274": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "__type.id"
},
"1275": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1276": {
"sourceFileName": "src/lib/types.ts",
@@ -35987,67 +36389,67 @@
},
"1277": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type.id"
},
"1278": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type.userId"
},
"1279": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1280": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "__type"
},
"1281": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.factors"
},
"1282": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1283": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "__type"
},
"1284": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.userId"
},
"1285": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1286": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1287": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1288": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "params"
},
"1289": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1290": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1291": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "params"
},
"1292": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "SupportedStorage"
},
"1293": {
"sourceFileName": "src/lib/types.ts",
@@ -36055,23 +36457,27 @@
},
"1294": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "__type.isServer"
},
"1295": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "InitializeResult"
},
"1296": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type"
},
"1297": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.error"
+ },
+ "1298": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "CallRefreshTokenResult"
},
"1299": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "PageParams"
+ "qualifiedName": "Pagination"
},
"1300": {
"sourceFileName": "src/lib/types.ts",
@@ -36079,459 +36485,455 @@
},
"1301": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.page"
+ "qualifiedName": "__type.nextPage"
},
"1302": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.perPage"
+ "qualifiedName": "__type.lastPage"
},
"1303": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignOut"
+ "qualifiedName": "__type.total"
},
"1304": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
- },
- "1305": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.__index"
},
"1306": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollTOTPParams"
+ "qualifiedName": "PageParams"
},
"1307": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollPhoneParams"
+ "qualifiedName": "__type"
},
"1308": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollWebauthnParams"
+ "qualifiedName": "__type.page"
},
"1309": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollTOTPResponse"
+ "qualifiedName": "__type.perPage"
},
"1310": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollPhoneResponse"
+ "qualifiedName": "SignOut"
},
"1311": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollWebauthnResponse"
+ "qualifiedName": "__type"
},
"1312": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtHeader"
+ "qualifiedName": "__type.scope"
},
"1313": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAEnrollTOTPParams"
},
"1314": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.alg"
+ "qualifiedName": "MFAEnrollPhoneParams"
},
"1315": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.kid"
+ "qualifiedName": "MFAEnrollWebauthnParams"
},
"1316": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.typ"
+ "qualifiedName": "AuthMFAEnrollTOTPResponse"
},
"1317": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "RequiredClaims"
+ "qualifiedName": "AuthMFAEnrollPhoneResponse"
},
"1318": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
"1319": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iss"
+ "qualifiedName": "JwtHeader"
},
"1320": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.sub"
+ "qualifiedName": "__type"
},
"1321": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.alg"
},
"1322": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.exp"
+ "qualifiedName": "__type.kid"
},
"1323": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iat"
+ "qualifiedName": "__type.typ"
},
"1324": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.role"
+ "qualifiedName": "RequiredClaims"
},
"1325": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aal"
+ "qualifiedName": "__type"
},
"1326": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session_id"
+ "qualifiedName": "__type.iss"
},
"1327": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload"
+ "qualifiedName": "__type.sub"
},
"1328": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.email"
+ "qualifiedName": "__type.aud"
},
"1329": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.phone"
+ "qualifiedName": "__type.exp"
},
"1330": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.is_anonymous"
+ "qualifiedName": "__type.iat"
},
"1331": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.jti"
+ "qualifiedName": "__type.role"
},
"1332": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.nbf"
+ "qualifiedName": "__type.aal"
},
"1333": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.app_metadata"
+ "qualifiedName": "__type.session_id"
},
"1334": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.user_metadata"
+ "qualifiedName": "JwtPayload"
},
"1335": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.amr"
+ "qualifiedName": "JwtPayload.email"
},
"1336": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.ref"
+ "qualifiedName": "JwtPayload.phone"
},
"1337": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iss"
+ "qualifiedName": "JwtPayload.is_anonymous"
},
"1338": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.sub"
+ "qualifiedName": "JwtPayload.jti"
},
"1339": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "JwtPayload.nbf"
},
"1340": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.exp"
+ "qualifiedName": "JwtPayload.app_metadata"
},
"1341": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iat"
+ "qualifiedName": "JwtPayload.user_metadata"
},
"1342": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.role"
+ "qualifiedName": "JwtPayload.amr"
},
"1343": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aal"
+ "qualifiedName": "JwtPayload.ref"
},
"1344": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session_id"
+ "qualifiedName": "__type.iss"
},
"1345": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.__index"
+ "qualifiedName": "__type.sub"
+ },
+ "1346": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.aud"
},
"1347": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK"
+ "qualifiedName": "__type.exp"
},
"1348": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.kty"
+ "qualifiedName": "__type.iat"
},
"1349": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.key_ops"
+ "qualifiedName": "__type.role"
},
"1350": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.alg"
+ "qualifiedName": "__type.aal"
},
"1351": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.kid"
+ "qualifiedName": "__type.session_id"
},
"1352": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.__index"
+ "qualifiedName": "JwtPayload.__index"
},
"1354": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
+ "qualifiedName": "JWK"
},
"1355": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "JWK.kty"
},
"1356": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "JWK.key_ops"
},
"1357": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "JWK.alg"
},
"1358": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "JWK.kid"
},
"1359": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
- },
- "1360": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "JWK.__index"
},
"1361": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1362": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "SignOutScope"
},
"1363": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "OAuthClientGrantType"
},
"1364": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "OAuthClientResponseType"
},
"1365": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "OAuthClientType"
},
"1366": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1367": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "OAuthClient"
},
"1368": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type"
},
"1369": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_id"
},
"1370": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_name"
},
"1371": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.client_secret"
},
"1372": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.client_type"
},
"1373": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1374": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.registration_type"
},
"1375": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.client_uri"
},
"1376": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.logo_uri"
},
"1377": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.redirect_uris"
},
"1378": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.grant_types"
},
"1379": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.response_types"
},
"1380": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.scope"
},
"1381": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.created_at"
},
"1382": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.updated_at"
},
"1383": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1384": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type"
},
"1385": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.client_name"
},
"1386": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.client_uri"
},
"1387": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.redirect_uris"
},
"1388": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.grant_types"
},
"1389": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.response_types"
},
"1390": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.scope"
},
"1391": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1392": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "__type"
},
"1393": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.client_name"
},
"1394": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.client_uri"
},
"1395": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.logo_uri"
},
"1396": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type.redirect_uris"
},
"1397": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.grant_types"
},
"1398": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "OAuthClientResponse"
},
"1399": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientListResponse"
},
"1400": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1401": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1402": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1403": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1404": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.aud"
},
"1405": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "__type.error"
},
"1406": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "__type"
},
"1407": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.data"
},
"1408": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "__type"
},
"1409": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "__type.clients"
},
"1410": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.error"
},
"1411": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1412": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1413": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1414": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "params"
},
"1415": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1416": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1417": {
"sourceFileName": "src/lib/types.ts",
@@ -36539,11 +36941,11 @@
},
"1418": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1419": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1420": {
"sourceFileName": "src/lib/types.ts",
@@ -36551,31 +36953,31 @@
},
"1421": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1422": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1423": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "clientId"
},
"1424": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "params"
},
"1425": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1426": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1427": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "clientId"
},
"1428": {
"sourceFileName": "src/lib/types.ts",
@@ -36583,107 +36985,107 @@
},
"1429": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "__type.data"
},
"1430": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.error"
},
"1431": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1432": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1433": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "clientId"
},
"1434": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1435": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "__type"
},
"1436": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type.id"
},
"1437": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.name"
},
"1438": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.uri"
},
"1439": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.logo_uri"
},
"1440": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1441": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1442": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.authorization_id"
},
"1443": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.redirect_uri"
},
"1444": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "__type.client"
},
"1445": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1446": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "__type"
},
"1447": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type.id"
},
"1448": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "__type.email"
},
"1449": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "__type.scope"
},
"1450": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1451": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1452": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "__type"
},
"1453": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "__type.redirect_url"
},
"1454": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "OAuthGrant"
},
"1455": {
"sourceFileName": "src/lib/types.ts",
@@ -36691,23 +37093,23 @@
},
"1456": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.client"
},
"1457": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.scopes"
},
"1458": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.granted_at"
},
"1459": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1460": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1461": {
"sourceFileName": "src/lib/types.ts",
@@ -36715,637 +37117,725 @@
},
"1462": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1463": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1464": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1465": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1466": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1467": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1468": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1469": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1470": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1471": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1472": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1473": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1474": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1475": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1476": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1477": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1478": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1479": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1480": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1481": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1482": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1483": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1484": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
+ },
+ "1485": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1464": {
+ "1486": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1465": {
+ "1487": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1466": {
+ "1488": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1467": {
+ "1489": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1468": {
+ "1490": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1469": {
+ "1491": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1470": {
+ "1492": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1471": {
+ "1493": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1472": {
+ "1494": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1473": {
+ "1495": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1474": {
+ "1496": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1475": {
+ "1497": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1476": {
+ "1498": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1477": {
+ "1499": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1478": {
+ "1500": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1479": {
+ "1501": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1480": {
+ "1502": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1481": {
+ "1503": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1482": {
+ "1504": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.__constructor"
},
- "1483": {
+ "1505": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1484": {
+ "1506": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1485": {
+ "1507": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1486": {
+ "1508": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1487": {
+ "1509": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1488": {
+ "1510": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1489": {
+ "1511": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1491": {
+ "1513": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1492": {
+ "1514": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1493": {
+ "1515": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1494": {
+ "1516": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1495": {
+ "1517": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1496": {
+ "1518": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1497": {
+ "1519": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1498": {
+ "1520": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1499": {
+ "1521": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1501": {
+ "1523": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1502": {
+ "1524": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1503": {
+ "1525": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1504": {
+ "1526": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1505": {
+ "1527": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1506": {
+ "1528": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1507": {
+ "1529": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1508": {
+ "1530": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1509": {
+ "1531": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1511": {
+ "1533": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1512": {
+ "1534": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1513": {
+ "1535": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1514": {
+ "1536": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1515": {
+ "1537": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "name"
},
- "1516": {
+ "1538": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1517": {
+ "1539": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1518": {
+ "1540": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1519": {
+ "1541": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1520": {
+ "1542": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1521": {
+ "1543": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1523": {
+ "1545": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1524": {
+ "1546": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1525": {
+ "1547": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1526": {
+ "1548": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1527": {
+ "1549": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1528": {
+ "1550": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1529": {
+ "1551": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1531": {
+ "1553": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1532": {
+ "1554": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1533": {
+ "1555": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1534": {
+ "1556": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1535": {
+ "1557": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1536": {
+ "1558": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1537": {
+ "1559": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1539": {
+ "1561": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1540": {
+ "1562": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1541": {
+ "1563": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1542": {
+ "1564": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1543": {
+ "1565": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1544": {
+ "1566": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1545": {
+ "1567": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1546": {
+ "1568": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1548": {
+ "1570": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1549": {
+ "1571": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1550": {
+ "1572": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1551": {
+ "1573": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1552": {
+ "1574": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1553": {
+ "1575": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1554": {
+ "1576": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1555": {
+ "1577": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1556": {
+ "1578": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1557": {
+ "1579": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1558": {
+ "1580": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1559": {
+ "1581": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1560": {
+ "1582": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1561": {
+ "1583": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1562": {
+ "1584": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1563": {
+ "1585": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1564": {
+ "1586": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1565": {
+ "1587": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1566": {
+ "1588": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1567": {
+ "1589": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1568": {
+ "1590": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1569": {
+ "1591": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1570": {
+ "1592": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1571": {
+ "1593": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1572": {
+ "1594": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1573": {
+ "1595": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1575": {
+ "1597": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1576": {
+ "1598": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1577": {
+ "1599": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1578": {
+ "1600": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1579": {
+ "1601": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1580": {
+ "1602": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1581": {
+ "1603": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1582": {
+ "1604": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1583": {
+ "1605": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1584": {
+ "1606": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1585": {
+ "1607": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1586": {
+ "1608": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1587": {
+ "1609": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1588": {
+ "1610": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1589": {
+ "1611": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1590": {
+ "1612": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1591": {
+ "1613": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1592": {
+ "1614": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1593": {
+ "1615": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1594": {
+ "1616": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1595": {
+ "1617": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1596": {
+ "1618": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1597": {
+ "1619": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1598": {
+ "1620": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1599": {
+ "1621": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1600": {
+ "1622": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1602": {
+ "1624": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1603": {
+ "1625": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1604": {
+ "1626": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1605": {
+ "1627": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1606": {
+ "1628": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1607": {
+ "1629": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1608": {
+ "1630": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1609": {
+ "1631": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1610": {
+ "1632": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1612": {
+ "1634": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1613": {
+ "1635": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1614": {
+ "1636": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1615": {
+ "1637": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1616": {
+ "1638": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1617": {
+ "1639": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1618": {
+ "1640": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1619": {
+ "1641": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1620": {
+ "1642": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1621": {
+ "1643": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1622": {
+ "1644": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1624": {
+ "1646": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1625": {
+ "1647": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1626": {
+ "1648": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1627": {
+ "1649": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1628": {
+ "1650": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1629": {
+ "1651": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1630": {
+ "1652": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1631": {
+ "1653": {
"sourceFileName": "",
"qualifiedName": "__type"
}
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json
index 0f60623b6614a..7ba1f0d8e725b 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/gotrue_dereferenced.json
@@ -6,7 +6,7 @@
"flags": {},
"children": [
{
- "id": 1491,
+ "id": 1513,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -32,7 +32,7 @@
},
"children": [
{
- "id": 1492,
+ "id": 1514,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -42,12 +42,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"signatures": [
{
- "id": 1493,
+ "id": 1515,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -57,12 +57,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L53"
}
],
"parameters": [
{
- "id": 1494,
+ "id": 1516,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -73,7 +73,7 @@
}
},
{
- "id": 1495,
+ "id": 1517,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -84,7 +84,7 @@
}
},
{
- "id": 1496,
+ "id": 1518,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -106,25 +106,25 @@
],
"type": {
"type": "reference",
- "target": 1491,
+ "target": 1513,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1505,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1504,
"name": "AuthError.constructor"
}
},
{
- "id": 1498,
+ "id": 1520,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -153,7 +153,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -182,7 +182,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1499,
+ "id": 1521,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -195,12 +195,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1487,
+ "target": 1509,
"name": "AuthError.code"
}
},
{
- "id": 1497,
+ "id": 1519,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -218,7 +218,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L51"
}
],
"type": {
@@ -227,7 +227,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1489,
+ "target": 1511,
"name": "AuthError.status"
}
}
@@ -235,11 +235,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1492]
+ "children": [1514]
},
{
"title": "Properties",
- "children": [1498, 1497]
+ "children": [1520, 1519]
}
],
"sources": [
@@ -247,20 +247,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L50"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1481,
+ "id": 1503,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -286,7 +286,7 @@
},
"children": [
{
- "id": 1482,
+ "id": 1504,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -296,12 +296,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"signatures": [
{
- "id": 1483,
+ "id": 1505,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -311,12 +311,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L28"
}
],
"parameters": [
{
- "id": 1484,
+ "id": 1506,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -327,7 +327,7 @@
}
},
{
- "id": 1485,
+ "id": 1507,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -340,7 +340,7 @@
}
},
{
- "id": 1486,
+ "id": 1508,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -355,7 +355,7 @@
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -373,7 +373,7 @@
}
},
{
- "id": 1487,
+ "id": 1509,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -400,7 +400,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -429,7 +429,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1488,
+ "id": 1510,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -442,7 +442,7 @@
}
},
{
- "id": 1489,
+ "id": 1511,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -460,7 +460,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -481,11 +481,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1482]
+ "children": [1504]
},
{
"title": "Properties",
- "children": [1487, 1489]
+ "children": [1509, 1511]
}
],
"sources": [
@@ -493,7 +493,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L14"
}
],
"extendedTypes": [
@@ -510,23 +510,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1491,
+ "target": 1513,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1501,
+ "target": 1523,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError"
}
]
},
{
- "id": 1548,
+ "id": 1570,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -552,7 +552,7 @@
},
"children": [
{
- "id": 1549,
+ "id": 1571,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -562,12 +562,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"signatures": [
{
- "id": 1550,
+ "id": 1572,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -577,12 +577,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"parameters": [
{
- "id": 1551,
+ "id": 1573,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -593,7 +593,7 @@
}
},
{
- "id": 1552,
+ "id": 1574,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -608,14 +608,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1553,
+ "id": 1575,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1555,
+ "id": 1577,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -625,7 +625,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -634,7 +634,7 @@
}
},
{
- "id": 1554,
+ "id": 1576,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -644,7 +644,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
],
"type": {
@@ -656,7 +656,7 @@
"groups": [
{
"title": "Properties",
- "children": [1555, 1554]
+ "children": [1577, 1576]
}
],
"sources": [
@@ -664,7 +664,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 177,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L177"
}
]
}
@@ -676,25 +676,25 @@
],
"type": {
"type": "reference",
- "target": 1548,
+ "target": 1570,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1572,
+ "id": 1594,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -723,7 +723,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -752,7 +752,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1573,
+ "id": 1595,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -765,12 +765,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1556,
+ "id": 1578,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -780,7 +780,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -793,14 +793,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1557,
+ "id": 1579,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1559,
+ "id": 1581,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -810,7 +810,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -819,7 +819,7 @@
}
},
{
- "id": 1558,
+ "id": 1580,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -829,7 +829,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -841,7 +841,7 @@
"groups": [
{
"title": "Properties",
- "children": [1559, 1558]
+ "children": [1581, 1580]
}
],
"sources": [
@@ -849,7 +849,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -859,7 +859,7 @@
"defaultValue": "null"
},
{
- "id": 1570,
+ "id": 1592,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -871,7 +871,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -880,12 +880,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1571,
+ "id": 1593,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -905,7 +905,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -914,12 +914,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
},
{
- "id": 1560,
+ "id": 1582,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -929,12 +929,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"signatures": [
{
- "id": 1561,
+ "id": 1583,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -944,20 +944,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L182"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1562,
+ "id": 1584,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1566,
+ "id": 1588,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -967,7 +967,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 187,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L187"
}
],
"type": {
@@ -980,14 +980,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1567,
+ "id": 1589,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1569,
+ "id": 1591,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -997,7 +997,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -1006,7 +1006,7 @@
}
},
{
- "id": 1568,
+ "id": 1590,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1016,7 +1016,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
],
"type": {
@@ -1028,7 +1028,7 @@
"groups": [
{
"title": "Properties",
- "children": [1569, 1568]
+ "children": [1591, 1590]
}
],
"sources": [
@@ -1036,7 +1036,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 176,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L176"
}
]
}
@@ -1046,7 +1046,7 @@
"defaultValue": "..."
},
{
- "id": 1564,
+ "id": 1586,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -1056,7 +1056,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 185,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L185"
}
],
"type": {
@@ -1066,7 +1066,7 @@
"defaultValue": "..."
},
{
- "id": 1563,
+ "id": 1585,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1076,7 +1076,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 184,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L184"
}
],
"type": {
@@ -1086,7 +1086,7 @@
"defaultValue": "..."
},
{
- "id": 1565,
+ "id": 1587,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1096,7 +1096,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 186,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L186"
}
],
"type": {
@@ -1109,7 +1109,7 @@
"groups": [
{
"title": "Properties",
- "children": [1566, 1564, 1563, 1565]
+ "children": [1588, 1586, 1585, 1587]
}
],
"sources": [
@@ -1117,7 +1117,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 183,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L183"
}
]
}
@@ -1129,15 +1129,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1549]
+ "children": [1571]
},
{
"title": "Properties",
- "children": [1572, 1556, 1570, 1571]
+ "children": [1594, 1578, 1592, 1593]
},
{
"title": "Methods",
- "children": [1560]
+ "children": [1582]
}
],
"sources": [
@@ -1145,20 +1145,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 175,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L175"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1539,
+ "id": 1561,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -1184,7 +1184,7 @@
},
"children": [
{
- "id": 1540,
+ "id": 1562,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1194,12 +1194,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"signatures": [
{
- "id": 1541,
+ "id": 1563,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -1209,12 +1209,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"parameters": [
{
- "id": 1542,
+ "id": 1564,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1227,25 +1227,25 @@
],
"type": {
"type": "reference",
- "target": 1539,
+ "target": 1561,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1545,
+ "id": 1567,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1274,7 +1274,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1303,7 +1303,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1546,
+ "id": 1568,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1316,12 +1316,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1543,
+ "id": 1565,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1333,7 +1333,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1342,12 +1342,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1544,
+ "id": 1566,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1367,7 +1367,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1376,7 +1376,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -1384,11 +1384,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1540]
+ "children": [1562]
},
{
"title": "Properties",
- "children": [1545, 1543, 1544]
+ "children": [1567, 1565, 1566]
}
],
"sources": [
@@ -1396,20 +1396,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 156,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L156"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1624,
+ "id": 1646,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -1435,7 +1435,7 @@
},
"children": [
{
- "id": 1625,
+ "id": 1647,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1445,12 +1445,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 289,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289"
}
],
"signatures": [
{
- "id": 1626,
+ "id": 1648,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -1460,12 +1460,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 289,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L289"
}
],
"parameters": [
{
- "id": 1627,
+ "id": 1649,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1478,25 +1478,25 @@
],
"type": {
"type": "reference",
- "target": 1624,
+ "target": 1646,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1630,
+ "id": 1652,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1525,7 +1525,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1554,7 +1554,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1631,
+ "id": 1653,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1567,12 +1567,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1628,
+ "id": 1650,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1584,7 +1584,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1593,12 +1593,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1629,
+ "id": 1651,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1618,7 +1618,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1627,7 +1627,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -1635,11 +1635,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1625]
+ "children": [1647]
},
{
"title": "Properties",
- "children": [1630, 1628, 1629]
+ "children": [1652, 1650, 1651]
}
],
"sources": [
@@ -1647,20 +1647,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 288,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L288"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1531,
+ "id": 1553,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -1686,7 +1686,7 @@
},
"children": [
{
- "id": 1532,
+ "id": 1554,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1696,12 +1696,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"signatures": [
{
- "id": 1533,
+ "id": 1555,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -1711,30 +1711,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L141"
}
],
"type": {
"type": "reference",
- "target": 1531,
+ "target": 1553,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1536,
+ "id": 1558,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1763,7 +1763,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -1792,7 +1792,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1537,
+ "id": 1559,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1805,12 +1805,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1534,
+ "id": 1556,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1822,7 +1822,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -1831,12 +1831,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1535,
+ "id": 1557,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1856,7 +1856,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -1865,7 +1865,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -1873,11 +1873,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1532]
+ "children": [1554]
},
{
"title": "Properties",
- "children": [1536, 1534, 1535]
+ "children": [1558, 1556, 1557]
}
],
"sources": [
@@ -1885,20 +1885,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 140,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L140"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1575,
+ "id": 1597,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -1924,7 +1924,7 @@
},
"children": [
{
- "id": 1576,
+ "id": 1598,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1934,12 +1934,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"signatures": [
{
- "id": 1577,
+ "id": 1599,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -1949,12 +1949,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"parameters": [
{
- "id": 1578,
+ "id": 1600,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1965,7 +1965,7 @@
}
},
{
- "id": 1579,
+ "id": 1601,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -1980,14 +1980,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1580,
+ "id": 1602,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1582,
+ "id": 1604,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1997,7 +1997,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -2006,7 +2006,7 @@
}
},
{
- "id": 1581,
+ "id": 1603,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2016,7 +2016,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
],
"type": {
@@ -2028,7 +2028,7 @@
"groups": [
{
"title": "Properties",
- "children": [1582, 1581]
+ "children": [1604, 1603]
}
],
"sources": [
@@ -2036,7 +2036,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 211,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L211"
}
]
}
@@ -2048,25 +2048,25 @@
],
"type": {
"type": "reference",
- "target": 1575,
+ "target": 1597,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1599,
+ "id": 1621,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2095,7 +2095,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2124,7 +2124,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1600,
+ "id": 1622,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2137,12 +2137,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1583,
+ "id": 1605,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2152,7 +2152,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2165,14 +2165,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1584,
+ "id": 1606,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1586,
+ "id": 1608,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2182,7 +2182,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2191,7 +2191,7 @@
}
},
{
- "id": 1585,
+ "id": 1607,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2201,7 +2201,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2213,7 +2213,7 @@
"groups": [
{
"title": "Properties",
- "children": [1586, 1585]
+ "children": [1608, 1607]
}
],
"sources": [
@@ -2221,7 +2221,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -2231,7 +2231,7 @@
"defaultValue": "null"
},
{
- "id": 1597,
+ "id": 1619,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2243,7 +2243,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2252,12 +2252,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1598,
+ "id": 1620,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2277,7 +2277,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2286,12 +2286,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
},
{
- "id": 1587,
+ "id": 1609,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -2301,12 +2301,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"signatures": [
{
- "id": 1588,
+ "id": 1610,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -2316,20 +2316,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L216"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1589,
+ "id": 1611,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1593,
+ "id": 1615,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2339,7 +2339,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 221,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L221"
}
],
"type": {
@@ -2352,14 +2352,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1594,
+ "id": 1616,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1596,
+ "id": 1618,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2369,7 +2369,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2378,7 +2378,7 @@
}
},
{
- "id": 1595,
+ "id": 1617,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2388,7 +2388,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
],
"type": {
@@ -2400,7 +2400,7 @@
"groups": [
{
"title": "Properties",
- "children": [1596, 1595]
+ "children": [1618, 1617]
}
],
"sources": [
@@ -2408,7 +2408,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 209,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L209"
}
]
}
@@ -2418,7 +2418,7 @@
"defaultValue": "..."
},
{
- "id": 1591,
+ "id": 1613,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -2428,7 +2428,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 219,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L219"
}
],
"type": {
@@ -2438,7 +2438,7 @@
"defaultValue": "..."
},
{
- "id": 1590,
+ "id": 1612,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2448,7 +2448,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L218"
}
],
"type": {
@@ -2458,7 +2458,7 @@
"defaultValue": "..."
},
{
- "id": 1592,
+ "id": 1614,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2468,7 +2468,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 220,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L220"
}
],
"type": {
@@ -2481,7 +2481,7 @@
"groups": [
{
"title": "Properties",
- "children": [1593, 1591, 1590, 1592]
+ "children": [1615, 1613, 1612, 1614]
}
],
"sources": [
@@ -2489,7 +2489,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 217,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L217"
}
]
}
@@ -2501,15 +2501,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1576]
+ "children": [1598]
},
{
"title": "Properties",
- "children": [1599, 1583, 1597, 1598]
+ "children": [1621, 1605, 1619, 1620]
},
{
"title": "Methods",
- "children": [1587]
+ "children": [1609]
}
],
"sources": [
@@ -2517,20 +2517,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 208,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L208"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1602,
+ "id": 1624,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -2556,7 +2556,7 @@
},
"children": [
{
- "id": 1603,
+ "id": 1625,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2566,12 +2566,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 237,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237"
}
],
"signatures": [
{
- "id": 1604,
+ "id": 1626,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -2581,12 +2581,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 237,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L237"
}
],
"parameters": [
{
- "id": 1605,
+ "id": 1627,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2597,7 +2597,7 @@
}
},
{
- "id": 1606,
+ "id": 1628,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -2610,25 +2610,25 @@
],
"type": {
"type": "reference",
- "target": 1602,
+ "target": 1624,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1609,
+ "id": 1631,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2657,7 +2657,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2686,7 +2686,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1610,
+ "id": 1632,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2699,12 +2699,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1607,
+ "id": 1629,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2716,7 +2716,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2725,12 +2725,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1608,
+ "id": 1630,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2750,7 +2750,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2759,7 +2759,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -2767,11 +2767,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1603]
+ "children": [1625]
},
{
"title": "Properties",
- "children": [1609, 1607, 1608]
+ "children": [1631, 1629, 1630]
}
],
"sources": [
@@ -2779,20 +2779,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 236,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L236"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L236"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1523,
+ "id": 1545,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -2818,7 +2818,7 @@
},
"children": [
{
- "id": 1524,
+ "id": 1546,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2828,12 +2828,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"signatures": [
{
- "id": 1525,
+ "id": 1547,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -2843,30 +2843,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"type": {
"type": "reference",
- "target": 1523,
+ "target": 1545,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1528,
+ "id": 1550,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2895,7 +2895,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -2924,7 +2924,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1529,
+ "id": 1551,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2937,12 +2937,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1526,
+ "id": 1548,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2954,7 +2954,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -2963,12 +2963,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1527,
+ "id": 1549,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2988,7 +2988,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -2997,7 +2997,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -3005,11 +3005,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1524]
+ "children": [1546]
},
{
"title": "Properties",
- "children": [1528, 1526, 1527]
+ "children": [1550, 1548, 1549]
}
],
"sources": [
@@ -3017,20 +3017,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 120,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L120"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1501,
+ "id": 1523,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -3056,7 +3056,7 @@
},
"children": [
{
- "id": 1502,
+ "id": 1524,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3066,12 +3066,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"signatures": [
{
- "id": 1503,
+ "id": 1525,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -3081,12 +3081,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"parameters": [
{
- "id": 1504,
+ "id": 1526,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3097,7 +3097,7 @@
}
},
{
- "id": 1505,
+ "id": 1527,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -3110,25 +3110,25 @@
],
"type": {
"type": "reference",
- "target": 1501,
+ "target": 1523,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1505,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1504,
"name": "AuthError.constructor"
}
},
{
- "id": 1507,
+ "id": 1529,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3157,7 +3157,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3186,7 +3186,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1508,
+ "id": 1530,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3199,12 +3199,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1487,
+ "target": 1509,
"name": "AuthError.code"
}
},
{
- "id": 1506,
+ "id": 1528,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -3214,7 +3214,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L80"
}
],
"type": {
@@ -3223,7 +3223,7 @@
}
},
{
- "id": 1509,
+ "id": 1531,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3243,7 +3243,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L24"
}
],
"type": {
@@ -3261,7 +3261,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1511,
"name": "AuthError.status"
}
}
@@ -3269,11 +3269,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1502]
+ "children": [1524]
},
{
"title": "Properties",
- "children": [1507, 1506, 1509]
+ "children": [1529, 1528, 1531]
}
],
"sources": [
@@ -3281,20 +3281,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 79,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L79"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1612,
+ "id": 1634,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -3320,7 +3320,7 @@
},
"children": [
{
- "id": 1613,
+ "id": 1635,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3330,12 +3330,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267"
}
],
"signatures": [
{
- "id": 1614,
+ "id": 1636,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -3345,12 +3345,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L267"
}
],
"parameters": [
{
- "id": 1615,
+ "id": 1637,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3361,7 +3361,7 @@
}
},
{
- "id": 1616,
+ "id": 1638,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3372,7 +3372,7 @@
}
},
{
- "id": 1617,
+ "id": 1639,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -3401,25 +3401,25 @@
],
"type": {
"type": "reference",
- "target": 1612,
+ "target": 1634,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1513,
+ "target": 1535,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1512,
+ "target": 1534,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1621,
+ "id": 1643,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3448,7 +3448,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3477,7 +3477,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1622,
+ "id": 1644,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3490,12 +3490,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1520,
+ "target": 1542,
"name": "CustomAuthError.code"
}
},
{
- "id": 1619,
+ "id": 1641,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3507,7 +3507,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -3516,12 +3516,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1518,
+ "target": 1540,
"name": "CustomAuthError.name"
}
},
{
- "id": 1618,
+ "id": 1640,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -3539,7 +3539,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 265,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L265"
}
],
"type": {
@@ -3564,7 +3564,7 @@
}
},
{
- "id": 1620,
+ "id": 1642,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3584,7 +3584,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -3593,7 +3593,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1519,
+ "target": 1541,
"name": "CustomAuthError.status"
}
}
@@ -3601,11 +3601,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1613]
+ "children": [1635]
},
{
"title": "Properties",
- "children": [1621, 1619, 1618, 1620]
+ "children": [1643, 1641, 1640, 1642]
}
],
"sources": [
@@ -3613,20 +3613,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 261,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L261"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1511,
+ "id": 1533,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -3652,7 +3652,7 @@
},
"children": [
{
- "id": 1512,
+ "id": 1534,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3662,12 +3662,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"signatures": [
{
- "id": 1513,
+ "id": 1535,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -3677,12 +3677,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L103"
}
],
"parameters": [
{
- "id": 1514,
+ "id": 1536,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3693,7 +3693,7 @@
}
},
{
- "id": 1515,
+ "id": 1537,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -3704,7 +3704,7 @@
}
},
{
- "id": 1516,
+ "id": 1538,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3715,7 +3715,7 @@
}
},
{
- "id": 1517,
+ "id": 1539,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -3737,25 +3737,25 @@
],
"type": {
"type": "reference",
- "target": 1511,
+ "target": 1533,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1505,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1504,
"name": "AuthError.constructor"
}
},
{
- "id": 1520,
+ "id": 1542,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3784,7 +3784,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L21"
}
],
"type": {
@@ -3813,7 +3813,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1521,
+ "id": 1543,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3826,12 +3826,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1487,
+ "target": 1509,
"name": "AuthError.code"
}
},
{
- "id": 1518,
+ "id": 1540,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3841,7 +3841,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -3855,7 +3855,7 @@
}
},
{
- "id": 1519,
+ "id": 1541,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3873,7 +3873,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L101"
}
],
"type": {
@@ -3882,7 +3882,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1489,
+ "target": 1511,
"name": "AuthError.status"
}
}
@@ -3890,11 +3890,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1512]
+ "children": [1534]
},
{
"title": "Properties",
- "children": [1520, 1518, 1519]
+ "children": [1542, 1540, 1541]
}
],
"sources": [
@@ -3902,13 +3902,13 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 99,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L99"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -3916,42 +3916,42 @@
"extendedBy": [
{
"type": "reference",
- "target": 1523,
+ "target": 1545,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1531,
+ "target": 1553,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1539,
+ "target": 1561,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1548,
+ "target": 1570,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1575,
+ "target": 1597,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1602,
+ "target": 1624,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1612,
+ "target": 1634,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1624,
+ "target": 1646,
"name": "AuthInvalidJwtError"
}
]
@@ -3974,7 +3974,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"signatures": [
@@ -4008,7 +4008,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L61"
}
],
"parameters": [
@@ -4040,7 +4040,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 70,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L70"
}
],
"type": {
@@ -4269,7 +4269,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"type": {
@@ -4285,7 +4285,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 67,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L67"
}
],
"indexSignatures": [
@@ -4300,7 +4300,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 68,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L68"
}
],
"parameters": [
@@ -4337,7 +4337,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L66"
}
],
"type": {
@@ -4358,7 +4358,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 65,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L65"
}
]
}
@@ -4394,12 +4394,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
}
],
"type": {
"type": "reference",
- "target": 1278,
+ "target": 1285,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -4423,12 +4423,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
}
],
"type": {
"type": "reference",
- "target": 1404,
+ "target": 1411,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -4444,7 +4444,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"signatures": [
@@ -4475,7 +4475,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L192"
}
],
"parameters": [
@@ -4487,7 +4487,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 878,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -4502,7 +4502,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4524,7 +4524,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
}
],
"signatures": [
@@ -4555,7 +4555,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L312"
}
],
"parameters": [
@@ -4616,7 +4616,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4638,7 +4638,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"signatures": [
@@ -4661,7 +4661,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L158"
}
],
"parameters": [
@@ -4673,7 +4673,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1088,
+ "target": 1095,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -4688,7 +4688,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1089,
+ "target": 1096,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -4710,7 +4710,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"signatures": [
@@ -4733,7 +4733,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L261"
}
],
"parameters": [
@@ -4774,7 +4774,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4796,7 +4796,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"signatures": [
@@ -4819,7 +4819,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 125,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L125"
}
],
"parameters": [
@@ -4894,7 +4894,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 129,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L129"
}
],
"type": {
@@ -4923,7 +4923,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 132,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L132"
}
],
"type": {
@@ -4943,7 +4943,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 127,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L127"
}
]
}
@@ -4960,7 +4960,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -4982,7 +4982,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"signatures": [
@@ -5013,7 +5013,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L214"
}
],
"parameters": [
@@ -5051,7 +5051,7 @@
},
"type": {
"type": "reference",
- "target": 1299,
+ "target": 1306,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -5087,7 +5087,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5113,7 +5113,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5132,14 +5132,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -5157,14 +5157,14 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
},
{
"type": "reference",
- "target": 1292,
+ "target": 1299,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -5182,7 +5182,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
],
"type": {
@@ -5202,7 +5202,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L217"
}
]
}
@@ -5227,7 +5227,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -5250,7 +5250,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
@@ -5269,7 +5269,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -5286,12 +5286,12 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5308,7 +5308,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 218,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L218"
}
]
}
@@ -5333,7 +5333,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"signatures": [
@@ -5356,7 +5356,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 94,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L94"
}
],
"parameters": [
@@ -5440,7 +5440,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -5459,7 +5459,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
],
"type": {
@@ -5471,7 +5471,7 @@
},
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -5490,7 +5490,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 97,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L97"
}
]
}
@@ -5513,7 +5513,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 285,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
}
],
"signatures": [
@@ -5536,7 +5536,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 285,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L285"
}
],
"parameters": [
@@ -5575,7 +5575,7 @@
},
"type": {
"type": "reference",
- "target": 878,
+ "target": 885,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -5590,7 +5590,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -5621,7 +5621,7 @@
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
"line": 32,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
}
]
},
@@ -5641,9 +5641,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 290,
+ "line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292"
}
],
"signatures": [
@@ -5675,9 +5675,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 290,
+ "line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L292"
}
],
"parameters": [
@@ -5689,7 +5689,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 709,
+ "target": 716,
"name": "GoTrueClientOptions",
"package": "@supabase/auth-js"
}
@@ -5722,9 +5722,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 199,
+ "line": 201,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L201"
}
],
"type": {
@@ -5752,14 +5752,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 203,
+ "line": 205,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L205"
}
],
"type": {
"type": "reference",
- "target": 1148,
+ "target": 1155,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -5781,14 +5781,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 209,
+ "line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L211"
}
],
"type": {
"type": "reference",
- "target": 1447,
+ "target": 1462,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -5802,9 +5802,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 739,
+ "line": 743,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L739"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743"
}
],
"signatures": [
@@ -5825,9 +5825,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 739,
+ "line": 743,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L739"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L743"
}
],
"parameters": [
@@ -5852,7 +5852,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 773,
+ "target": 780,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -5864,7 +5864,7 @@
]
},
{
- "id": 648,
+ "id": 655,
"name": "getClaims",
"variant": "declaration",
"kind": 2048,
@@ -5872,14 +5872,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3624,
+ "line": 3701,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701"
}
],
"signatures": [
{
- "id": 649,
+ "id": 656,
"name": "getClaims",
"variant": "signature",
"kind": 4096,
@@ -5921,14 +5921,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3624,
+ "line": 3701,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3701"
}
],
"parameters": [
{
- "id": 650,
+ "id": 657,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -5958,7 +5958,7 @@
}
},
{
- "id": 651,
+ "id": 658,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -5974,14 +5974,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 652,
+ "id": 659,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 654,
+ "id": 661,
"name": "allowExpired",
"variant": "declaration",
"kind": 1024,
@@ -6015,9 +6015,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3633,
+ "line": 3710,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3633"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3710"
}
],
"type": {
@@ -6026,7 +6026,7 @@
}
},
{
- "id": 655,
+ "id": 662,
"name": "jwks",
"variant": "declaration",
"kind": 1024,
@@ -6044,22 +6044,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3636,
+ "line": 3713,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 656,
+ "id": 663,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 657,
+ "id": 664,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -6067,16 +6067,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3636,
+ "line": 3713,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1347,
+ "target": 1354,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -6086,22 +6086,22 @@
"groups": [
{
"title": "Properties",
- "children": [657]
+ "children": [664]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3636,
+ "line": 3713,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3713"
}
]
}
}
},
{
- "id": 653,
+ "id": 660,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -6125,16 +6125,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3630,
+ "line": 3707,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3630"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3707"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1347,
+ "target": 1354,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -6144,15 +6144,15 @@
"groups": [
{
"title": "Properties",
- "children": [654, 655, 653]
+ "children": [661, 662, 660]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3626,
+ "line": 3703,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3626"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3703"
}
]
}
@@ -6173,14 +6173,14 @@
{
"type": "reflection",
"declaration": {
- "id": 658,
+ "id": 665,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 659,
+ "id": 666,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -6188,22 +6188,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 660,
+ "id": 667,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 661,
+ "id": 668,
"name": "claims",
"variant": "declaration",
"kind": 1024,
@@ -6211,20 +6211,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
"type": "reference",
- "target": 1327,
+ "target": 1334,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
},
{
- "id": 662,
+ "id": 669,
"name": "header",
"variant": "declaration",
"kind": 1024,
@@ -6232,20 +6232,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
"type": "reference",
- "target": 1312,
+ "target": 1319,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
},
{
- "id": 663,
+ "id": 670,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -6253,9 +6253,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
],
"type": {
@@ -6272,22 +6272,22 @@
"groups": [
{
"title": "Properties",
- "children": [661, 662, 663]
+ "children": [668, 669, 670]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3640,
+ "line": 3717,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3640"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3717"
}
]
}
}
},
{
- "id": 664,
+ "id": 671,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -6295,9 +6295,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3641,
+ "line": 3718,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3641"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3718"
}
],
"type": {
@@ -6309,15 +6309,15 @@
"groups": [
{
"title": "Properties",
- "children": [659, 664]
+ "children": [666, 671]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3639,
+ "line": 3716,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3716"
}
]
}
@@ -6325,14 +6325,14 @@
{
"type": "reflection",
"declaration": {
- "id": 665,
+ "id": 672,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 666,
+ "id": 673,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -6340,9 +6340,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3643,
+ "line": 3720,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720"
}
],
"type": {
@@ -6351,7 +6351,7 @@
}
},
{
- "id": 667,
+ "id": 674,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -6359,14 +6359,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3643,
+ "line": 3720,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -6375,15 +6375,15 @@
"groups": [
{
"title": "Properties",
- "children": [666, 667]
+ "children": [673, 674]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3643,
+ "line": 3720,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3720"
}
]
}
@@ -6391,14 +6391,14 @@
{
"type": "reflection",
"declaration": {
- "id": 668,
+ "id": 675,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 669,
+ "id": 676,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -6406,9 +6406,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3644,
+ "line": 3721,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3644"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721"
}
],
"type": {
@@ -6417,7 +6417,7 @@
}
},
{
- "id": 670,
+ "id": 677,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -6425,9 +6425,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3644,
+ "line": 3721,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3644"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721"
}
],
"type": {
@@ -6439,15 +6439,15 @@
"groups": [
{
"title": "Properties",
- "children": [669, 670]
+ "children": [676, 677]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3644,
+ "line": 3721,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L3644"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L3721"
}
]
}
@@ -6470,9 +6470,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1454,
+ "line": 1458,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458"
}
],
"signatures": [
@@ -6502,9 +6502,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1454,
+ "line": 1458,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1458"
}
],
"type": {
@@ -6535,9 +6535,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1547,
+ "line": 1551,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1547"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551"
}
],
"type": {
@@ -6558,14 +6558,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1548,
+ "line": 1552,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1548"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1552"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -6580,9 +6580,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1547,
+ "line": 1551,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1547"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1551"
}
]
}
@@ -6597,9 +6597,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1550,
+ "line": 1554,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1554"
}
],
"type": {
@@ -6617,9 +6617,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1546,
+ "line": 1550,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1546"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1550"
}
]
}
@@ -6642,9 +6642,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1553,
+ "line": 1557,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557"
}
],
"type": {
@@ -6665,9 +6665,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1554,
+ "line": 1558,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1554"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1558"
}
],
"type": {
@@ -6685,9 +6685,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1553,
+ "line": 1557,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1557"
}
]
}
@@ -6702,14 +6702,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1556,
+ "line": 1560,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1556"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1560"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -6724,9 +6724,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1552,
+ "line": 1556,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1556"
}
]
}
@@ -6749,9 +6749,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1559,
+ "line": 1563,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1559"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563"
}
],
"type": {
@@ -6772,9 +6772,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1560,
+ "line": 1564,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1560"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1564"
}
],
"type": {
@@ -6792,9 +6792,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1559,
+ "line": 1563,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1559"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1563"
}
]
}
@@ -6809,9 +6809,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1562,
+ "line": 1566,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1562"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1566"
}
],
"type": {
@@ -6829,9 +6829,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1558,
+ "line": 1562,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1558"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1562"
}
]
}
@@ -6854,9 +6854,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1696,
+ "line": 1700,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700"
}
],
"signatures": [
@@ -6877,9 +6877,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1696,
+ "line": 1700,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1700"
}
],
"parameters": [
@@ -6914,7 +6914,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6934,9 +6934,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2278,
+ "line": 2282,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2278"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282"
}
],
"signatures": [
@@ -6957,9 +6957,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2278,
+ "line": 2282,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2278"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2282"
}
],
"type": {
@@ -6990,9 +6990,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284"
}
],
"type": {
@@ -7013,16 +7013,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2281,
+ "line": 2285,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2281"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2285"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 815,
+ "target": 822,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -7038,9 +7038,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2280,
+ "line": 2284,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2284"
}
]
}
@@ -7055,9 +7055,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2283,
+ "line": 2287,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2283"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2287"
}
],
"type": {
@@ -7075,9 +7075,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2279,
+ "line": 2283,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2279"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2283"
}
]
}
@@ -7100,9 +7100,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2285,
+ "line": 2289,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289"
}
],
"type": {
@@ -7119,14 +7119,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2285,
+ "line": 2289,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7141,9 +7141,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2285,
+ "line": 2289,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2285"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2289"
}
]
}
@@ -7166,9 +7166,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 436,
+ "line": 440,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440"
}
],
"signatures": [
@@ -7189,9 +7189,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 436,
+ "line": 440,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L440"
}
],
"type": {
@@ -7203,7 +7203,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1288,
+ "target": 1295,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -7225,9 +7225,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 400,
+ "line": 404,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404"
}
],
"signatures": [
@@ -7248,9 +7248,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 400,
+ "line": 404,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L404"
}
],
"type": {
@@ -7269,21 +7269,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2303,
+ "line": 2307,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2303"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2308,
+ "line": 2312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2310,
+ "line": 2314,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2310"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2314"
}
],
"signatures": [
@@ -7304,9 +7304,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2303,
+ "line": 2307,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2303"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2307"
}
],
"parameters": [
@@ -7318,7 +7318,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 938,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -7333,7 +7333,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 782,
+ "target": 789,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -7359,9 +7359,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2308,
+ "line": 2312,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2312"
}
],
"parameters": [
@@ -7373,7 +7373,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 950,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -7388,7 +7388,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 773,
+ "target": 780,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -7408,21 +7408,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2176,
+ "line": 2180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2180"
}
],
"signatures": [
@@ -7443,9 +7443,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
],
"parameters": [
@@ -7474,9 +7474,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
],
"signatures": [
@@ -7489,9 +7489,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
],
"parameters": [
@@ -7503,7 +7503,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 699,
+ "target": 706,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -7523,7 +7523,7 @@
},
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -7559,9 +7559,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2157,
+ "line": 2161,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161"
}
],
"type": {
@@ -7582,14 +7582,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2157,
+ "line": 2161,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161"
}
],
"type": {
"type": "reference",
- "target": 891,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -7604,9 +7604,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2157,
+ "line": 2161,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2161"
}
]
}
@@ -7622,9 +7622,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2156,
+ "line": 2160,
"character": 90,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2160"
}
]
}
@@ -7666,9 +7666,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
],
"parameters": [
@@ -7697,9 +7697,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
],
"signatures": [
@@ -7712,9 +7712,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
],
"parameters": [
@@ -7726,7 +7726,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 699,
+ "target": 706,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -7746,7 +7746,7 @@
},
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -7793,9 +7793,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2173,
+ "line": 2177,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177"
}
],
"type": {
@@ -7816,14 +7816,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2173,
+ "line": 2177,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177"
}
],
"type": {
"type": "reference",
- "target": 891,
+ "target": 898,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -7838,9 +7838,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2173,
+ "line": 2177,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2177"
}
]
}
@@ -7856,9 +7856,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2176,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2176"
}
]
}
@@ -7875,9 +7875,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1367,
+ "line": 1371,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371"
}
],
"signatures": [
@@ -7898,9 +7898,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1367,
+ "line": 1371,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1371"
}
],
"type": {
@@ -7912,7 +7912,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -7932,9 +7932,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
],
"signatures": [
@@ -7955,9 +7955,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
],
"parameters": [
@@ -7995,9 +7995,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
],
"type": {
@@ -8015,9 +8015,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1903,
+ "line": 1907,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1907"
}
]
}
@@ -8033,7 +8033,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8053,9 +8053,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1402,
+ "line": 1406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1402"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406"
}
],
"signatures": [
@@ -8076,9 +8076,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1402,
+ "line": 1406,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1402"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1406"
}
],
"parameters": [
@@ -8090,7 +8090,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1034,
+ "target": 1041,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -8105,7 +8105,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 768,
+ "target": 775,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -8125,9 +8125,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2232,
+ "line": 2236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236"
}
],
"signatures": [
@@ -8148,9 +8148,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2232,
+ "line": 2236,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2236"
}
],
"parameters": [
@@ -8207,9 +8207,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2236,
+ "line": 2240,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2236"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2240"
}
],
"type": {
@@ -8236,9 +8236,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2235,
+ "line": 2239,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2239"
}
],
"type": {
@@ -8256,9 +8256,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2234,
+ "line": 2238,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2238"
}
]
}
@@ -8294,9 +8294,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2240,
+ "line": 2244,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2240"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2244"
}
],
"type": {
@@ -8319,9 +8319,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2241,
+ "line": 2245,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2241"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2245"
}
],
"type": {
@@ -8339,9 +8339,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2239,
+ "line": 2243,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2243"
}
]
}
@@ -8364,9 +8364,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2243,
+ "line": 2247,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247"
}
],
"type": {
@@ -8383,14 +8383,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2243,
+ "line": 2247,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -8405,9 +8405,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2243,
+ "line": 2247,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2247"
}
]
}
@@ -8430,9 +8430,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1828,
+ "line": 1832,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832"
}
],
"signatures": [
@@ -8453,9 +8453,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1828,
+ "line": 1832,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832"
}
],
"parameters": [
@@ -8491,9 +8491,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1829,
+ "line": 1833,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1829"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1833"
}
],
"type": {
@@ -8510,9 +8510,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1830,
+ "line": 1834,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1830"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1834"
}
],
"type": {
@@ -8530,9 +8530,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1828,
+ "line": 1832,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1832"
}
]
}
@@ -8548,7 +8548,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8568,9 +8568,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 543,
+ "line": 547,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L543"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547"
}
],
"signatures": [
@@ -8602,9 +8602,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 543,
+ "line": 547,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L543"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L547"
}
],
"parameters": [
@@ -8618,7 +8618,7 @@
},
"type": {
"type": "reference",
- "target": 901,
+ "target": 908,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -8633,7 +8633,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -8653,9 +8653,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1152,
+ "line": 1156,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1152"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156"
}
],
"signatures": [
@@ -8676,9 +8676,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1152,
+ "line": 1156,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1152"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1156"
}
],
"parameters": [
@@ -8690,7 +8690,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 950,
+ "target": 957,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -8705,7 +8705,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 773,
+ "target": 780,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -8725,9 +8725,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 727,
+ "line": 731,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L727"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731"
}
],
"signatures": [
@@ -8748,9 +8748,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 727,
+ "line": 731,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L727"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L731"
}
],
"parameters": [
@@ -8762,7 +8762,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 938,
+ "target": 945,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -8777,7 +8777,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 782,
+ "target": 789,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -8797,9 +8797,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1205,
+ "line": 1209,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1205"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209"
}
],
"signatures": [
@@ -8836,9 +8836,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1205,
+ "line": 1209,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1205"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1209"
}
],
"parameters": [
@@ -8850,7 +8850,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 920,
+ "target": 927,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -8865,7 +8865,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 768,
+ "target": 775,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -8885,9 +8885,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 663,
+ "line": 667,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L663"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667"
}
],
"signatures": [
@@ -8908,9 +8908,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 663,
+ "line": 667,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L663"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L667"
}
],
"parameters": [
@@ -8922,7 +8922,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 915,
+ "target": 922,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -8937,7 +8937,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 777,
+ "target": 784,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -8957,9 +8957,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1322,
+ "line": 1326,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326"
}
],
"signatures": [
@@ -8980,9 +8980,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1322,
+ "line": 1326,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1326"
}
],
"parameters": [
@@ -8994,7 +8994,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1048,
+ "target": 1055,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -9009,7 +9009,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 795,
+ "target": 802,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -9029,9 +9029,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 754,
+ "line": 758,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L754"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758"
}
],
"signatures": [
@@ -9063,9 +9063,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 754,
+ "line": 758,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L754"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L758"
}
],
"parameters": [
@@ -9077,7 +9077,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1011,
+ "target": 1018,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -9111,9 +9111,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
],
"type": {
@@ -9134,14 +9134,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -9155,14 +9155,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -9177,9 +9177,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 756,
+ "line": 760,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L756"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L760"
}
]
}
@@ -9194,9 +9194,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 757,
+ "line": 761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L757"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L761"
}
],
"type": {
@@ -9214,9 +9214,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 755,
+ "line": 759,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L759"
}
]
}
@@ -9239,9 +9239,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
@@ -9262,9 +9262,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
@@ -9281,9 +9281,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
@@ -9301,9 +9301,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
]
}
@@ -9318,14 +9318,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9340,9 +9340,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 759,
+ "line": 763,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L763"
}
]
}
@@ -9365,9 +9365,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
],
"signatures": [
@@ -9428,9 +9428,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
],
"parameters": [
@@ -9442,7 +9442,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1303,
+ "target": 1310,
"name": "SignOut",
"package": "@supabase/auth-js"
},
@@ -9474,9 +9474,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
],
"type": {
@@ -9488,7 +9488,7 @@
},
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9505,9 +9505,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2110,
+ "line": 2114,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2114"
}
]
}
@@ -9528,9 +9528,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 586,
+ "line": 590,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590"
}
],
"signatures": [
@@ -9571,9 +9571,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 586,
+ "line": 590,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L590"
}
],
"parameters": [
@@ -9585,7 +9585,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 907,
+ "target": 914,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -9600,7 +9600,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9620,9 +9620,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2888,
+ "line": 2892,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2888"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892"
}
],
"signatures": [
@@ -9642,7 +9642,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueClientOptions#autoRefreshToken",
- "target": 718
+ "target": 725
},
{
"kind": "text",
@@ -9658,9 +9658,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2888,
+ "line": 2892,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2888"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2892"
}
],
"type": {
@@ -9690,9 +9690,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2901,
+ "line": 2905,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2901"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905"
}
],
"signatures": [
@@ -9722,9 +9722,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2901,
+ "line": 2905,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2901"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2905"
}
],
"type": {
@@ -9754,9 +9754,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2407,
+ "line": 2411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2407"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411"
}
],
"signatures": [
@@ -9777,9 +9777,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2407,
+ "line": 2411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2407"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2411"
}
],
"parameters": [
@@ -9791,7 +9791,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 815,
+ "target": 822,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -9825,9 +9825,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2409,
+ "line": 2413,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2409"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2413"
}
],
"type": {
@@ -9850,9 +9850,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2410,
+ "line": 2414,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2410"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2414"
}
],
"type": {
@@ -9870,9 +9870,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2408,
+ "line": 2412,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2408"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2412"
}
]
}
@@ -9895,9 +9895,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2412,
+ "line": 2416,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416"
}
],
"type": {
@@ -9914,14 +9914,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2412,
+ "line": 2416,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9936,9 +9936,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2412,
+ "line": 2416,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L2412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L2416"
}
]
}
@@ -9961,9 +9961,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1757,
+ "line": 1761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761"
}
],
"signatures": [
@@ -9984,9 +9984,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1757,
+ "line": 1761,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1761"
}
],
"parameters": [
@@ -9998,7 +9998,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 872,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -10029,9 +10029,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1760,
+ "line": 1764,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1760"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1764"
}
],
"type": {
@@ -10049,9 +10049,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1759,
+ "line": 1763,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1763"
}
]
}
@@ -10068,7 +10068,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 805,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10088,9 +10088,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1261,
+ "line": 1265,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265"
}
],
"signatures": [
@@ -10111,9 +10111,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1261,
+ "line": 1265,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L1265"
}
],
"parameters": [
@@ -10125,7 +10125,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1012,
+ "target": 1019,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -10140,7 +10140,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 759,
+ "target": 766,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -10164,7 +10164,7 @@
{
"title": "Methods",
"children": [
- 201, 648, 276, 339, 458, 185, 172, 468, 420, 269, 369, 273, 444, 357, 189, 257, 198,
+ 201, 655, 276, 339, 458, 185, 172, 468, 420, 269, 369, 273, 444, 357, 189, 257, 198,
260, 195, 266, 204, 410, 192, 534, 536, 479, 345, 263
]
}
@@ -10172,14 +10172,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 190,
+ "line": 192,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/GoTrueClient.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/GoTrueClient.ts#L192"
}
]
},
{
- "id": 681,
+ "id": 688,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "declaration",
"kind": 128,
@@ -10205,7 +10205,7 @@
},
"children": [
{
- "id": 682,
+ "id": 689,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -10215,12 +10215,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"signatures": [
{
- "id": 683,
+ "id": 690,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "signature",
"kind": 16384,
@@ -10230,12 +10230,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L37"
}
],
"parameters": [
{
- "id": 684,
+ "id": 691,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -10248,7 +10248,7 @@
],
"type": {
"type": "reference",
- "target": 681,
+ "target": 688,
"name": "NavigatorLockAcquireTimeoutError",
"package": "@supabase/auth-js"
},
@@ -10266,7 +10266,7 @@
}
},
{
- "id": 685,
+ "id": 692,
"name": "isAcquireTimeout",
"variant": "declaration",
"kind": 1024,
@@ -10280,7 +10280,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 35,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L35"
}
],
"type": {
@@ -10298,11 +10298,11 @@
"groups": [
{
"title": "Constructors",
- "children": [682]
+ "children": [689]
},
{
"title": "Properties",
- "children": [685]
+ "children": [692]
}
],
"sources": [
@@ -10310,7 +10310,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 52,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L52"
}
],
"extendedTypes": [
@@ -10326,14 +10326,14 @@
]
},
{
- "id": 878,
+ "id": 885,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 880,
+ "id": 887,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -10369,7 +10369,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 450,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L450"
}
],
"type": {
@@ -10378,7 +10378,7 @@
}
},
{
- "id": 883,
+ "id": 890,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -10398,7 +10398,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 476,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L476"
}
],
"type": {
@@ -10407,7 +10407,7 @@
}
},
{
- "id": 889,
+ "id": 896,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -10428,7 +10428,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 401,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L401"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401"
}
],
"type": {
@@ -10442,7 +10442,7 @@
}
},
{
- "id": 881,
+ "id": 888,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -10462,7 +10462,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L457"
}
],
"type": {
@@ -10471,7 +10471,7 @@
}
},
{
- "id": 886,
+ "id": 893,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -10507,7 +10507,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L501"
}
],
"type": {
@@ -10516,7 +10516,7 @@
}
},
{
- "id": 887,
+ "id": 894,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -10537,7 +10537,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 418,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418"
}
],
"type": {
@@ -10551,7 +10551,7 @@
}
},
{
- "id": 890,
+ "id": 897,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -10572,7 +10572,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411"
}
],
"type": {
@@ -10586,7 +10586,7 @@
}
},
{
- "id": 885,
+ "id": 892,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -10614,7 +10614,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 494,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L494"
}
],
"type": {
@@ -10623,7 +10623,7 @@
}
},
{
- "id": 888,
+ "id": 895,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -10644,7 +10644,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -10658,7 +10658,7 @@
}
},
{
- "id": 882,
+ "id": 889,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -10678,7 +10678,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L464"
}
],
"type": {
@@ -10687,7 +10687,7 @@
}
},
{
- "id": 884,
+ "id": 891,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -10739,7 +10739,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L485"
}
],
"type": {
@@ -10748,7 +10748,7 @@
}
},
{
- "id": 879,
+ "id": 886,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -10784,7 +10784,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L440"
}
],
"type": {
@@ -10796,7 +10796,7 @@
"groups": [
{
"title": "Properties",
- "children": [880, 883, 889, 881, 886, 887, 890, 885, 888, 882, 884, 879]
+ "children": [887, 890, 896, 888, 893, 894, 897, 892, 895, 889, 891, 886]
}
],
"sources": [
@@ -10804,7 +10804,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 429,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L429"
}
],
"extendedTypes": [
@@ -10817,7 +10817,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 872,
+ "target": 879,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -10832,7 +10832,7 @@
]
},
{
- "id": 812,
+ "id": 819,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -10852,7 +10852,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1262
+ "target": 1269
},
{
"kind": "text",
@@ -10864,7 +10864,7 @@
},
"children": [
{
- "id": 813,
+ "id": 820,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -10882,18 +10882,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 286,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L286"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L286"
}
],
"type": {
"type": "reference",
- "target": 810,
+ "target": 817,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 814,
+ "id": 821,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -10911,7 +10911,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L292"
}
],
"type": {
@@ -10923,7 +10923,7 @@
"groups": [
{
"title": "Properties",
- "children": [813, 814]
+ "children": [820, 821]
}
],
"sources": [
@@ -10931,12 +10931,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 284,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L284"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L284"
}
]
},
{
- "id": 1447,
+ "id": 1462,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -10951,7 +10951,7 @@
},
"children": [
{
- "id": 1451,
+ "id": 1466,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -10959,14 +10959,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1753,
+ "line": 1778,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1753"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778"
}
],
"signatures": [
{
- "id": 1452,
+ "id": 1467,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -10993,14 +10993,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1753,
+ "line": 1778,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1753"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1778"
}
],
"parameters": [
{
- "id": 1453,
+ "id": 1468,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11019,7 +11019,7 @@
}
},
{
- "id": 1454,
+ "id": 1469,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11037,14 +11037,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1455,
+ "id": 1470,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1456,
+ "id": 1471,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -11054,9 +11054,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1780,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1780"
}
],
"type": {
@@ -11068,15 +11068,15 @@
"groups": [
{
"title": "Properties",
- "children": [1456]
+ "children": [1471]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1755,
+ "line": 1780,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1780"
}
]
}
@@ -11092,7 +11092,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1444,
+ "target": 1451,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -11104,7 +11104,7 @@
]
},
{
- "id": 1457,
+ "id": 1472,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -11112,14 +11112,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1766,
+ "line": 1791,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1766"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1791"
}
],
"signatures": [
{
- "id": 1458,
+ "id": 1473,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -11146,14 +11146,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1766,
+ "line": 1791,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1766"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1791"
}
],
"parameters": [
{
- "id": 1459,
+ "id": 1474,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11172,7 +11172,7 @@
}
},
{
- "id": 1460,
+ "id": 1475,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11190,14 +11190,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1461,
+ "id": 1476,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1462,
+ "id": 1477,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -11207,9 +11207,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1768,
+ "line": 1793,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1768"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793"
}
],
"type": {
@@ -11221,15 +11221,15 @@
"groups": [
{
"title": "Properties",
- "children": [1462]
+ "children": [1477]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1768,
+ "line": 1793,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1768"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1793"
}
]
}
@@ -11245,7 +11245,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1444,
+ "target": 1451,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -11257,7 +11257,7 @@
]
},
{
- "id": 1448,
+ "id": 1463,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -11265,14 +11265,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1743,
+ "line": 1768,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1743"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768"
}
],
"signatures": [
{
- "id": 1449,
+ "id": 1464,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -11299,14 +11299,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1743,
+ "line": 1768,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1743"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1768"
}
],
"parameters": [
{
- "id": 1450,
+ "id": 1465,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -11334,7 +11334,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1443,
+ "target": 1450,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -11344,32 +11344,238 @@
}
}
]
+ },
+ {
+ "id": 1478,
+ "name": "listGrants",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1802,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1802"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1479,
+ "name": "listGrants",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists all OAuth grants that the authenticated user has authorized.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Response with array of OAuth grants with client information and granted scopes"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1802,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1802"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1459,
+ "name": "AuthOAuthGrantsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1480,
+ "name": "revokeGrant",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1815,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1481,
+ "name": "revokeGrant",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Revokes a user's OAuth grant for a specific client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nRevocation marks consent as revoked, deletes active sessions for that OAuth client,\nand invalidates associated refresh tokens."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Empty response on successful revocation"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1815,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1482,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Revocation options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1483,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1484,
+ "name": "clientId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The OAuth client identifier (UUID) to revoke access for"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1815,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1484]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1815,
+ "character": 23,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1815"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1460,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
}
],
"groups": [
{
"title": "Methods",
- "children": [1451, 1457, 1448]
+ "children": [1466, 1472, 1463, 1478, 1480]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1730,
+ "line": 1755,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1730"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1755"
}
]
},
{
- "id": 1085,
+ "id": 1092,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1086,
+ "id": 1093,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -11405,7 +11611,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 855,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L855"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L855"
}
],
"type": {
@@ -11414,7 +11620,7 @@
}
},
{
- "id": 1087,
+ "id": 1094,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -11434,7 +11640,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 857,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L857"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L857"
}
],
"type": {
@@ -11446,7 +11652,7 @@
"groups": [
{
"title": "Properties",
- "children": [1086, 1087]
+ "children": [1093, 1094]
}
],
"sources": [
@@ -11454,12 +11660,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 849,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L849"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L849"
}
]
},
{
- "id": 1278,
+ "id": 1285,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -11480,7 +11686,7 @@
},
"children": [
{
- "id": 1282,
+ "id": 1289,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -11490,12 +11696,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1298,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298"
}
],
"signatures": [
{
- "id": 1283,
+ "id": 1290,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -11515,7 +11721,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1251
+ "target": 1258
}
]
},
@@ -11530,19 +11736,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1298,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1298"
}
],
"parameters": [
{
- "id": 1284,
+ "id": 1291,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1268,
+ "target": 1275,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -11557,7 +11763,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1265,
+ "target": 1272,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -11569,7 +11775,7 @@
]
},
{
- "id": 1279,
+ "id": 1286,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -11579,12 +11785,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1288,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288"
}
],
"signatures": [
{
- "id": 1280,
+ "id": 1287,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -11602,19 +11808,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1288,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1288"
}
],
"parameters": [
{
- "id": 1281,
+ "id": 1288,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1275,
+ "target": 1282,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -11629,7 +11835,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1272,
+ "target": 1279,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -11644,7 +11850,7 @@
"groups": [
{
"title": "Methods",
- "children": [1282, 1279]
+ "children": [1289, 1286]
}
],
"sources": [
@@ -11652,12 +11858,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1283,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1283"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1283"
}
]
},
{
- "id": 1404,
+ "id": 1411,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -11672,7 +11878,7 @@
},
"children": [
{
- "id": 1408,
+ "id": 1415,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -11682,12 +11888,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1637,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1637"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637"
}
],
"signatures": [
{
- "id": 1409,
+ "id": 1416,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -11713,19 +11919,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1637,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1637"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1637"
}
],
"parameters": [
{
- "id": 1410,
+ "id": 1417,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1383,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -11740,7 +11946,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -11752,7 +11958,7 @@
]
},
{
- "id": 1418,
+ "id": 1425,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -11762,12 +11968,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"signatures": [
{
- "id": 1419,
+ "id": 1426,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -11793,12 +11999,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"parameters": [
{
- "id": 1420,
+ "id": 1427,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -11819,14 +12025,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1421,
+ "id": 1428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1422,
+ "id": 1429,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -11836,7 +12042,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"type": {
@@ -11845,7 +12051,7 @@
}
},
{
- "id": 1423,
+ "id": 1430,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -11855,7 +12061,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
],
"type": {
@@ -11867,7 +12073,7 @@
},
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11878,7 +12084,7 @@
"groups": [
{
"title": "Properties",
- "children": [1422, 1423]
+ "children": [1429, 1430]
}
],
"sources": [
@@ -11886,7 +12092,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1661,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1661"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1661"
}
]
}
@@ -11899,7 +12105,7 @@
]
},
{
- "id": 1411,
+ "id": 1418,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -11909,12 +12115,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1645,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1645"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645"
}
],
"signatures": [
{
- "id": 1412,
+ "id": 1419,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -11940,12 +12146,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1645,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1645"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1645"
}
],
"parameters": [
{
- "id": 1413,
+ "id": 1420,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -11965,7 +12171,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -11977,7 +12183,7 @@
]
},
{
- "id": 1405,
+ "id": 1412,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -11987,12 +12193,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1629,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1629"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629"
}
],
"signatures": [
{
- "id": 1406,
+ "id": 1413,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -12018,12 +12224,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1629,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1629"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1629"
}
],
"parameters": [
{
- "id": 1407,
+ "id": 1414,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -12032,7 +12238,7 @@
},
"type": {
"type": "reference",
- "target": 1299,
+ "target": 1306,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -12047,7 +12253,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1392,
+ "target": 1399,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -12059,7 +12265,7 @@
]
},
{
- "id": 1424,
+ "id": 1431,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -12069,12 +12275,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1669"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669"
}
],
"signatures": [
{
- "id": 1425,
+ "id": 1432,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -12100,12 +12306,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1669,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1669"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1669"
}
],
"parameters": [
{
- "id": 1426,
+ "id": 1433,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12125,7 +12331,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12137,7 +12343,7 @@
]
},
{
- "id": 1414,
+ "id": 1421,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -12147,12 +12353,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1653,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1653"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653"
}
],
"signatures": [
{
- "id": 1415,
+ "id": 1422,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -12178,12 +12384,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1653,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1653"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1653"
}
],
"parameters": [
{
- "id": 1416,
+ "id": 1423,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -12194,14 +12400,14 @@
}
},
{
- "id": 1417,
+ "id": 1424,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1384,
+ "target": 1391,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -12216,7 +12422,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1391,
+ "target": 1398,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -12231,7 +12437,7 @@
"groups": [
{
"title": "Methods",
- "children": [1408, 1418, 1411, 1405, 1424, 1414]
+ "children": [1415, 1425, 1418, 1412, 1431, 1421]
}
],
"sources": [
@@ -12239,12 +12445,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1622,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1622"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1622"
}
]
},
{
- "id": 1148,
+ "id": 1155,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -12259,7 +12465,7 @@
},
"children": [
{
- "id": 1264,
+ "id": 1271,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -12269,7 +12475,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1241,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1241"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1241"
}
],
"type": {
@@ -12283,7 +12489,7 @@
}
},
{
- "id": 1169,
+ "id": 1176,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -12293,30 +12499,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1191,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1192,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192"
}
],
"signatures": [
{
- "id": 1170,
+ "id": 1177,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -12334,12 +12540,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1189"
}
],
"parameters": [
{
- "id": 1171,
+ "id": 1178,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -12347,14 +12553,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1172,
+ "id": 1179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1173,
+ "id": 1180,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -12372,7 +12578,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 963,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963"
}
],
"type": {
@@ -12384,7 +12590,7 @@
"groups": [
{
"title": "Properties",
- "children": [1173]
+ "children": [1180]
}
],
"sources": [
@@ -12392,7 +12598,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -12412,14 +12618,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1174,
+ "id": 1181,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1175,
+ "id": 1182,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12429,7 +12635,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -12438,7 +12644,7 @@
}
},
{
- "id": 1176,
+ "id": 1183,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12448,12 +12654,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12462,7 +12668,7 @@
"groups": [
{
"title": "Properties",
- "children": [1175, 1176]
+ "children": [1182, 1183]
}
],
"sources": [
@@ -12470,7 +12676,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -12478,14 +12684,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1177,
+ "id": 1184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1178,
+ "id": 1185,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12495,20 +12701,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1179,
+ "id": 1186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1182,
+ "id": 1189,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -12526,7 +12732,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1059,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1059"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059"
}
],
"type": {
@@ -12535,7 +12741,7 @@
}
},
{
- "id": 1180,
+ "id": 1187,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -12553,7 +12759,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1053,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1053"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053"
}
],
"type": {
@@ -12562,7 +12768,7 @@
}
},
{
- "id": 1181,
+ "id": 1188,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -12580,7 +12786,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
@@ -12592,7 +12798,7 @@
"groups": [
{
"title": "Properties",
- "children": [1182, 1180, 1181]
+ "children": [1189, 1187, 1188]
}
],
"sources": [
@@ -12600,14 +12806,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
}
},
{
- "id": 1183,
+ "id": 1190,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12617,7 +12823,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -12629,7 +12835,7 @@
"groups": [
{
"title": "Properties",
- "children": [1178, 1183]
+ "children": [1185, 1190]
}
],
"sources": [
@@ -12637,7 +12843,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -12650,7 +12856,7 @@
}
},
{
- "id": 1184,
+ "id": 1191,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -12660,12 +12866,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1190"
}
],
"parameters": [
{
- "id": 1185,
+ "id": 1192,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -12673,14 +12879,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1186,
+ "id": 1193,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1188,
+ "id": 1195,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -12698,7 +12904,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 973,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L973"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L973"
}
],
"type": {
@@ -12716,7 +12922,7 @@
}
},
{
- "id": 1187,
+ "id": 1194,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -12734,7 +12940,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 963,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963"
}
],
"type": {
@@ -12746,7 +12952,7 @@
"groups": [
{
"title": "Properties",
- "children": [1188, 1187]
+ "children": [1195, 1194]
}
],
"sources": [
@@ -12754,7 +12960,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -12774,14 +12980,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1189,
+ "id": 1196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1190,
+ "id": 1197,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12791,7 +12997,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -12800,7 +13006,7 @@
}
},
{
- "id": 1191,
+ "id": 1198,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12810,12 +13016,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12824,7 +13030,7 @@
"groups": [
{
"title": "Properties",
- "children": [1190, 1191]
+ "children": [1197, 1198]
}
],
"sources": [
@@ -12832,7 +13038,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -12840,14 +13046,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1192,
+ "id": 1199,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1193,
+ "id": 1200,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12857,20 +13063,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1194,
+ "id": 1201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1197,
+ "id": 1204,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -12888,7 +13094,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1059,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1059"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059"
}
],
"type": {
@@ -12897,7 +13103,7 @@
}
},
{
- "id": 1195,
+ "id": 1202,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -12915,7 +13121,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1053,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1053"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053"
}
],
"type": {
@@ -12924,7 +13130,7 @@
}
},
{
- "id": 1196,
+ "id": 1203,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -12942,7 +13148,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
@@ -12954,7 +13160,7 @@
"groups": [
{
"title": "Properties",
- "children": [1197, 1195, 1196]
+ "children": [1204, 1202, 1203]
}
],
"sources": [
@@ -12962,14 +13168,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
}
},
{
- "id": 1198,
+ "id": 1205,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12979,7 +13185,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -12991,7 +13197,7 @@
"groups": [
{
"title": "Properties",
- "children": [1193, 1198]
+ "children": [1200, 1205]
}
],
"sources": [
@@ -12999,7 +13205,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -13012,7 +13218,7 @@
}
},
{
- "id": 1199,
+ "id": 1206,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -13022,12 +13228,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1191,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1191"
}
],
"parameters": [
{
- "id": 1200,
+ "id": 1207,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -13035,14 +13241,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1201,
+ "id": 1208,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1202,
+ "id": 1209,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -13060,7 +13266,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 963,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L963"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L963"
}
],
"type": {
@@ -13069,7 +13275,7 @@
}
},
{
- "id": 1203,
+ "id": 1210,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -13079,20 +13285,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 982,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1204,
+ "id": 1211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1205,
+ "id": 1212,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -13110,7 +13316,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 984,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L984"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L984"
}
],
"type": {
@@ -13119,7 +13325,7 @@
}
},
{
- "id": 1206,
+ "id": 1213,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -13139,7 +13345,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 986,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L986"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -13154,7 +13360,7 @@
"groups": [
{
"title": "Properties",
- "children": [1205, 1206]
+ "children": [1212, 1213]
}
],
"sources": [
@@ -13162,7 +13368,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 982,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L982"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L982"
}
]
}
@@ -13172,7 +13378,7 @@
"groups": [
{
"title": "Properties",
- "children": [1202, 1203]
+ "children": [1209, 1210]
}
],
"sources": [
@@ -13180,7 +13386,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -13200,14 +13406,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1207,
+ "id": 1214,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1208,
+ "id": 1215,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13217,7 +13423,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -13226,7 +13432,7 @@
}
},
{
- "id": 1209,
+ "id": 1216,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13236,12 +13442,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13250,7 +13456,7 @@
"groups": [
{
"title": "Properties",
- "children": [1208, 1209]
+ "children": [1215, 1216]
}
],
"sources": [
@@ -13258,7 +13464,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -13266,14 +13472,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1210,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1211,
+ "id": 1218,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13283,20 +13489,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1212,
+ "id": 1219,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1215,
+ "id": 1222,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -13314,7 +13520,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1059,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1059"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1059"
}
],
"type": {
@@ -13323,7 +13529,7 @@
}
},
{
- "id": 1213,
+ "id": 1220,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -13341,7 +13547,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1053,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1053"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1053"
}
],
"type": {
@@ -13350,7 +13556,7 @@
}
},
{
- "id": 1214,
+ "id": 1221,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13368,7 +13574,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
@@ -13377,7 +13583,7 @@
}
},
{
- "id": 1216,
+ "id": 1223,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -13387,7 +13593,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1079,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1079"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1079"
}
],
"type": {
@@ -13396,14 +13602,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1217,
+ "id": 1224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1219,
+ "id": 1226,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -13413,20 +13619,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1082,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1082"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1220,
+ "id": 1227,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1221,
+ "id": 1228,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -13436,7 +13642,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1082,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1082"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082"
}
],
"type": {
@@ -13453,7 +13659,7 @@
"groups": [
{
"title": "Properties",
- "children": [1221]
+ "children": [1228]
}
],
"sources": [
@@ -13461,14 +13667,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1082,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1082"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1082"
}
]
}
}
},
{
- "id": 1218,
+ "id": 1225,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13478,7 +13684,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1081,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1081"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1081"
}
],
"type": {
@@ -13490,7 +13696,7 @@
"groups": [
{
"title": "Properties",
- "children": [1219, 1218]
+ "children": [1226, 1225]
}
],
"sources": [
@@ -13498,7 +13704,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1080,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1080"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1080"
}
]
}
@@ -13506,14 +13712,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1222,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1224,
+ "id": 1231,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -13523,20 +13729,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1086,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1086"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1225,
+ "id": 1232,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1226,
+ "id": 1233,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -13546,7 +13752,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1086,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1086"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086"
}
],
"type": {
@@ -13563,7 +13769,7 @@
"groups": [
{
"title": "Properties",
- "children": [1226]
+ "children": [1233]
}
],
"sources": [
@@ -13571,14 +13777,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1086,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1086"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1086"
}
]
}
}
},
{
- "id": 1223,
+ "id": 1230,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -13588,7 +13794,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1085,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1085"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1085"
}
],
"type": {
@@ -13600,7 +13806,7 @@
"groups": [
{
"title": "Properties",
- "children": [1224, 1223]
+ "children": [1231, 1230]
}
],
"sources": [
@@ -13608,7 +13814,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1084,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1084"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1084"
}
]
}
@@ -13620,7 +13826,7 @@
"groups": [
{
"title": "Properties",
- "children": [1215, 1213, 1214, 1216]
+ "children": [1222, 1220, 1221, 1223]
}
],
"sources": [
@@ -13628,14 +13834,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
}
},
{
- "id": 1227,
+ "id": 1234,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13645,7 +13851,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -13657,7 +13863,7 @@
"groups": [
{
"title": "Properties",
- "children": [1211, 1227]
+ "children": [1218, 1234]
}
],
"sources": [
@@ -13665,7 +13871,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -13678,7 +13884,7 @@
}
},
{
- "id": 1228,
+ "id": 1235,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -13688,19 +13894,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1192,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1192"
}
],
"parameters": [
{
- "id": 1229,
+ "id": 1236,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1118,
+ "target": 1125,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -13715,7 +13921,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1137,
+ "target": 1144,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -13727,7 +13933,7 @@
]
},
{
- "id": 1254,
+ "id": 1261,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -13737,12 +13943,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1213"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213"
}
],
"signatures": [
{
- "id": 1255,
+ "id": 1262,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -13760,12 +13966,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1213"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1213"
}
],
"parameters": [
{
- "id": 1256,
+ "id": 1263,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -13773,14 +13979,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1257,
+ "id": 1264,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1259,
+ "id": 1266,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -13798,7 +14004,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 917,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L917"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917"
}
],
"type": {
@@ -13807,7 +14013,7 @@
}
},
{
- "id": 1258,
+ "id": 1265,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -13825,7 +14031,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -13837,7 +14043,7 @@
"groups": [
{
"title": "Properties",
- "children": [1259, 1258]
+ "children": [1266, 1265]
}
],
"sources": [
@@ -13845,7 +14051,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -13861,7 +14067,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -13873,7 +14079,7 @@
]
},
{
- "id": 1149,
+ "id": 1156,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -13883,30 +14089,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183"
}
],
"signatures": [
{
- "id": 1150,
+ "id": 1157,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -13940,12 +14146,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1180"
}
],
"parameters": [
{
- "id": 1151,
+ "id": 1158,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -13953,14 +14159,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1152,
+ "id": 1159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1153,
+ "id": 1160,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -13978,7 +14184,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -13987,7 +14193,7 @@
}
},
{
- "id": 1154,
+ "id": 1161,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14007,7 +14213,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359"
}
],
"type": {
@@ -14016,7 +14222,7 @@
}
},
{
- "id": 1155,
+ "id": 1162,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -14036,7 +14242,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1364,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1364"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1364"
}
],
"type": {
@@ -14048,7 +14254,7 @@
"groups": [
{
"title": "Properties",
- "children": [1153, 1154, 1155]
+ "children": [1160, 1161, 1162]
}
],
"sources": [
@@ -14056,7 +14262,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -14072,7 +14278,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1309,
+ "target": 1316,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -14082,7 +14288,7 @@
}
},
{
- "id": 1156,
+ "id": 1163,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14092,12 +14298,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1181"
}
],
"parameters": [
{
- "id": 1157,
+ "id": 1164,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14105,14 +14311,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1158,
+ "id": 1165,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1159,
+ "id": 1166,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -14130,7 +14336,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -14139,7 +14345,7 @@
}
},
{
- "id": 1160,
+ "id": 1167,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14159,7 +14365,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359"
}
],
"type": {
@@ -14168,7 +14374,7 @@
}
},
{
- "id": 1161,
+ "id": 1168,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -14186,7 +14392,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1371,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1371"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1371"
}
],
"type": {
@@ -14198,7 +14404,7 @@
"groups": [
{
"title": "Properties",
- "children": [1159, 1160, 1161]
+ "children": [1166, 1167, 1168]
}
],
"sources": [
@@ -14206,7 +14412,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -14222,7 +14428,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1310,
+ "target": 1317,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -14232,7 +14438,7 @@
}
},
{
- "id": 1162,
+ "id": 1169,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14242,12 +14448,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1182"
}
],
"parameters": [
{
- "id": 1163,
+ "id": 1170,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14255,14 +14461,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1164,
+ "id": 1171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1165,
+ "id": 1172,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -14280,7 +14486,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1357"
}
],
"type": {
@@ -14289,7 +14495,7 @@
}
},
{
- "id": 1166,
+ "id": 1173,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -14309,7 +14515,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1359"
}
],
"type": {
@@ -14321,7 +14527,7 @@
"groups": [
{
"title": "Properties",
- "children": [1165, 1166]
+ "children": [1172, 1173]
}
],
"sources": [
@@ -14329,7 +14535,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -14345,7 +14551,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1311,
+ "target": 1318,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -14355,7 +14561,7 @@
}
},
{
- "id": 1167,
+ "id": 1174,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -14365,19 +14571,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1183"
}
],
"parameters": [
{
- "id": 1168,
+ "id": 1175,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1101,
+ "target": 1108,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -14392,7 +14598,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1128,
+ "target": 1135,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -14404,7 +14610,7 @@
]
},
{
- "id": 1262,
+ "id": 1269,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -14414,12 +14620,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1238"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238"
}
],
"signatures": [
{
- "id": 1263,
+ "id": 1270,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -14461,7 +14667,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1238"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1238"
}
],
"type": {
@@ -14473,7 +14679,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1143,
+ "target": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -14485,7 +14691,7 @@
]
},
{
- "id": 1260,
+ "id": 1267,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -14495,12 +14701,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1223,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1223"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223"
}
],
"signatures": [
{
- "id": 1261,
+ "id": 1268,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -14524,7 +14730,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1149
+ "target": 1156
},
{
"kind": "text",
@@ -14538,7 +14744,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1262
+ "target": 1269
},
{
"kind": "text",
@@ -14567,7 +14773,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1223,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1223"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1223"
}
],
"type": {
@@ -14579,7 +14785,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1138,
+ "target": 1145,
"typeArguments": [
{
"type": "typeOperator",
@@ -14614,7 +14820,7 @@
]
},
{
- "id": 1251,
+ "id": 1258,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -14624,12 +14830,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1207,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1207"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207"
}
],
"signatures": [
{
- "id": 1252,
+ "id": 1259,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -14663,19 +14869,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1207,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1207"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1207"
}
],
"parameters": [
{
- "id": 1253,
+ "id": 1260,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1102,
+ "target": 1109,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -14690,7 +14896,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1129,
+ "target": 1136,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -14702,7 +14908,7 @@
]
},
{
- "id": 1230,
+ "id": 1237,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -14712,30 +14918,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1201,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201"
}
],
"signatures": [
{
- "id": 1231,
+ "id": 1238,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -14753,12 +14959,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1198"
}
],
"parameters": [
{
- "id": 1232,
+ "id": 1239,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14766,14 +14972,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1233,
+ "id": 1240,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1235,
+ "id": 1242,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -14791,7 +14997,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 912,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L912"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
@@ -14800,7 +15006,7 @@
}
},
{
- "id": 1236,
+ "id": 1243,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -14818,7 +15024,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 917,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L917"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917"
}
],
"type": {
@@ -14827,7 +15033,7 @@
}
},
{
- "id": 1234,
+ "id": 1241,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -14845,7 +15051,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -14857,7 +15063,7 @@
"groups": [
{
"title": "Properties",
- "children": [1235, 1236, 1234]
+ "children": [1242, 1243, 1241]
}
],
"sources": [
@@ -14865,7 +15071,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -14881,7 +15087,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -14891,7 +15097,7 @@
}
},
{
- "id": 1237,
+ "id": 1244,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -14901,12 +15107,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1199"
}
],
"parameters": [
{
- "id": 1238,
+ "id": 1245,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14914,14 +15120,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1246,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1241,
+ "id": 1248,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -14939,7 +15145,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 912,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L912"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
@@ -14948,7 +15154,7 @@
}
},
{
- "id": 1242,
+ "id": 1249,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -14966,7 +15172,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 917,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L917"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L917"
}
],
"type": {
@@ -14975,7 +15181,7 @@
}
},
{
- "id": 1240,
+ "id": 1247,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -14993,7 +15199,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -15005,7 +15211,7 @@
"groups": [
{
"title": "Properties",
- "children": [1241, 1242, 1240]
+ "children": [1248, 1249, 1247]
}
],
"sources": [
@@ -15013,7 +15219,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -15029,7 +15235,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15039,7 +15245,7 @@
}
},
{
- "id": 1243,
+ "id": 1250,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15049,12 +15255,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1200"
}
],
"parameters": [
{
- "id": 1244,
+ "id": 1251,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -15062,14 +15268,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1245,
+ "id": 1252,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1247,
+ "id": 1254,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -15087,7 +15293,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 912,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L912"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L912"
}
],
"type": {
@@ -15096,7 +15302,7 @@
}
},
{
- "id": 1246,
+ "id": 1253,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -15114,7 +15320,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 910,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L910"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L910"
}
],
"type": {
@@ -15123,7 +15329,7 @@
}
},
{
- "id": 1248,
+ "id": 1255,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -15133,7 +15339,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 947,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L947"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947"
}
],
"type": {
@@ -15179,7 +15385,7 @@
"groups": [
{
"title": "Properties",
- "children": [1247, 1246, 1248]
+ "children": [1254, 1253, 1255]
}
],
"sources": [
@@ -15187,7 +15393,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
]
}
@@ -15203,7 +15409,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15213,7 +15419,7 @@
}
},
{
- "id": 1249,
+ "id": 1256,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -15223,19 +15429,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1201,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1201"
}
],
"parameters": [
{
- "id": 1250,
+ "id": 1257,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1113,
+ "target": 1120,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -15250,7 +15456,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1127,
+ "target": 1134,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -15265,11 +15471,11 @@
"groups": [
{
"title": "Properties",
- "children": [1264]
+ "children": [1271]
},
{
"title": "Methods",
- "children": [1169, 1254, 1149, 1262, 1260, 1251, 1230]
+ "children": [1176, 1261, 1156, 1269, 1267, 1258, 1237]
}
],
"sources": [
@@ -15277,19 +15483,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1170,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1170"
}
]
},
{
- "id": 1347,
+ "id": 1354,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1350,
+ "id": 1357,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -15301,7 +15507,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1494,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1494"
}
],
"type": {
@@ -15310,7 +15516,7 @@
}
},
{
- "id": 1349,
+ "id": 1356,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -15320,7 +15526,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1493,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1493"
}
],
"type": {
@@ -15332,7 +15538,7 @@
}
},
{
- "id": 1351,
+ "id": 1358,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -15344,7 +15550,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1495,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1495"
}
],
"type": {
@@ -15353,7 +15559,7 @@
}
},
{
- "id": 1348,
+ "id": 1355,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -15363,7 +15569,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1492"
}
],
"type": {
@@ -15388,7 +15594,7 @@
"groups": [
{
"title": "Properties",
- "children": [1350, 1349, 1351, 1348]
+ "children": [1357, 1356, 1358, 1355]
}
],
"sources": [
@@ -15396,12 +15602,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1491,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1491"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1491"
}
],
"indexSignatures": [
{
- "id": 1352,
+ "id": 1359,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15411,12 +15617,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1496,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1496"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1496"
}
],
"parameters": [
{
- "id": 1353,
+ "id": 1360,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15435,7 +15641,7 @@
]
},
{
- "id": 1327,
+ "id": 1334,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -15461,7 +15667,7 @@
},
"children": [
{
- "id": 1343,
+ "id": 1350,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -15473,12 +15679,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459"
}
],
"type": {
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -15489,7 +15695,7 @@
}
},
{
- "id": 1335,
+ "id": 1342,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -15501,21 +15707,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1482,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1482"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1482"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 812,
+ "target": 819,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1333,
+ "id": 1340,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -15527,18 +15733,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1480,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1480"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1480"
}
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 845,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1339,
+ "id": 1346,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -15550,7 +15756,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455"
}
],
"type": {
@@ -15576,7 +15782,7 @@
}
},
{
- "id": 1328,
+ "id": 1335,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -15588,7 +15794,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1473,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1473"
}
],
"type": {
@@ -15597,7 +15803,7 @@
}
},
{
- "id": 1340,
+ "id": 1347,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -15609,7 +15815,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1456"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456"
}
],
"type": {
@@ -15623,7 +15829,7 @@
}
},
{
- "id": 1341,
+ "id": 1348,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -15635,7 +15841,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457"
}
],
"type": {
@@ -15649,7 +15855,7 @@
}
},
{
- "id": 1330,
+ "id": 1337,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -15661,7 +15867,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1475,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1475"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1475"
}
],
"type": {
@@ -15670,7 +15876,7 @@
}
},
{
- "id": 1337,
+ "id": 1344,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -15682,7 +15888,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1453"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453"
}
],
"type": {
@@ -15696,7 +15902,7 @@
}
},
{
- "id": 1331,
+ "id": 1338,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -15708,7 +15914,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1478"
}
],
"type": {
@@ -15717,7 +15923,7 @@
}
},
{
- "id": 1332,
+ "id": 1339,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -15729,7 +15935,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1479,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1479"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1479"
}
],
"type": {
@@ -15738,7 +15944,7 @@
}
},
{
- "id": 1329,
+ "id": 1336,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -15750,7 +15956,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1474,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1474"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1474"
}
],
"type": {
@@ -15759,7 +15965,7 @@
}
},
{
- "id": 1336,
+ "id": 1343,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -15771,7 +15977,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1485"
}
],
"type": {
@@ -15780,7 +15986,7 @@
}
},
{
- "id": 1342,
+ "id": 1349,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -15792,7 +15998,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1458,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1458"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458"
}
],
"type": {
@@ -15806,7 +16012,7 @@
}
},
{
- "id": 1344,
+ "id": 1351,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -15818,7 +16024,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1460,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460"
}
],
"type": {
@@ -15832,7 +16038,7 @@
}
},
{
- "id": 1338,
+ "id": 1345,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -15844,7 +16050,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454"
}
],
"type": {
@@ -15858,7 +16064,7 @@
}
},
{
- "id": 1334,
+ "id": 1341,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -15870,12 +16076,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1481,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1481"
}
],
"type": {
"type": "reference",
- "target": 843,
+ "target": 850,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -15885,8 +16091,8 @@
{
"title": "Properties",
"children": [
- 1343, 1335, 1333, 1339, 1328, 1340, 1341, 1330, 1337, 1331, 1332, 1329, 1336, 1342,
- 1344, 1338, 1334
+ 1350, 1342, 1340, 1346, 1335, 1347, 1348, 1337, 1344, 1338, 1339, 1336, 1343, 1349,
+ 1351, 1345, 1341
]
}
],
@@ -15895,12 +16101,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1471,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1471"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1471"
}
],
"indexSignatures": [
{
- "id": 1345,
+ "id": 1352,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15910,12 +16116,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1488,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1488"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1488"
}
],
"parameters": [
{
- "id": 1346,
+ "id": 1353,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15935,21 +16141,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1317,
+ "target": 1324,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 801,
+ "id": 808,
"name": "Session",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 804,
+ "id": 811,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -15967,7 +16173,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L239"
}
],
"type": {
@@ -15976,7 +16182,7 @@
}
},
{
- "id": 807,
+ "id": 814,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -15996,7 +16202,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L251"
}
],
"type": {
@@ -16005,7 +16211,7 @@
}
},
{
- "id": 806,
+ "id": 813,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -16023,7 +16229,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L247"
}
],
"type": {
@@ -16032,7 +16238,7 @@
}
},
{
- "id": 803,
+ "id": 810,
"name": "provider_refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -16052,7 +16258,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L235"
}
],
"type": {
@@ -16070,7 +16276,7 @@
}
},
{
- "id": 802,
+ "id": 809,
"name": "provider_token",
"variant": "declaration",
"kind": 1024,
@@ -16090,7 +16296,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L230"
}
],
"type": {
@@ -16108,7 +16314,7 @@
}
},
{
- "id": 805,
+ "id": 812,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -16126,7 +16332,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 243,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L243"
}
],
"type": {
@@ -16135,7 +16341,7 @@
}
},
{
- "id": 808,
+ "id": 815,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -16145,7 +16351,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 252,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L252"
}
],
"type": {
@@ -16154,7 +16360,7 @@
}
},
{
- "id": 809,
+ "id": 816,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -16172,12 +16378,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 257,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L257"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -16186,7 +16392,7 @@
"groups": [
{
"title": "Properties",
- "children": [804, 807, 806, 803, 802, 805, 808, 809]
+ "children": [811, 814, 813, 810, 809, 812, 815, 816]
}
],
"sources": [
@@ -16194,19 +16400,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 226,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L226"
}
]
},
{
- "id": 891,
+ "id": 898,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 893,
+ "id": 900,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -16224,13 +16430,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 514,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 894,
+ "id": 901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16240,12 +16446,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 514,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"signatures": [
{
- "id": 895,
+ "id": 902,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16255,25 +16461,25 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 514,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"parameters": [
{
- "id": 896,
+ "id": 903,
"name": "event",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 699,
+ "target": 706,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
},
{
- "id": 897,
+ "id": 904,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -16287,7 +16493,7 @@
},
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -16305,7 +16511,7 @@
}
},
{
- "id": 892,
+ "id": 899,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16323,7 +16529,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 510,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L510"
}
],
"type": {
@@ -16341,7 +16547,7 @@
}
},
{
- "id": 898,
+ "id": 905,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -16359,13 +16565,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 518,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 899,
+ "id": 906,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16375,12 +16581,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 518,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518"
}
],
"signatures": [
{
- "id": 900,
+ "id": 907,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16390,7 +16596,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 518,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L518"
}
],
"type": {
@@ -16406,7 +16612,7 @@
"groups": [
{
"title": "Properties",
- "children": [893, 892, 898]
+ "children": [900, 899, 905]
}
],
"sources": [
@@ -16414,19 +16620,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 504,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L504"
}
]
},
{
- "id": 846,
+ "id": 853,
"name": "User",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 857,
+ "id": 864,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -16438,7 +16644,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 380,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L380"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L380"
}
],
"type": {
@@ -16447,7 +16653,7 @@
}
},
{
- "id": 848,
+ "id": 855,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -16457,18 +16663,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 371,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L371"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L371"
}
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 845,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 850,
+ "id": 857,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -16478,7 +16684,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 373,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L373"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L373"
}
],
"type": {
@@ -16487,7 +16693,7 @@
}
},
{
- "id": 851,
+ "id": 858,
"name": "confirmation_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -16499,7 +16705,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 374,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L374"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L374"
}
],
"type": {
@@ -16508,7 +16714,7 @@
}
},
{
- "id": 861,
+ "id": 868,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -16520,7 +16726,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 384,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L384"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L384"
}
],
"type": {
@@ -16529,7 +16735,7 @@
}
},
{
- "id": 860,
+ "id": 867,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -16539,7 +16745,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L383"
}
],
"type": {
@@ -16548,7 +16754,7 @@
}
},
{
- "id": 871,
+ "id": 878,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -16560,7 +16766,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 394,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L394"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L394"
}
],
"type": {
@@ -16569,7 +16775,7 @@
}
},
{
- "id": 858,
+ "id": 865,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -16581,7 +16787,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L381"
}
],
"type": {
@@ -16590,7 +16796,7 @@
}
},
{
- "id": 853,
+ "id": 860,
"name": "email_change_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -16602,7 +16808,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 376,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L376"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L376"
}
],
"type": {
@@ -16611,7 +16817,7 @@
}
},
{
- "id": 862,
+ "id": 869,
"name": "email_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -16623,7 +16829,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 385,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L385"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L385"
}
],
"type": {
@@ -16632,7 +16838,7 @@
}
},
{
- "id": 870,
+ "id": 877,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -16644,7 +16850,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 393,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L393"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L393"
}
],
"type": {
@@ -16654,7 +16860,7 @@
"types": [
{
"type": "reference",
- "target": 828,
+ "target": 835,
"typeArguments": [
{
"type": "union",
@@ -16683,7 +16889,7 @@
},
{
"type": "reference",
- "target": 828,
+ "target": 835,
"typeArguments": [
{
"type": "union",
@@ -16715,7 +16921,7 @@
}
},
{
- "id": 847,
+ "id": 854,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16725,7 +16931,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L370"
}
],
"type": {
@@ -16734,7 +16940,7 @@
}
},
{
- "id": 867,
+ "id": 874,
"name": "identities",
"variant": "declaration",
"kind": 1024,
@@ -16746,21 +16952,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 390,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L390"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 815,
+ "target": 822,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 856,
+ "id": 863,
"name": "invited_at",
"variant": "declaration",
"kind": 1024,
@@ -16772,7 +16978,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 379,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L379"
}
],
"type": {
@@ -16781,7 +16987,7 @@
}
},
{
- "id": 868,
+ "id": 875,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -16793,7 +16999,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 391,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L391"
}
],
"type": {
@@ -16802,7 +17008,7 @@
}
},
{
- "id": 869,
+ "id": 876,
"name": "is_sso_user",
"variant": "declaration",
"kind": 1024,
@@ -16814,7 +17020,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 392,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L392"
}
],
"type": {
@@ -16823,7 +17029,7 @@
}
},
{
- "id": 864,
+ "id": 871,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -16835,7 +17041,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 387,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L387"
}
],
"type": {
@@ -16844,7 +17050,7 @@
}
},
{
- "id": 854,
+ "id": 861,
"name": "new_email",
"variant": "declaration",
"kind": 1024,
@@ -16856,7 +17062,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 377,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L377"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L377"
}
],
"type": {
@@ -16865,7 +17071,7 @@
}
},
{
- "id": 855,
+ "id": 862,
"name": "new_phone",
"variant": "declaration",
"kind": 1024,
@@ -16877,7 +17083,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L378"
}
],
"type": {
@@ -16886,7 +17092,7 @@
}
},
{
- "id": 859,
+ "id": 866,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -16898,7 +17104,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L382"
}
],
"type": {
@@ -16907,7 +17113,7 @@
}
},
{
- "id": 863,
+ "id": 870,
"name": "phone_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -16919,7 +17125,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 386,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L386"
}
],
"type": {
@@ -16928,7 +17134,7 @@
}
},
{
- "id": 852,
+ "id": 859,
"name": "recovery_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -16940,7 +17146,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 375,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L375"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L375"
}
],
"type": {
@@ -16949,7 +17155,7 @@
}
},
{
- "id": 865,
+ "id": 872,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -16961,7 +17167,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 388,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L388"
}
],
"type": {
@@ -16970,7 +17176,7 @@
}
},
{
- "id": 866,
+ "id": 873,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -16982,7 +17188,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 389,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L389"
}
],
"type": {
@@ -16991,7 +17197,7 @@
}
},
{
- "id": 849,
+ "id": 856,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -17001,12 +17207,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 372,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L372"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L372"
}
],
"type": {
"type": "reference",
- "target": 843,
+ "target": 850,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -17016,8 +17222,8 @@
{
"title": "Properties",
"children": [
- 857, 848, 850, 851, 861, 860, 871, 858, 853, 862, 870, 847, 867, 856, 868, 869, 864,
- 854, 855, 859, 863, 852, 865, 866, 849
+ 864, 855, 857, 858, 868, 867, 878, 865, 860, 869, 877, 854, 874, 863, 875, 876, 871,
+ 861, 862, 866, 870, 859, 872, 873, 856
]
}
],
@@ -17026,19 +17232,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 369,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L369"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L369"
}
]
},
{
- "id": 838,
+ "id": 845,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 839,
+ "id": 846,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -17058,7 +17264,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 357,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L357"
}
],
"type": {
@@ -17067,7 +17273,7 @@
}
},
{
- "id": 840,
+ "id": 847,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -17087,7 +17293,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L361"
}
],
"type": {
@@ -17102,7 +17308,7 @@
"groups": [
{
"title": "Properties",
- "children": [839, 840]
+ "children": [846, 847]
}
],
"sources": [
@@ -17110,12 +17316,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 353,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L353"
}
],
"indexSignatures": [
{
- "id": 841,
+ "id": 848,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17125,12 +17331,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 362,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L362"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L362"
}
],
"parameters": [
{
- "id": 842,
+ "id": 849,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17149,14 +17355,14 @@
]
},
{
- "id": 872,
+ "id": 879,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 877,
+ "id": 884,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -17192,7 +17398,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L426"
}
],
"type": {
@@ -17201,7 +17407,7 @@
}
},
{
- "id": 873,
+ "id": 880,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -17221,7 +17427,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 401,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L401"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L401"
}
],
"type": {
@@ -17230,7 +17436,7 @@
}
},
{
- "id": 876,
+ "id": 883,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -17250,7 +17456,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 418,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L418"
}
],
"type": {
@@ -17259,7 +17465,7 @@
}
},
{
- "id": 875,
+ "id": 882,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -17279,7 +17485,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L411"
}
],
"type": {
@@ -17288,7 +17494,7 @@
}
},
{
- "id": 874,
+ "id": 881,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -17308,7 +17514,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -17320,7 +17526,7 @@
"groups": [
{
"title": "Properties",
- "children": [877, 873, 876, 875, 874]
+ "children": [884, 880, 883, 882, 881]
}
],
"sources": [
@@ -17328,19 +17534,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 397,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L397"
}
]
},
{
- "id": 815,
+ "id": 822,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 824,
+ "id": 831,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -17352,7 +17558,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 303,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L303"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L303"
}
],
"type": {
@@ -17361,7 +17567,7 @@
}
},
{
- "id": 816,
+ "id": 823,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17371,7 +17577,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 296,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L296"
}
],
"type": {
@@ -17380,7 +17586,7 @@
}
},
{
- "id": 818,
+ "id": 825,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -17392,13 +17598,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 298,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 819,
+ "id": 826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17408,12 +17614,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 298,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L298"
}
],
"indexSignatures": [
{
- "id": 820,
+ "id": 827,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17423,12 +17629,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 299,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L299"
}
],
"parameters": [
{
- "id": 821,
+ "id": 828,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17449,7 +17655,7 @@
}
},
{
- "id": 822,
+ "id": 829,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -17459,7 +17665,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 301,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L301"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L301"
}
],
"type": {
@@ -17468,7 +17674,7 @@
}
},
{
- "id": 825,
+ "id": 832,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -17480,7 +17686,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L304"
}
],
"type": {
@@ -17489,7 +17695,7 @@
}
},
{
- "id": 823,
+ "id": 830,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -17499,7 +17705,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 302,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L302"
}
],
"type": {
@@ -17508,7 +17714,7 @@
}
},
{
- "id": 826,
+ "id": 833,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -17520,7 +17726,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 305,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L305"
}
],
"type": {
@@ -17529,7 +17735,7 @@
}
},
{
- "id": 817,
+ "id": 824,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -17539,7 +17745,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L297"
}
],
"type": {
@@ -17551,7 +17757,7 @@
"groups": [
{
"title": "Properties",
- "children": [824, 816, 818, 822, 825, 823, 826, 817]
+ "children": [831, 823, 825, 829, 832, 830, 833, 824]
}
],
"sources": [
@@ -17559,12 +17765,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 295,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L295"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L295"
}
]
},
{
- "id": 843,
+ "id": 850,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -17574,12 +17780,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 365,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L365"
}
],
"indexSignatures": [
{
- "id": 844,
+ "id": 851,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17589,12 +17795,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 366,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L366"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L366"
}
],
"parameters": [
{
- "id": 845,
+ "id": 852,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17613,14 +17819,14 @@
]
},
{
- "id": 1021,
+ "id": 1028,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1022,
+ "id": 1029,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -17638,7 +17844,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 733,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L733"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L733"
}
],
"type": {
@@ -17647,7 +17853,7 @@
}
},
{
- "id": 1025,
+ "id": 1032,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -17659,20 +17865,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 738,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L738"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1026,
+ "id": 1033,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1028,
+ "id": 1035,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -17698,7 +17904,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 746,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L746"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L746"
}
],
"type": {
@@ -17707,7 +17913,7 @@
}
},
{
- "id": 1027,
+ "id": 1034,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -17727,7 +17933,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 740,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L740"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L740"
}
],
"type": {
@@ -17739,7 +17945,7 @@
"groups": [
{
"title": "Properties",
- "children": [1028, 1027]
+ "children": [1035, 1034]
}
],
"sources": [
@@ -17747,14 +17953,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 738,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L738"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L738"
}
]
}
}
},
{
- "id": 1023,
+ "id": 1030,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -17772,7 +17978,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 735,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L735"
}
],
"type": {
@@ -17781,7 +17987,7 @@
}
},
{
- "id": 1024,
+ "id": 1031,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17799,12 +18005,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 737,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L737"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L737"
}
],
"type": {
"type": "reference",
- "target": 1033,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -17813,7 +18019,7 @@
"groups": [
{
"title": "Properties",
- "children": [1022, 1025, 1023, 1024]
+ "children": [1029, 1032, 1030, 1031]
}
],
"sources": [
@@ -17821,19 +18027,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 731,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L731"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L731"
}
]
},
{
- "id": 1013,
+ "id": 1020,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1017,
+ "id": 1024,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -17845,20 +18051,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 719,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1018,
+ "id": 1025,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1020,
+ "id": 1027,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -17884,7 +18090,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 728,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L728"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L728"
}
],
"type": {
@@ -17893,7 +18099,7 @@
}
},
{
- "id": 1019,
+ "id": 1026,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -17913,7 +18119,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 721,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L721"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L721"
}
],
"type": {
@@ -17925,7 +18131,7 @@
"groups": [
{
"title": "Properties",
- "children": [1020, 1019]
+ "children": [1027, 1026]
}
],
"sources": [
@@ -17933,14 +18139,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 719,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L719"
}
]
}
}
},
{
- "id": 1014,
+ "id": 1021,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -17958,7 +18164,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 714,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L714"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L714"
}
],
"type": {
@@ -17967,7 +18173,7 @@
}
},
{
- "id": 1015,
+ "id": 1022,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -17985,7 +18191,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 716,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L716"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L716"
}
],
"type": {
@@ -17994,7 +18200,7 @@
}
},
{
- "id": 1016,
+ "id": 1023,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18012,12 +18218,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 718,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L718"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L718"
}
],
"type": {
"type": "reference",
- "target": 1032,
+ "target": 1039,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -18026,7 +18232,7 @@
"groups": [
{
"title": "Properties",
- "children": [1017, 1014, 1015, 1016]
+ "children": [1024, 1021, 1022, 1023]
}
],
"sources": [
@@ -18034,19 +18240,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 712,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L712"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L712"
}
]
},
{
- "id": 1029,
+ "id": 1036,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1030,
+ "id": 1037,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -18064,7 +18270,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 752,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L752"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L752"
}
],
"type": {
@@ -18073,7 +18279,7 @@
}
},
{
- "id": 1031,
+ "id": 1038,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18091,12 +18297,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 755,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L755"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L755"
}
],
"type": {
"type": "reference",
- "target": 1033,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -18105,7 +18311,7 @@
"groups": [
{
"title": "Properties",
- "children": [1030, 1031]
+ "children": [1037, 1038]
}
],
"sources": [
@@ -18113,12 +18319,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 750,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L750"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L750"
}
]
},
{
- "id": 810,
+ "id": 817,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -18128,7 +18334,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 274,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274"
}
],
"type": {
@@ -18164,7 +18370,7 @@
{
"type": "reflection",
"declaration": {
- "id": 811,
+ "id": 818,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18174,7 +18380,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 274,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L274"
}
]
}
@@ -18185,7 +18391,7 @@
}
},
{
- "id": 699,
+ "id": 706,
"name": "AuthChangeEvent",
"variant": "declaration",
"kind": 2097152,
@@ -18195,7 +18401,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 44,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -18227,7 +18433,7 @@
},
{
"type": "reference",
- "target": 698,
+ "target": 705,
"name": "AuthChangeEventMFA",
"package": "@supabase/auth-js"
}
@@ -18235,7 +18441,7 @@
}
},
{
- "id": 698,
+ "id": 705,
"name": "AuthChangeEventMFA",
"variant": "declaration",
"kind": 2097152,
@@ -18245,7 +18451,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 42,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L42"
}
],
"type": {
@@ -18254,7 +18460,7 @@
}
},
{
- "id": 1142,
+ "id": 1149,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -18264,7 +18470,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1144,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1144"
}
],
"type": {
@@ -18282,7 +18488,7 @@
}
},
{
- "id": 937,
+ "id": 944,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -18292,7 +18498,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 593,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L593"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L593"
}
],
"type": {
@@ -18310,7 +18516,7 @@
}
},
{
- "id": 1268,
+ "id": 1275,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -18329,20 +18535,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1254,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1269,
+ "id": 1276,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1270,
+ "id": 1277,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -18360,7 +18566,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1256"
}
],
"type": {
@@ -18369,7 +18575,7 @@
}
},
{
- "id": 1271,
+ "id": 1278,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -18387,7 +18593,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1259,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1259"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1259"
}
],
"type": {
@@ -18399,7 +18605,7 @@
"groups": [
{
"title": "Properties",
- "children": [1270, 1271]
+ "children": [1277, 1278]
}
],
"sources": [
@@ -18407,14 +18613,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1254,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1254"
}
]
}
}
},
{
- "id": 1265,
+ "id": 1272,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18433,24 +18639,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1247,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1266,
+ "id": 1273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1267,
+ "id": 1274,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -18468,7 +18674,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1249,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1249"
}
],
"type": {
@@ -18480,7 +18686,7 @@
"groups": [
{
"title": "Properties",
- "children": [1267]
+ "children": [1274]
}
],
"sources": [
@@ -18488,7 +18694,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1247,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1247"
}
]
}
@@ -18499,7 +18705,7 @@
}
},
{
- "id": 1275,
+ "id": 1282,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -18518,20 +18724,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1273,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1273"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1276,
+ "id": 1283,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1277,
+ "id": 1284,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -18549,7 +18755,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1275,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1275"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1275"
}
],
"type": {
@@ -18561,7 +18767,7 @@
"groups": [
{
"title": "Properties",
- "children": [1277]
+ "children": [1284]
}
],
"sources": [
@@ -18569,14 +18775,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1273,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1273"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1273"
}
]
}
}
},
{
- "id": 1272,
+ "id": 1279,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18595,24 +18801,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1265,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1273,
+ "id": 1280,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1274,
+ "id": 1281,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -18630,14 +18836,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1267,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1267"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1267"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 828,
+ "target": 835,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -18647,7 +18853,7 @@
"groups": [
{
"title": "Properties",
- "children": [1274]
+ "children": [1281]
}
],
"sources": [
@@ -18655,7 +18861,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1265,
"character": 60,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1265"
}
]
}
@@ -18666,7 +18872,7 @@
}
},
{
- "id": 1133,
+ "id": 1140,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18676,16 +18882,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1074,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1074"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1074"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -18726,7 +18932,7 @@
}
},
{
- "id": 1137,
+ "id": 1144,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18736,7 +18942,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1126,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1126"
}
],
"type": {
@@ -18744,19 +18950,19 @@
"types": [
{
"type": "reference",
- "target": 1132,
+ "target": 1139,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1133,
+ "target": 1140,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1134,
+ "target": 1141,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -18764,7 +18970,7 @@
}
},
{
- "id": 1132,
+ "id": 1139,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18774,16 +18980,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1066,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1066"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1066"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -18824,7 +19030,7 @@
}
},
{
- "id": 1134,
+ "id": 1141,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18855,16 +19061,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1095,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1095"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1095"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -18905,7 +19111,7 @@
}
},
{
- "id": 1135,
+ "id": 1142,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -18923,12 +19129,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1115,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1115"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -18965,7 +19171,7 @@
}
},
{
- "id": 1136,
+ "id": 1143,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -18983,16 +19189,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1123,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1123"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1135,
+ "target": 1142,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -19002,7 +19208,7 @@
}
},
{
- "id": 1310,
+ "id": 1317,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19012,16 +19218,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1429,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1429"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -19062,7 +19268,7 @@
}
},
{
- "id": 1128,
+ "id": 1135,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19072,7 +19278,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1041,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1041"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1041"
}
],
"type": {
@@ -19080,19 +19286,19 @@
"types": [
{
"type": "reference",
- "target": 1309,
+ "target": 1316,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1310,
+ "target": 1317,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1311,
+ "target": 1318,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -19100,7 +19306,7 @@
}
},
{
- "id": 1309,
+ "id": 1316,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19110,16 +19316,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1420,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1420"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1420"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -19160,7 +19366,7 @@
}
},
{
- "id": 1311,
+ "id": 1318,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19191,16 +19397,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1442,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1442"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -19241,7 +19447,7 @@
}
},
{
- "id": 1143,
+ "id": 1150,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19251,24 +19457,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1146,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1144,
+ "id": 1151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1147,
+ "id": 1154,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -19286,21 +19492,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1163"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1163"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 812,
+ "target": 819,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1145,
+ "id": 1152,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -19318,7 +19524,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1148"
}
],
"type": {
@@ -19326,7 +19532,7 @@
"types": [
{
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -19338,7 +19544,7 @@
}
},
{
- "id": 1146,
+ "id": 1153,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -19358,7 +19564,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1169
+ "target": 1176
}
]
}
@@ -19369,7 +19575,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1156,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1156"
}
],
"type": {
@@ -19377,7 +19583,7 @@
"types": [
{
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -19392,7 +19598,7 @@
"groups": [
{
"title": "Properties",
- "children": [1147, 1145, 1146]
+ "children": [1154, 1152, 1153]
}
],
"sources": [
@@ -19400,7 +19606,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1146,
"character": 74,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1146"
}
]
}
@@ -19411,7 +19617,7 @@
}
},
{
- "id": 1138,
+ "id": 1145,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19429,12 +19635,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1132,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1132"
}
],
"typeParameters": [
{
- "id": 1141,
+ "id": 1148,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -19469,7 +19675,7 @@
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "intersection",
@@ -19477,14 +19683,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1139,
+ "id": 1146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1140,
+ "id": 1147,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -19502,18 +19708,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1136,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1136"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "reference",
- "target": 828,
+ "target": 835,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -19527,7 +19733,7 @@
"groups": [
{
"title": "Properties",
- "children": [1140]
+ "children": [1147]
}
],
"sources": [
@@ -19535,7 +19741,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1134,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1134"
}
]
}
@@ -19551,7 +19757,7 @@
},
"objectType": {
"type": "reference",
- "target": 1141,
+ "target": 1148,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -19561,11 +19767,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "reference",
- "target": 828,
+ "target": 835,
"typeArguments": [
{
"type": "reference",
@@ -19599,7 +19805,7 @@
}
},
{
- "id": 1129,
+ "id": 1136,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19609,24 +19815,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1046,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1046"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1130,
+ "id": 1137,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1131,
+ "id": 1138,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -19644,7 +19850,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1048,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1048"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1048"
}
],
"type": {
@@ -19656,7 +19862,7 @@
"groups": [
{
"title": "Properties",
- "children": [1131]
+ "children": [1138]
}
],
"sources": [
@@ -19664,7 +19870,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1046,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1046"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1046"
}
]
}
@@ -19675,7 +19881,7 @@
}
},
{
- "id": 1127,
+ "id": 1134,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19693,16 +19899,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1039,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1039"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1039"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1120,
+ "target": 1127,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -19712,7 +19918,7 @@
}
},
{
- "id": 1120,
+ "id": 1127,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -19730,20 +19936,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1018,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1018"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1121,
+ "id": 1128,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1122,
+ "id": 1129,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -19761,7 +19967,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1020,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1020"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1020"
}
],
"type": {
@@ -19770,7 +19976,7 @@
}
},
{
- "id": 1124,
+ "id": 1131,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -19788,7 +19994,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1026,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1026"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1026"
}
],
"type": {
@@ -19797,7 +20003,7 @@
}
},
{
- "id": 1125,
+ "id": 1132,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -19815,7 +20021,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1029,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1029"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1029"
}
],
"type": {
@@ -19824,7 +20030,7 @@
}
},
{
- "id": 1123,
+ "id": 1130,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -19850,7 +20056,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1023,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1023"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1023"
}
],
"type": {
@@ -19859,7 +20065,7 @@
}
},
{
- "id": 1126,
+ "id": 1133,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -19877,12 +20083,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1032,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1032"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1032"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -19891,7 +20097,7 @@
"groups": [
{
"title": "Properties",
- "children": [1122, 1124, 1125, 1123, 1126]
+ "children": [1129, 1131, 1132, 1130, 1133]
}
],
"sources": [
@@ -19899,14 +20105,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1018,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1018"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1018"
}
]
}
}
},
{
- "id": 1443,
+ "id": 1450,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19924,16 +20130,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1713,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1713"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1713"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1433,
+ "target": 1440,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
}
@@ -19943,7 +20149,7 @@
}
},
{
- "id": 1444,
+ "id": 1451,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -19961,24 +20167,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1719,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1445,
+ "id": 1452,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1446,
+ "id": 1453,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -19996,7 +20202,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1721,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1721"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1721"
}
],
"type": {
@@ -20008,7 +20214,7 @@
"groups": [
{
"title": "Properties",
- "children": [1446]
+ "children": [1453]
}
],
"sources": [
@@ -20016,7 +20222,96 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1719,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1719"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1719"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1459,
+ "name": "AuthOAuthGrantsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for listing user's OAuth grants.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1741,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1741"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 749,
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1454,
+ "name": "OAuthGrant",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1460,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for revoking an OAuth grant.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1747,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1747"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 749,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1461,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1747,
+ "character": 57,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1747"
}
]
}
@@ -20027,7 +20322,7 @@
}
},
{
- "id": 768,
+ "id": 775,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20050,24 +20345,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 178,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 769,
+ "id": 776,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 772,
+ "id": 779,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -20079,7 +20374,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -20097,7 +20392,7 @@
}
},
{
- "id": 771,
+ "id": 778,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20107,7 +20402,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L180"
}
],
"type": {
@@ -20116,7 +20411,7 @@
}
},
{
- "id": 770,
+ "id": 777,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20126,7 +20421,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L179"
}
],
"type": {
@@ -20138,7 +20433,7 @@
"groups": [
{
"title": "Properties",
- "children": [772, 771, 770]
+ "children": [779, 778, 777]
}
],
"sources": [
@@ -20146,7 +20441,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 178,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L178"
}
]
}
@@ -20157,7 +20452,7 @@
}
},
{
- "id": 759,
+ "id": 766,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20167,24 +20462,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 162,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 760,
+ "id": 767,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 762,
+ "id": 769,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20194,7 +20489,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L164"
}
],
"type": {
@@ -20202,7 +20497,7 @@
"types": [
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -20214,7 +20509,7 @@
}
},
{
- "id": 761,
+ "id": 768,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20224,7 +20519,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L163"
}
],
"type": {
@@ -20232,7 +20527,7 @@
"types": [
{
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -20247,7 +20542,7 @@
"groups": [
{
"title": "Properties",
- "children": [762, 761]
+ "children": [769, 768]
}
],
"sources": [
@@ -20255,7 +20550,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 162,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L162"
}
]
}
@@ -20266,7 +20561,7 @@
}
},
{
- "id": 763,
+ "id": 770,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -20276,24 +20571,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 167,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 764,
+ "id": 771,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 766,
+ "id": 773,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20303,7 +20598,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L169"
}
],
"type": {
@@ -20311,7 +20606,7 @@
"types": [
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -20323,7 +20618,7 @@
}
},
{
- "id": 765,
+ "id": 772,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20333,7 +20628,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 168,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L168"
}
],
"type": {
@@ -20341,7 +20636,7 @@
"types": [
{
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -20353,7 +20648,7 @@
}
},
{
- "id": 767,
+ "id": 774,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -20365,7 +20660,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 170,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L170"
}
],
"type": {
@@ -20373,7 +20668,7 @@
"types": [
{
"type": "reference",
- "target": 733,
+ "target": 740,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -20388,7 +20683,7 @@
"groups": [
{
"title": "Properties",
- "children": [766, 765, 767]
+ "children": [773, 772, 774]
}
],
"sources": [
@@ -20396,7 +20691,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 167,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L167"
}
]
}
@@ -20407,7 +20702,7 @@
}
},
{
- "id": 773,
+ "id": 780,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -20417,24 +20712,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 184,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 774,
+ "id": 781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 776,
+ "id": 783,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20444,18 +20739,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L186"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 775,
+ "id": 782,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20465,12 +20760,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 185,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L185"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -20479,7 +20774,7 @@
"groups": [
{
"title": "Properties",
- "children": [776, 775]
+ "children": [783, 782]
}
],
"sources": [
@@ -20487,7 +20782,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 184,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L184"
}
]
}
@@ -20498,7 +20793,7 @@
}
},
{
- "id": 777,
+ "id": 784,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -20508,24 +20803,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 189,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 778,
+ "id": 785,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 780,
+ "id": 787,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -20535,18 +20830,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 191,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L191"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 779,
+ "id": 786,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20556,18 +20851,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 190,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L190"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
},
{
- "id": 781,
+ "id": 788,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -20579,12 +20874,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 192,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L192"
}
],
"type": {
"type": "reference",
- "target": 733,
+ "target": 740,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -20593,7 +20888,7 @@
"groups": [
{
"title": "Properties",
- "children": [780, 779, 781]
+ "children": [787, 786, 788]
}
],
"sources": [
@@ -20601,7 +20896,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 189,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L189"
}
]
}
@@ -20612,7 +20907,7 @@
}
},
{
- "id": 1291,
+ "id": 1298,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -20622,16 +20917,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1325,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1325"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1325"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 808,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -20641,7 +20936,7 @@
}
},
{
- "id": 1376,
+ "id": 1383,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -20659,20 +20954,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1565,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1565"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1377,
+ "id": 1384,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1378,
+ "id": 1385,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -20690,7 +20985,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1567,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1567"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1567"
}
],
"type": {
@@ -20699,7 +20994,7 @@
}
},
{
- "id": 1379,
+ "id": 1386,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -20719,7 +21014,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1569,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1569"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1569"
}
],
"type": {
@@ -20728,7 +21023,7 @@
}
},
{
- "id": 1381,
+ "id": 1388,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -20748,21 +21043,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1573,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1573"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1573"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1356,
+ "target": 1363,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1380,
+ "id": 1387,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -20780,7 +21075,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1571"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1571"
}
],
"type": {
@@ -20792,7 +21087,7 @@
}
},
{
- "id": 1382,
+ "id": 1389,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -20812,21 +21107,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1575,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1575"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1575"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1357,
+ "target": 1364,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1383,
+ "id": 1390,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -20846,7 +21141,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1577,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1577"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1577"
}
],
"type": {
@@ -20858,7 +21153,7 @@
"groups": [
{
"title": "Properties",
- "children": [1378, 1379, 1381, 1380, 1382, 1383]
+ "children": [1385, 1386, 1388, 1387, 1389, 1390]
}
],
"sources": [
@@ -20866,14 +21161,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1565,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1565"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1565"
}
]
}
}
},
{
- "id": 1033,
+ "id": 1040,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -20883,7 +21178,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 759,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L759"
}
],
"type": {
@@ -20917,7 +21212,7 @@
}
},
{
- "id": 993,
+ "id": 1000,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -20927,7 +21222,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 670,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L670"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L670"
}
],
"type": {
@@ -20941,7 +21236,7 @@
}
},
{
- "id": 994,
+ "id": 1001,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -20951,7 +21246,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 672,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L672"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L672"
}
],
"type": {
@@ -20960,14 +21255,14 @@
{
"type": "reflection",
"declaration": {
- "id": 995,
+ "id": 1002,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 996,
+ "id": 1003,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -20977,7 +21272,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 674,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L674"
}
],
"type": {
@@ -20986,7 +21281,7 @@
}
},
{
- "id": 999,
+ "id": 1006,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -20998,20 +21293,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 682,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L682"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1000,
+ "id": 1007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1002,
+ "id": 1009,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -21031,7 +21326,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 687,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L687"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L687"
}
],
"type": {
@@ -21040,7 +21335,7 @@
}
},
{
- "id": 1003,
+ "id": 1010,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -21052,7 +21347,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 689,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L689"
}
],
"type": {
@@ -21109,7 +21404,7 @@
}
},
{
- "id": 1001,
+ "id": 1008,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -21129,7 +21424,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 684,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L684"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L684"
}
],
"type": {
@@ -21141,7 +21436,7 @@
"groups": [
{
"title": "Properties",
- "children": [1002, 1003, 1001]
+ "children": [1009, 1010, 1008]
}
],
"sources": [
@@ -21149,14 +21444,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 682,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L682"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L682"
}
]
}
}
},
{
- "id": 998,
+ "id": 1005,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -21176,7 +21471,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 680,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L680"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L680"
}
],
"type": {
@@ -21185,7 +21480,7 @@
}
},
{
- "id": 997,
+ "id": 1004,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -21213,12 +21508,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 677,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L677"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L677"
}
],
"type": {
"type": "reference",
- "target": 993,
+ "target": 1000,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -21227,7 +21522,7 @@
"groups": [
{
"title": "Properties",
- "children": [996, 999, 998, 997]
+ "children": [1003, 1006, 1005, 1004]
}
],
"sources": [
@@ -21235,7 +21530,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 673,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L673"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L673"
}
]
}
@@ -21243,14 +21538,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1004,
+ "id": 1011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1005,
+ "id": 1012,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -21260,7 +21555,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 695,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L695"
}
],
"type": {
@@ -21269,7 +21564,7 @@
}
},
{
- "id": 1006,
+ "id": 1013,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -21311,7 +21606,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 698,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L698"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L698"
}
],
"type": {
@@ -21320,7 +21615,7 @@
}
},
{
- "id": 1008,
+ "id": 1015,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -21332,20 +21627,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 703,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L703"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1009,
+ "id": 1016,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1010,
+ "id": 1017,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -21365,7 +21660,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 705,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L705"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L705"
}
],
"type": {
@@ -21377,7 +21672,7 @@
"groups": [
{
"title": "Properties",
- "children": [1010]
+ "children": [1017]
}
],
"sources": [
@@ -21385,14 +21680,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 703,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L703"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L703"
}
]
}
}
},
{
- "id": 1007,
+ "id": 1014,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -21410,7 +21705,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 701,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L701"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L701"
}
],
"type": {
@@ -21427,7 +21722,7 @@
"groups": [
{
"title": "Properties",
- "children": [1005, 1006, 1008, 1007]
+ "children": [1012, 1013, 1015, 1014]
}
],
"sources": [
@@ -21435,7 +21730,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 694,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L694"
}
]
}
@@ -21444,7 +21739,7 @@
}
},
{
- "id": 828,
+ "id": 835,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -21468,7 +21763,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1149
+ "target": 1156
},
{
"kind": "text",
@@ -21482,7 +21777,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1260
+ "target": 1267
},
{
"kind": "text",
@@ -21510,31 +21805,31 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 329,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L329"
}
],
"typeParameters": [
{
- "id": 836,
+ "id": 843,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 827,
+ "target": 834,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 827,
+ "target": 834,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 837,
+ "id": 844,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -21573,14 +21868,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 829,
+ "id": 836,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 834,
+ "id": 841,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -21590,7 +21885,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 349,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L349"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L349"
}
],
"type": {
@@ -21599,7 +21894,7 @@
}
},
{
- "id": 832,
+ "id": 839,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -21633,19 +21928,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 342,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L342"
}
],
"type": {
"type": "reference",
- "target": 836,
+ "target": 843,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 831,
+ "id": 838,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -21665,7 +21960,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 337,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L337"
}
],
"type": {
@@ -21674,7 +21969,7 @@
}
},
{
- "id": 830,
+ "id": 837,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -21692,7 +21987,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 334,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L334"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L334"
}
],
"type": {
@@ -21701,7 +21996,7 @@
}
},
{
- "id": 833,
+ "id": 840,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -21747,19 +22042,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 347,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L347"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L347"
}
],
"type": {
"type": "reference",
- "target": 837,
+ "target": 844,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 835,
+ "id": 842,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -21769,7 +22064,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 350,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L350"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L350"
}
],
"type": {
@@ -21781,7 +22076,7 @@
"groups": [
{
"title": "Properties",
- "children": [834, 832, 831, 830, 833, 835]
+ "children": [841, 839, 838, 837, 840, 842]
}
],
"sources": [
@@ -21789,14 +22084,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 332,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L332"
}
]
}
}
},
{
- "id": 827,
+ "id": 834,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -21830,7 +22125,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 313,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L313"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L313"
}
],
"type": {
@@ -21855,7 +22150,7 @@
}
},
{
- "id": 1079,
+ "id": 1086,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -21865,20 +22160,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 838,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L838"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1080,
+ "id": 1087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1082,
+ "id": 1089,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -21896,7 +22191,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 841,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L841"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L841"
}
],
"type": {
@@ -21905,7 +22200,7 @@
}
},
{
- "id": 1083,
+ "id": 1090,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -21923,7 +22218,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 845,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L845"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L845"
}
],
"type": {
@@ -21932,7 +22227,7 @@
}
},
{
- "id": 1084,
+ "id": 1091,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -21944,7 +22239,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 846,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L846"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L846"
}
],
"type": {
@@ -21956,7 +22251,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -21970,7 +22265,7 @@
}
},
{
- "id": 1081,
+ "id": 1088,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -21980,7 +22275,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 839,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L839"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L839"
}
],
"type": {
@@ -22001,7 +22296,7 @@
"groups": [
{
"title": "Properties",
- "children": [1082, 1083, 1084, 1081]
+ "children": [1089, 1090, 1091, 1088]
}
],
"sources": [
@@ -22009,14 +22304,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 838,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L838"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L838"
}
]
}
}
},
{
- "id": 1069,
+ "id": 1076,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22026,20 +22321,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 824,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L824"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1070,
+ "id": 1077,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1072,
+ "id": 1079,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22057,7 +22352,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 827,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L827"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L827"
}
],
"type": {
@@ -22066,7 +22361,7 @@
}
},
{
- "id": 1073,
+ "id": 1080,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22078,7 +22373,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 828,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L828"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L828"
}
],
"type": {
@@ -22090,7 +22385,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -22113,7 +22408,7 @@
}
},
{
- "id": 1071,
+ "id": 1078,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22123,7 +22418,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 825,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L825"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L825"
}
],
"type": {
@@ -22144,7 +22439,7 @@
"groups": [
{
"title": "Properties",
- "children": [1072, 1073, 1071]
+ "children": [1079, 1080, 1078]
}
],
"sources": [
@@ -22152,14 +22447,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 824,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L824"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L824"
}
]
}
}
},
{
- "id": 1088,
+ "id": 1095,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22169,7 +22464,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 860,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L860"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L860"
}
],
"type": {
@@ -22177,25 +22472,25 @@
"types": [
{
"type": "reference",
- "target": 1063,
+ "target": 1070,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1069,
+ "target": 1076,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1074,
+ "target": 1081,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1079,
+ "target": 1086,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -22203,7 +22498,7 @@
}
},
{
- "id": 1093,
+ "id": 1100,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -22221,20 +22516,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 872,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L872"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1094,
+ "id": 1101,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1095,
+ "id": 1102,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -22252,7 +22547,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 877,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L877"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L877"
}
],
"type": {
@@ -22261,7 +22556,7 @@
}
},
{
- "id": 1096,
+ "id": 1103,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -22279,7 +22574,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 882,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L882"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L882"
}
],
"type": {
@@ -22288,7 +22583,7 @@
}
},
{
- "id": 1097,
+ "id": 1104,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -22306,7 +22601,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 886,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L886"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L886"
}
],
"type": {
@@ -22315,7 +22610,7 @@
}
},
{
- "id": 1098,
+ "id": 1105,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -22333,7 +22628,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 888,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L888"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L888"
}
],
"type": {
@@ -22342,7 +22637,7 @@
}
},
{
- "id": 1099,
+ "id": 1106,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -22360,12 +22655,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 890,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L890"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L890"
}
],
"type": {
"type": "reference",
- "target": 1100,
+ "target": 1107,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -22374,7 +22669,7 @@
"groups": [
{
"title": "Properties",
- "children": [1095, 1096, 1097, 1098, 1099]
+ "children": [1102, 1103, 1104, 1105, 1106]
}
],
"sources": [
@@ -22382,14 +22677,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 872,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L872"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L872"
}
]
}
}
},
{
- "id": 1089,
+ "id": 1096,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -22399,24 +22694,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 866,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L866"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1090,
+ "id": 1097,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1091,
+ "id": 1098,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -22426,18 +22721,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 867,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L867"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L867"
}
],
"type": {
"type": "reference",
- "target": 1093,
+ "target": 1100,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1092,
+ "id": 1099,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -22447,12 +22742,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 868,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L868"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L868"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -22461,7 +22756,7 @@
"groups": [
{
"title": "Properties",
- "children": [1091, 1092]
+ "children": [1098, 1099]
}
],
"sources": [
@@ -22469,7 +22764,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 866,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L866"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L866"
}
]
}
@@ -22480,7 +22775,7 @@
}
},
{
- "id": 1100,
+ "id": 1107,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -22490,7 +22785,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 893,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L893"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L893"
}
],
"type": {
@@ -22524,7 +22819,7 @@
}
},
{
- "id": 1074,
+ "id": 1081,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22534,20 +22829,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 831,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L831"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1075,
+ "id": 1082,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1077,
+ "id": 1084,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22565,7 +22860,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 834,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L834"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L834"
}
],
"type": {
@@ -22574,7 +22869,7 @@
}
},
{
- "id": 1078,
+ "id": 1085,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22586,7 +22881,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 835,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L835"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L835"
}
],
"type": {
@@ -22598,7 +22893,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -22612,7 +22907,7 @@
}
},
{
- "id": 1076,
+ "id": 1083,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22622,7 +22917,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 832,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L832"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L832"
}
],
"type": {
@@ -22634,7 +22929,7 @@
"groups": [
{
"title": "Properties",
- "children": [1077, 1078, 1076]
+ "children": [1084, 1085, 1083]
}
],
"sources": [
@@ -22642,14 +22937,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 831,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L831"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L831"
}
]
}
}
},
{
- "id": 1063,
+ "id": 1070,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -22659,20 +22954,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 817,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1064,
+ "id": 1071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1066,
+ "id": 1073,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22682,7 +22977,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 819,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L819"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L819"
}
],
"type": {
@@ -22691,7 +22986,7 @@
}
},
{
- "id": 1068,
+ "id": 1075,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22703,7 +22998,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 821,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L821"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L821"
}
],
"type": {
@@ -22715,7 +23010,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1085,
+ "target": 1092,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -22738,7 +23033,7 @@
}
},
{
- "id": 1067,
+ "id": 1074,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -22748,7 +23043,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 820,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L820"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L820"
}
],
"type": {
@@ -22757,7 +23052,7 @@
}
},
{
- "id": 1065,
+ "id": 1072,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22767,7 +23062,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 818,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L818"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L818"
}
],
"type": {
@@ -22779,7 +23074,7 @@
"groups": [
{
"title": "Properties",
- "children": [1066, 1068, 1067, 1065]
+ "children": [1073, 1075, 1074, 1072]
}
],
"sources": [
@@ -22787,14 +23082,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 817,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L817"
}
]
}
}
},
{
- "id": 709,
+ "id": 716,
"name": "GoTrueClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -22804,20 +23099,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 70,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 710,
+ "id": 717,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 718,
+ "id": 725,
"name": "autoRefreshToken",
"variant": "declaration",
"kind": 1024,
@@ -22829,7 +23124,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L80"
}
],
"type": {
@@ -22838,7 +23133,7 @@
}
},
{
- "id": 724,
+ "id": 731,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -22850,7 +23145,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -22863,7 +23158,7 @@
{
"type": "reflection",
"declaration": {
- "id": 725,
+ "id": 732,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -22873,19 +23168,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 98,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L98"
}
],
"signatures": [
{
- "id": 726,
+ "id": 733,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 727,
+ "id": 734,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -22896,7 +23191,7 @@
}
},
{
- "id": 728,
+ "id": 735,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -22924,7 +23219,7 @@
}
},
{
- "id": 717,
+ "id": 724,
"name": "detectSessionInUrl",
"variant": "declaration",
"kind": 1024,
@@ -22936,7 +23231,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -22945,7 +23240,7 @@
}
},
{
- "id": 722,
+ "id": 729,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -22957,7 +23252,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -22971,7 +23266,7 @@
}
},
{
- "id": 723,
+ "id": 730,
"name": "flowType",
"variant": "declaration",
"kind": 1024,
@@ -22983,18 +23278,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L96"
}
],
"type": {
"type": "reference",
- "target": 937,
+ "target": 944,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
},
{
- "id": 730,
+ "id": 737,
"name": "hasCustomAuthorizationHeader",
"variant": "declaration",
"kind": 1024,
@@ -23015,7 +23310,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L109"
}
],
"type": {
@@ -23024,7 +23319,7 @@
}
},
{
- "id": 712,
+ "id": 719,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -23036,13 +23331,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 713,
+ "id": 720,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -23052,12 +23347,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"indexSignatures": [
{
- "id": 714,
+ "id": 721,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -23067,12 +23362,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"parameters": [
{
- "id": 715,
+ "id": 722,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -23093,7 +23388,7 @@
}
},
{
- "id": 729,
+ "id": 736,
"name": "lock",
"variant": "declaration",
"kind": 1024,
@@ -23114,18 +23409,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L104"
}
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 707,
"name": "LockFunc",
"package": "@supabase/auth-js"
}
},
{
- "id": 719,
+ "id": 726,
"name": "persistSession",
"variant": "declaration",
"kind": 1024,
@@ -23137,7 +23432,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L82"
}
],
"type": {
@@ -23146,7 +23441,7 @@
}
},
{
- "id": 720,
+ "id": 727,
"name": "storage",
"variant": "declaration",
"kind": 1024,
@@ -23158,18 +23453,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L84"
}
],
"type": {
"type": "reference",
- "target": 1285,
+ "target": 1292,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
},
{
- "id": 716,
+ "id": 723,
"name": "storageKey",
"variant": "declaration",
"kind": 1024,
@@ -23181,7 +23476,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L76"
}
],
"type": {
@@ -23190,7 +23485,7 @@
}
},
{
- "id": 731,
+ "id": 738,
"name": "throwOnError",
"variant": "declaration",
"kind": 1024,
@@ -23210,7 +23505,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L114"
}
],
"type": {
@@ -23219,7 +23514,7 @@
}
},
{
- "id": 711,
+ "id": 718,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -23231,7 +23526,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -23240,7 +23535,7 @@
}
},
{
- "id": 721,
+ "id": 728,
"name": "userStorage",
"variant": "declaration",
"kind": 1024,
@@ -23301,12 +23596,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L92"
}
],
"type": {
"type": "reference",
- "target": 1285,
+ "target": 1292,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -23315,7 +23610,7 @@
"groups": [
{
"title": "Properties",
- "children": [718, 724, 717, 722, 723, 730, 712, 729, 719, 720, 716, 731, 711, 721]
+ "children": [725, 731, 724, 729, 730, 737, 719, 736, 726, 727, 723, 738, 718, 728]
}
],
"sources": [
@@ -23323,14 +23618,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 70,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L70"
}
]
}
}
},
{
- "id": 1288,
+ "id": 1295,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -23340,20 +23635,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1323,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1323"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1289,
+ "id": 1296,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1290,
+ "id": 1297,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -23363,7 +23658,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1323,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1323"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323"
}
],
"type": {
@@ -23371,7 +23666,7 @@
"types": [
{
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -23386,7 +23681,7 @@
"groups": [
{
"title": "Properties",
- "children": [1290]
+ "children": [1297]
}
],
"sources": [
@@ -23394,14 +23689,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1323,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1323"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1323"
}
]
}
}
},
{
- "id": 1312,
+ "id": 1319,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -23411,20 +23706,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1446,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1313,
+ "id": 1320,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1314,
+ "id": 1321,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -23434,7 +23729,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1447,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1447"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1447"
}
],
"type": {
@@ -23456,7 +23751,7 @@
}
},
{
- "id": 1315,
+ "id": 1322,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -23466,7 +23761,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1448,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1448"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1448"
}
],
"type": {
@@ -23475,7 +23770,7 @@
}
},
{
- "id": 1316,
+ "id": 1323,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -23485,7 +23780,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1449"
}
],
"type": {
@@ -23497,7 +23792,7 @@
"groups": [
{
"title": "Properties",
- "children": [1314, 1315, 1316]
+ "children": [1321, 1322, 1323]
}
],
"sources": [
@@ -23505,14 +23800,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1446,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1446"
}
]
}
}
},
{
- "id": 700,
+ "id": 707,
"name": "LockFunc",
"variant": "declaration",
"kind": 2097152,
@@ -23539,13 +23834,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 701,
+ "id": 708,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -23555,19 +23850,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"signatures": [
{
- "id": 702,
+ "id": 709,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"typeParameters": [
{
- "id": 708,
+ "id": 715,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -23576,7 +23871,7 @@
],
"parameters": [
{
- "id": 703,
+ "id": 710,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -23595,7 +23890,7 @@
}
},
{
- "id": 704,
+ "id": 711,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -23622,7 +23917,7 @@
}
},
{
- "id": 705,
+ "id": 712,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -23638,7 +23933,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 706,
+ "id": 713,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -23648,12 +23943,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"signatures": [
{
- "id": 707,
+ "id": 714,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -23667,7 +23962,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 708,
+ "target": 715,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -23691,7 +23986,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 708,
+ "target": 715,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -23706,7 +24001,7 @@
}
},
{
- "id": 1119,
+ "id": 1126,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -23716,7 +24011,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1012,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1012"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1012"
}
],
"type": {
@@ -23730,7 +24025,7 @@
}
},
{
- "id": 1118,
+ "id": 1125,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -23740,7 +24035,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 999,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L999"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L999"
}
],
"type": {
@@ -23748,19 +24043,19 @@
"types": [
{
"type": "reference",
- "target": 1115,
+ "target": 1122,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1116,
+ "target": 1123,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1117,
+ "target": 1124,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -23768,7 +24063,7 @@
}
},
{
- "id": 1116,
+ "id": 1123,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -23778,12 +24073,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 976,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L976"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L976"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -23814,7 +24109,7 @@
}
},
{
- "id": 1115,
+ "id": 1122,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -23824,12 +24119,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 969,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L969"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L969"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "reference",
@@ -23846,7 +24141,7 @@
}
},
{
- "id": 1117,
+ "id": 1124,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -23877,12 +24172,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 995,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L995"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L995"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -23913,7 +24208,7 @@
}
},
{
- "id": 1101,
+ "id": 1108,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -23923,7 +24218,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 901,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L901"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L901"
}
],
"type": {
@@ -23931,19 +24226,19 @@
"types": [
{
"type": "reference",
- "target": 1306,
+ "target": 1313,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1307,
+ "target": 1314,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1308,
+ "target": 1315,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -23951,7 +24246,7 @@
}
},
{
- "id": 1307,
+ "id": 1314,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -23961,12 +24256,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1373,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1373"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1373"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24003,7 +24298,7 @@
}
},
{
- "id": 1306,
+ "id": 1313,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -24013,12 +24308,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1367,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1367"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24055,7 +24350,7 @@
}
},
{
- "id": 1308,
+ "id": 1315,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -24086,12 +24381,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1386,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1386"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24128,7 +24423,7 @@
}
},
{
- "id": 1114,
+ "id": 1121,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -24138,7 +24433,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 967,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L967"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L967"
}
],
"type": {
@@ -24163,7 +24458,7 @@
}
},
{
- "id": 1102,
+ "id": 1109,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -24173,20 +24468,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 903,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1103,
+ "id": 1110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1104,
+ "id": 1111,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -24204,7 +24499,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 905,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L905"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L905"
}
],
"type": {
@@ -24216,7 +24511,7 @@
"groups": [
{
"title": "Properties",
- "children": [1104]
+ "children": [1111]
}
],
"sources": [
@@ -24224,14 +24519,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 903,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L903"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L903"
}
]
}
}
},
{
- "id": 1113,
+ "id": 1120,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -24241,7 +24536,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 959,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L959"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L959"
}
],
"type": {
@@ -24249,19 +24544,19 @@
"types": [
{
"type": "reference",
- "target": 1105,
+ "target": 1112,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1106,
+ "target": 1113,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1111,
+ "target": 1118,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -24269,7 +24564,7 @@
}
},
{
- "id": 1106,
+ "id": 1113,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -24279,12 +24574,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 924,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L924"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L924"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24315,7 +24610,7 @@
}
},
{
- "id": 1105,
+ "id": 1112,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -24325,12 +24620,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 920,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L920"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L920"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24361,7 +24656,7 @@
}
},
{
- "id": 1107,
+ "id": 1114,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -24379,12 +24674,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 946,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L946"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946"
}
],
"typeParameters": [
{
- "id": 1110,
+ "id": 1117,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -24428,14 +24723,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1108,
+ "id": 1115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1109,
+ "id": 1116,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -24445,7 +24740,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 947,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L947"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L947"
}
],
"type": {
@@ -24469,7 +24764,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1110,
+ "target": 1117,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -24485,7 +24780,7 @@
"groups": [
{
"title": "Properties",
- "children": [1109]
+ "children": [1116]
}
],
"sources": [
@@ -24493,14 +24788,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 946,
"character": 98,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L946"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L946"
}
]
}
}
},
{
- "id": 1111,
+ "id": 1118,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -24531,12 +24826,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 956,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L956"
}
],
"typeParameters": [
{
- "id": 1112,
+ "id": 1119,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -24579,7 +24874,7 @@
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -24595,11 +24890,11 @@
},
{
"type": "reference",
- "target": 1107,
+ "target": 1114,
"typeArguments": [
{
"type": "reference",
- "target": 1112,
+ "target": 1119,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -24616,7 +24911,7 @@
}
},
{
- "id": 1032,
+ "id": 1039,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -24626,7 +24921,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 758,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L758"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L758"
}
],
"type": {
@@ -24644,7 +24939,7 @@
}
},
{
- "id": 1427,
+ "id": 1434,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -24662,21 +24957,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1676,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1676"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1428,
+ "id": 1435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1429,
- "name": "client_id",
+ "id": 1436,
+ "name": "id",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -24693,7 +24988,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1678,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1678"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1678"
}
],
"type": {
@@ -24702,8 +24997,8 @@
}
},
{
- "id": 1430,
- "name": "client_name",
+ "id": 1439,
+ "name": "logo_uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -24711,16 +25006,16 @@
"summary": [
{
"kind": "text",
- "text": "Human-readable name of the OAuth client"
+ "text": "URI of the OAuth client's logo"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1680,
+ "line": 1684,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1680"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1684"
}
],
"type": {
@@ -24729,8 +25024,8 @@
}
},
{
- "id": 1431,
- "name": "client_uri",
+ "id": 1437,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -24738,16 +25033,16 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's website"
+ "text": "Human-readable name of the OAuth client"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1682,
+ "line": 1680,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1682"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1680"
}
],
"type": {
@@ -24756,8 +25051,8 @@
}
},
{
- "id": 1432,
- "name": "logo_uri",
+ "id": 1438,
+ "name": "uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -24765,16 +25060,16 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's logo"
+ "text": "URI of the OAuth client's website"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1684,
+ "line": 1682,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1684"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1682"
}
],
"type": {
@@ -24786,7 +25081,7 @@
"groups": [
{
"title": "Properties",
- "children": [1429, 1430, 1431, 1432]
+ "children": [1436, 1439, 1437, 1438]
}
],
"sources": [
@@ -24794,14 +25089,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1676,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1676"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1676"
}
]
}
}
},
{
- "id": 1433,
+ "id": 1440,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -24819,20 +25114,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1691,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1691"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1434,
+ "id": 1441,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1435,
+ "id": 1442,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -24850,7 +25145,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1693,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1693"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1693"
}
],
"type": {
@@ -24859,7 +25154,7 @@
}
},
{
- "id": 1437,
+ "id": 1444,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -24877,18 +25172,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1697,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1697"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1697"
}
],
"type": {
"type": "reference",
- "target": 1427,
+ "target": 1434,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1436,
+ "id": 1443,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -24908,7 +25203,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1695,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1695"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1695"
}
],
"type": {
@@ -24917,7 +25212,7 @@
}
},
{
- "id": 1442,
+ "id": 1449,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -24935,7 +25230,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1706,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1706"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1706"
}
],
"type": {
@@ -24944,7 +25239,7 @@
}
},
{
- "id": 1438,
+ "id": 1445,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -24962,20 +25257,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1699,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1699"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1439,
+ "id": 1446,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1441,
+ "id": 1448,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -24993,7 +25288,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1703,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1703"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1703"
}
],
"type": {
@@ -25002,7 +25297,7 @@
}
},
{
- "id": 1440,
+ "id": 1447,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -25020,7 +25315,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1701,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1701"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1701"
}
],
"type": {
@@ -25032,7 +25327,7 @@
"groups": [
{
"title": "Properties",
- "children": [1441, 1440]
+ "children": [1448, 1447]
}
],
"sources": [
@@ -25040,7 +25335,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1699,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1699"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1699"
}
]
}
@@ -25050,7 +25345,7 @@
"groups": [
{
"title": "Properties",
- "children": [1435, 1437, 1436, 1442, 1438]
+ "children": [1442, 1444, 1443, 1449, 1445]
}
],
"sources": [
@@ -25058,14 +25353,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1691,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1691"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1691"
}
]
}
}
},
{
- "id": 1360,
+ "id": 1367,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -25083,20 +25378,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1530,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1361,
+ "id": 1368,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1362,
+ "id": 1369,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -25114,7 +25409,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1532"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1532"
}
],
"type": {
@@ -25123,7 +25418,7 @@
}
},
{
- "id": 1363,
+ "id": 1370,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -25141,7 +25436,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1534,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1534"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1534"
}
],
"type": {
@@ -25150,7 +25445,7 @@
}
},
{
- "id": 1364,
+ "id": 1371,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -25170,7 +25465,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1536"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1536"
}
],
"type": {
@@ -25179,7 +25474,7 @@
}
},
{
- "id": 1365,
+ "id": 1372,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -25197,18 +25492,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1538,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1538"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1538"
}
],
"type": {
"type": "reference",
- "target": 1358,
+ "target": 1365,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1368,
+ "id": 1375,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -25228,7 +25523,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1544,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1544"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1544"
}
],
"type": {
@@ -25237,7 +25532,7 @@
}
},
{
- "id": 1374,
+ "id": 1381,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -25255,7 +25550,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1556,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1556"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1556"
}
],
"type": {
@@ -25264,7 +25559,7 @@
}
},
{
- "id": 1371,
+ "id": 1378,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -25282,21 +25577,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1550,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1550"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1356,
+ "target": 1363,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1369,
+ "id": 1376,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -25316,7 +25611,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1546,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1546"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1546"
}
],
"type": {
@@ -25325,7 +25620,7 @@
}
},
{
- "id": 1370,
+ "id": 1377,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -25343,7 +25638,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1548,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1548"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1548"
}
],
"type": {
@@ -25355,7 +25650,7 @@
}
},
{
- "id": 1367,
+ "id": 1374,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -25373,18 +25668,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1542,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1542"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1542"
}
],
"type": {
"type": "reference",
- "target": 1359,
+ "target": 1366,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1372,
+ "id": 1379,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -25402,21 +25697,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1552,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1552"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1357,
+ "target": 1364,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1373,
+ "id": 1380,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -25436,7 +25731,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1554,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1554"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1554"
}
],
"type": {
@@ -25445,7 +25740,7 @@
}
},
{
- "id": 1366,
+ "id": 1373,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -25463,7 +25758,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1540,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1540"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1540"
}
],
"type": {
@@ -25472,7 +25767,7 @@
}
},
{
- "id": 1375,
+ "id": 1382,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -25490,7 +25785,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1558,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1558"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1558"
}
],
"type": {
@@ -25503,7 +25798,7 @@
{
"title": "Properties",
"children": [
- 1362, 1363, 1364, 1365, 1368, 1374, 1371, 1369, 1370, 1367, 1372, 1373, 1366, 1375
+ 1369, 1370, 1371, 1372, 1375, 1381, 1378, 1376, 1377, 1374, 1379, 1380, 1373, 1382
]
}
],
@@ -25512,14 +25807,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1530,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1530"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1530"
}
]
}
}
},
{
- "id": 1356,
+ "id": 1363,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -25537,7 +25832,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1506,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1506"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1506"
}
],
"type": {
@@ -25555,7 +25850,7 @@
}
},
{
- "id": 1392,
+ "id": 1399,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -25573,7 +25868,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1608,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1608"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1608"
}
],
"type": {
@@ -25582,14 +25877,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1393,
+ "id": 1400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1394,
+ "id": 1401,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -25599,7 +25894,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
],
"type": {
@@ -25608,14 +25903,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1395,
+ "id": 1402,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1397,
+ "id": 1404,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -25625,7 +25920,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
],
"type": {
@@ -25634,7 +25929,7 @@
}
},
{
- "id": 1396,
+ "id": 1403,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -25644,14 +25939,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1360,
+ "target": 1367,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -25661,7 +25956,7 @@
"groups": [
{
"title": "Properties",
- "children": [1397, 1396]
+ "children": [1404, 1403]
}
],
"sources": [
@@ -25669,14 +25964,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1610,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1610"
}
]
}
},
{
"type": "reference",
- "target": 1292,
+ "target": 1299,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -25684,7 +25979,7 @@
}
},
{
- "id": 1398,
+ "id": 1405,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -25694,7 +25989,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1611,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1611"
}
],
"type": {
@@ -25706,7 +26001,7 @@
"groups": [
{
"title": "Properties",
- "children": [1394, 1398]
+ "children": [1401, 1405]
}
],
"sources": [
@@ -25714,7 +26009,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1609,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1609"
}
]
}
@@ -25722,14 +26017,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1399,
+ "id": 1406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1400,
+ "id": 1407,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -25739,20 +26034,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1614,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1401,
+ "id": 1408,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1402,
+ "id": 1409,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -25762,7 +26057,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1614,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614"
}
],
"type": {
@@ -25773,7 +26068,7 @@
"groups": [
{
"title": "Properties",
- "children": [1402]
+ "children": [1409]
}
],
"sources": [
@@ -25781,14 +26076,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1614,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1614"
}
]
}
}
},
{
- "id": 1403,
+ "id": 1410,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -25798,12 +26093,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1615,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1615"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1615"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -25812,7 +26107,7 @@
"groups": [
{
"title": "Properties",
- "children": [1400, 1403]
+ "children": [1407, 1410]
}
],
"sources": [
@@ -25820,7 +26115,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1613,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1613"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1613"
}
]
}
@@ -25829,7 +26124,7 @@
}
},
{
- "id": 1359,
+ "id": 1366,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -25847,7 +26142,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1524,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1524"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1524"
}
],
"type": {
@@ -25865,7 +26160,7 @@
}
},
{
- "id": 1391,
+ "id": 1398,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -25883,16 +26178,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1602,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1602"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1602"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reference",
- "target": 1360,
+ "target": 1367,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -25902,7 +26197,7 @@
}
},
{
- "id": 1357,
+ "id": 1364,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -25920,7 +26215,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1512,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1512"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1512"
}
],
"type": {
@@ -25929,7 +26224,7 @@
}
},
{
- "id": 1358,
+ "id": 1365,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -25947,7 +26242,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1518,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1518"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1518"
}
],
"type": {
@@ -25965,7 +26260,142 @@
}
},
{
- "id": 782,
+ "id": 1454,
+ "name": "OAuthGrant",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An OAuth grant representing a user's authorization of an OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1728,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1728"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1455,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1456,
+ "name": "client",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client information"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1730,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1730"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1434,
+ "name": "OAuthAuthorizationClient",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1458,
+ "name": "granted_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the grant was created (ISO 8601 date-time)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1734,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1734"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1457,
+ "name": "scopes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of scopes granted to this client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1732,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1732"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1456, 1458, 1457]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1728,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1728"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 789,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -25975,7 +26405,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 195,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L195"
}
],
"type": {
@@ -25984,14 +26414,14 @@
{
"type": "reflection",
"declaration": {
- "id": 783,
+ "id": 790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 784,
+ "id": 791,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26001,20 +26431,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 197,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 785,
+ "id": 792,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 786,
+ "id": 793,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -26024,18 +26454,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 198,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L198"
}
],
"type": {
"type": "reference",
- "target": 697,
+ "target": 704,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 787,
+ "id": 794,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -26045,7 +26475,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 199,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L199"
}
],
"type": {
@@ -26057,7 +26487,7 @@
"groups": [
{
"title": "Properties",
- "children": [786, 787]
+ "children": [793, 794]
}
],
"sources": [
@@ -26065,14 +26495,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 197,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L197"
}
]
}
}
},
{
- "id": 788,
+ "id": 795,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26082,7 +26512,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 201,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L201"
}
],
"type": {
@@ -26094,7 +26524,7 @@
"groups": [
{
"title": "Properties",
- "children": [784, 788]
+ "children": [791, 795]
}
],
"sources": [
@@ -26102,7 +26532,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 196,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L196"
}
]
}
@@ -26110,14 +26540,14 @@
{
"type": "reflection",
"declaration": {
- "id": 789,
+ "id": 796,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 790,
+ "id": 797,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26127,20 +26557,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 791,
+ "id": 798,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 792,
+ "id": 799,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -26150,18 +26580,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 205,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L205"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L205"
}
],
"type": {
"type": "reference",
- "target": 697,
+ "target": 704,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 793,
+ "id": 800,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -26171,7 +26601,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 206,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L206"
}
],
"type": {
@@ -26183,7 +26613,7 @@
"groups": [
{
"title": "Properties",
- "children": [792, 793]
+ "children": [799, 800]
}
],
"sources": [
@@ -26191,14 +26621,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 204,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L204"
}
]
}
}
},
{
- "id": 794,
+ "id": 801,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26208,12 +26638,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 208,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L208"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -26222,7 +26652,7 @@
"groups": [
{
"title": "Properties",
- "children": [790, 794]
+ "children": [797, 801]
}
],
"sources": [
@@ -26230,7 +26660,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 203,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L203"
}
]
}
@@ -26239,7 +26669,7 @@
}
},
{
- "id": 1299,
+ "id": 1306,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -26249,20 +26679,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1334,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1334"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1300,
+ "id": 1307,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1301,
+ "id": 1308,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -26282,7 +26712,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1336,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1336"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1336"
}
],
"type": {
@@ -26291,7 +26721,7 @@
}
},
{
- "id": 1302,
+ "id": 1309,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -26311,7 +26741,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1338,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1338"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1338"
}
],
"type": {
@@ -26323,7 +26753,7 @@
"groups": [
{
"title": "Properties",
- "children": [1301, 1302]
+ "children": [1308, 1309]
}
],
"sources": [
@@ -26331,14 +26761,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1334,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1334"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1334"
}
]
}
}
},
{
- "id": 1292,
+ "id": 1299,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -26348,20 +26778,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1327,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1293,
+ "id": 1300,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1295,
+ "id": 1302,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -26371,7 +26801,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1330"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1330"
}
],
"type": {
@@ -26380,7 +26810,7 @@
}
},
{
- "id": 1294,
+ "id": 1301,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -26390,7 +26820,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1329"
}
],
"type": {
@@ -26408,7 +26838,7 @@
}
},
{
- "id": 1296,
+ "id": 1303,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -26418,7 +26848,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1331"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1331"
}
],
"type": {
@@ -26430,7 +26860,7 @@
"groups": [
{
"title": "Properties",
- "children": [1295, 1294, 1296]
+ "children": [1302, 1301, 1303]
}
],
"sources": [
@@ -26438,12 +26868,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1327,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1327"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1327"
}
],
"indexSignatures": [
{
- "id": 1297,
+ "id": 1304,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -26453,12 +26883,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1328"
}
],
"parameters": [
{
- "id": 1298,
+ "id": 1305,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -26479,7 +26909,7 @@
}
},
{
- "id": 737,
+ "id": 744,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -26497,12 +26927,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 129,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L129"
}
],
"typeParameters": [
{
- "id": 738,
+ "id": 745,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -26513,7 +26943,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -26529,7 +26959,7 @@
},
"trueType": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -26542,7 +26972,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -26562,7 +26992,7 @@
},
"objectType": {
"type": "reference",
- "target": 738,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -26572,7 +27002,7 @@
}
},
{
- "id": 697,
+ "id": 704,
"name": "Provider",
"variant": "declaration",
"kind": 2097152,
@@ -26590,7 +27020,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -26688,7 +27118,7 @@
}
},
{
- "id": 742,
+ "id": 749,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -26706,19 +27136,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 141,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L141"
}
],
"typeParameters": [
{
- "id": 749,
+ "id": 756,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 750,
+ "id": 757,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -26734,7 +27164,7 @@
},
"default": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -26746,14 +27176,14 @@
{
"type": "reflection",
"declaration": {
- "id": 743,
+ "id": 750,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 744,
+ "id": 751,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26763,19 +27193,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reference",
- "target": 749,
+ "target": 756,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 745,
+ "id": 752,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26785,7 +27215,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L144"
}
],
"type": {
@@ -26797,7 +27227,7 @@
"groups": [
{
"title": "Properties",
- "children": [744, 745]
+ "children": [751, 752]
}
],
"sources": [
@@ -26805,7 +27235,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 142,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L142"
}
]
}
@@ -26813,14 +27243,14 @@
{
"type": "reflection",
"declaration": {
- "id": 746,
+ "id": 753,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 747,
+ "id": 754,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26830,7 +27260,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 147,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L147"
}
],
"type": {
@@ -26839,7 +27269,7 @@
}
},
{
- "id": 748,
+ "id": 755,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26849,7 +27279,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 148,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L148"
}
],
"type": {
@@ -26865,19 +27295,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 750,
+ "target": 757,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -26888,7 +27318,7 @@
"groups": [
{
"title": "Properties",
- "children": [747, 748]
+ "children": [754, 755]
}
],
"sources": [
@@ -26896,7 +27326,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 146,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L146"
}
]
}
@@ -26905,7 +27335,7 @@
}
},
{
- "id": 751,
+ "id": 758,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -26928,12 +27358,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 155,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L155"
}
],
"typeParameters": [
{
- "id": 758,
+ "id": 765,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -26946,14 +27376,14 @@
{
"type": "reflection",
"declaration": {
- "id": 752,
+ "id": 759,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 753,
+ "id": 760,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -26963,19 +27393,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 156,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156"
}
],
"type": {
"type": "reference",
- "target": 758,
+ "target": 765,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 754,
+ "id": 761,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -26985,7 +27415,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 156,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156"
}
],
"type": {
@@ -26997,7 +27427,7 @@
"groups": [
{
"title": "Properties",
- "children": [753, 754]
+ "children": [760, 761]
}
],
"sources": [
@@ -27005,7 +27435,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 156,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L156"
}
]
}
@@ -27013,14 +27443,14 @@
{
"type": "reflection",
"declaration": {
- "id": 755,
+ "id": 762,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 756,
+ "id": 763,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -27030,14 +27460,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 158,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L158"
}
],
"type": {
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 758,
+ "target": 765,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27054,7 +27484,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 758,
+ "target": 765,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -27072,7 +27502,7 @@
}
},
{
- "id": 757,
+ "id": 764,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -27082,12 +27512,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 159,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L159"
}
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -27096,7 +27526,7 @@
"groups": [
{
"title": "Properties",
- "children": [756, 757]
+ "children": [763, 764]
}
],
"sources": [
@@ -27104,7 +27534,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 157,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L157"
}
]
}
@@ -27113,7 +27543,7 @@
}
},
{
- "id": 1317,
+ "id": 1324,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -27123,20 +27553,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1452,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1452"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1318,
+ "id": 1325,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1325,
+ "id": 1332,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -27146,18 +27576,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1459"
}
],
"type": {
"type": "reference",
- "target": 1142,
+ "target": 1149,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1321,
+ "id": 1328,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -27167,7 +27597,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1455"
}
],
"type": {
@@ -27188,7 +27618,7 @@
}
},
{
- "id": 1322,
+ "id": 1329,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -27198,7 +27628,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1456,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1456"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1456"
}
],
"type": {
@@ -27207,7 +27637,7 @@
}
},
{
- "id": 1323,
+ "id": 1330,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -27217,7 +27647,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1457"
}
],
"type": {
@@ -27226,7 +27656,7 @@
}
},
{
- "id": 1319,
+ "id": 1326,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -27236,7 +27666,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1453,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1453"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1453"
}
],
"type": {
@@ -27245,7 +27675,7 @@
}
},
{
- "id": 1324,
+ "id": 1331,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -27255,7 +27685,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1458,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1458"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1458"
}
],
"type": {
@@ -27264,7 +27694,7 @@
}
},
{
- "id": 1326,
+ "id": 1333,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -27274,7 +27704,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1460,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1460"
}
],
"type": {
@@ -27283,7 +27713,7 @@
}
},
{
- "id": 1320,
+ "id": 1327,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -27293,7 +27723,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1454"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1454"
}
],
"type": {
@@ -27305,7 +27735,7 @@
"groups": [
{
"title": "Properties",
- "children": [1325, 1321, 1322, 1323, 1319, 1324, 1326, 1320]
+ "children": [1332, 1328, 1329, 1330, 1326, 1331, 1333, 1327]
}
],
"sources": [
@@ -27313,7 +27743,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1452,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1452"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1452"
}
]
}
@@ -27321,13 +27751,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1327,
+ "target": 1334,
"name": "JwtPayload"
}
]
},
{
- "id": 1034,
+ "id": 1041,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -27337,7 +27767,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 761,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L761"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L761"
}
],
"type": {
@@ -27346,14 +27776,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1035,
+ "id": 1042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1037,
+ "id": 1044,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -27363,7 +27793,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 764,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L764"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L764"
}
],
"type": {
@@ -27372,7 +27802,7 @@
}
},
{
- "id": 1038,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -27384,20 +27814,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 765,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L765"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1039,
+ "id": 1046,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1041,
+ "id": 1048,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -27417,7 +27847,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 769,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L769"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L769"
}
],
"type": {
@@ -27426,7 +27856,7 @@
}
},
{
- "id": 1040,
+ "id": 1047,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -27446,7 +27876,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 767,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L767"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L767"
}
],
"type": {
@@ -27458,7 +27888,7 @@
"groups": [
{
"title": "Properties",
- "children": [1041, 1040]
+ "children": [1048, 1047]
}
],
"sources": [
@@ -27466,14 +27896,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 765,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L765"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L765"
}
]
}
}
},
{
- "id": 1036,
+ "id": 1043,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -27483,7 +27913,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 763,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L763"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L763"
}
],
"type": {
@@ -27495,7 +27925,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1033,
+ "target": 1040,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -27521,7 +27951,7 @@
"groups": [
{
"title": "Properties",
- "children": [1037, 1038, 1036]
+ "children": [1044, 1045, 1043]
}
],
"sources": [
@@ -27529,7 +27959,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 762,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L762"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L762"
}
]
}
@@ -27537,14 +27967,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1042,
+ "id": 1049,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1045,
+ "id": 1052,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -27556,20 +27986,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 775,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L775"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1046,
+ "id": 1053,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1054,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -27589,7 +28019,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 777,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L777"
}
],
"type": {
@@ -27601,7 +28031,7 @@
"groups": [
{
"title": "Properties",
- "children": [1047]
+ "children": [1054]
}
],
"sources": [
@@ -27609,14 +28039,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 775,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L775"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L775"
}
]
}
}
},
{
- "id": 1044,
+ "id": 1051,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -27626,7 +28056,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 774,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L774"
}
],
"type": {
@@ -27635,7 +28065,7 @@
}
},
{
- "id": 1043,
+ "id": 1050,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -27645,7 +28075,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 773,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L773"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L773"
}
],
"type": {
@@ -27657,7 +28087,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1032,
+ "target": 1039,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -27683,7 +28113,7 @@
"groups": [
{
"title": "Properties",
- "children": [1045, 1044, 1043]
+ "children": [1052, 1051, 1050]
}
],
"sources": [
@@ -27691,7 +28121,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 772,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L772"
}
]
}
@@ -27700,7 +28130,7 @@
}
},
{
- "id": 901,
+ "id": 908,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -27710,20 +28140,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 521,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 902,
+ "id": 909,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 903,
+ "id": 910,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -27735,20 +28165,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 522,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 904,
+ "id": 911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 906,
+ "id": 913,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -27768,7 +28198,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 530,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L530"
}
],
"type": {
@@ -27777,7 +28207,7 @@
}
},
{
- "id": 905,
+ "id": 912,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -27813,7 +28243,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 528,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L528"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L528"
}
],
"type": {
@@ -27825,7 +28255,7 @@
"groups": [
{
"title": "Properties",
- "children": [906, 905]
+ "children": [913, 912]
}
],
"sources": [
@@ -27833,7 +28263,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 522,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L522"
}
]
}
@@ -27843,7 +28273,7 @@
"groups": [
{
"title": "Properties",
- "children": [903]
+ "children": [910]
}
],
"sources": [
@@ -27851,14 +28281,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 521,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L521"
}
]
}
}
},
{
- "id": 950,
+ "id": 957,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -27868,20 +28298,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 609,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 951,
+ "id": 958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 955,
+ "id": 962,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -27909,7 +28339,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 615,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L615"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L615"
}
],
"type": {
@@ -27918,7 +28348,7 @@
}
},
{
- "id": 956,
+ "id": 963,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -27946,7 +28376,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 617,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L617"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L617"
}
],
"type": {
@@ -27955,7 +28385,7 @@
}
},
{
- "id": 957,
+ "id": 964,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -27967,20 +28397,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 618,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 958,
+ "id": 965,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 959,
+ "id": 966,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -28000,7 +28430,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 620,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L620"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L620"
}
],
"type": {
@@ -28012,7 +28442,7 @@
"groups": [
{
"title": "Properties",
- "children": [959]
+ "children": [966]
}
],
"sources": [
@@ -28020,14 +28450,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 618,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L618"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L618"
}
]
}
}
},
{
- "id": 952,
+ "id": 959,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -28101,7 +28531,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 611,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611"
}
],
"type": {
@@ -28137,7 +28567,7 @@
{
"type": "reflection",
"declaration": {
- "id": 953,
+ "id": 960,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -28147,7 +28577,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 611,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L611"
}
]
}
@@ -28158,7 +28588,7 @@
}
},
{
- "id": 954,
+ "id": 961,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -28208,7 +28638,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 613,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L613"
}
],
"type": {
@@ -28220,7 +28650,7 @@
"groups": [
{
"title": "Properties",
- "children": [955, 956, 957, 952, 954]
+ "children": [962, 963, 964, 959, 961]
}
],
"sources": [
@@ -28228,14 +28658,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 609,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L609"
}
]
}
}
},
{
- "id": 938,
+ "id": 945,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -28245,20 +28675,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 594,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 939,
+ "id": 946,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 941,
+ "id": 948,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28270,20 +28700,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 597,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 942,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 945,
+ "id": 952,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -28303,13 +28733,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 603,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 946,
+ "id": 953,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -28319,12 +28749,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 603,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603"
}
],
"indexSignatures": [
{
- "id": 947,
+ "id": 954,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -28334,12 +28764,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 603,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L603"
}
],
"parameters": [
{
- "id": 948,
+ "id": 955,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -28360,7 +28790,7 @@
}
},
{
- "id": 943,
+ "id": 950,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -28380,7 +28810,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 599,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L599"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L599"
}
],
"type": {
@@ -28389,7 +28819,7 @@
}
},
{
- "id": 944,
+ "id": 951,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -28409,7 +28839,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 601,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L601"
}
],
"type": {
@@ -28418,7 +28848,7 @@
}
},
{
- "id": 949,
+ "id": 956,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -28438,7 +28868,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 605,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L605"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L605"
}
],
"type": {
@@ -28450,7 +28880,7 @@
"groups": [
{
"title": "Properties",
- "children": [945, 943, 944, 949]
+ "children": [952, 950, 951, 956]
}
],
"sources": [
@@ -28458,14 +28888,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 597,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L597"
}
]
}
}
},
{
- "id": 940,
+ "id": 947,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -28483,12 +28913,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 596,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L596"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L596"
}
],
"type": {
"type": "reference",
- "target": 697,
+ "target": 704,
"name": "Provider",
"package": "@supabase/auth-js"
}
@@ -28497,7 +28927,7 @@
"groups": [
{
"title": "Properties",
- "children": [941, 940]
+ "children": [948, 947]
}
],
"sources": [
@@ -28505,14 +28935,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 594,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L594"
}
]
}
}
},
{
- "id": 915,
+ "id": 922,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -28522,7 +28952,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 549,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549"
}
],
"type": {
@@ -28540,14 +28970,14 @@
{
"type": "reflection",
"declaration": {
- "id": 916,
+ "id": 923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 917,
+ "id": 924,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28559,20 +28989,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 550,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 918,
+ "id": 925,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 919,
+ "id": 926,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -28584,7 +29014,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 551,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L551"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L551"
}
],
"type": {
@@ -28596,7 +29026,7 @@
"groups": [
{
"title": "Properties",
- "children": [919]
+ "children": [926]
}
],
"sources": [
@@ -28604,7 +29034,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 550,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L550"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L550"
}
]
}
@@ -28614,7 +29044,7 @@
"groups": [
{
"title": "Properties",
- "children": [917]
+ "children": [924]
}
],
"sources": [
@@ -28622,7 +29052,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 549,
"character": 70,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L549"
}
]
}
@@ -28631,7 +29061,7 @@
}
},
{
- "id": 920,
+ "id": 927,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -28641,7 +29071,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 555,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L555"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L555"
}
],
"type": {
@@ -28650,14 +29080,14 @@
{
"type": "reflection",
"declaration": {
- "id": 921,
+ "id": 928,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 922,
+ "id": 929,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -28675,7 +29105,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 558,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L558"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L558"
}
],
"type": {
@@ -28684,7 +29114,7 @@
}
},
{
- "id": 923,
+ "id": 930,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -28696,214 +29126,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 559,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L559"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L559"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 924,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 928,
- "name": "captchaToken",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Verification token received when the user completes the captcha on the site."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 571,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L571"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 927,
- "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/src/lib/types.ts",
- "line": 569,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L569"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "object"
- }
- },
- {
- "id": 925,
- "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/src/lib/types.ts",
- "line": 561,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L561"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 926,
- "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/src/lib/types.ts",
- "line": 563,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L563"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [928, 927, 925, 926]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 559,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L559"
- }
- ]
- }
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [922, 923]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 556,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L556"
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 929,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 931,
- "name": "options",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 577,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L577"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 932,
+ "id": 931,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -28928,9 +29157,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 587,
+ "line": 571,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L571"
}
],
"type": {
@@ -28938,44 +29167,6 @@
"name": "string"
}
},
- {
- "id": 936,
- "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/src/lib/types.ts",
- "line": 589,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L589"
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "sms"
- },
- {
- "type": "literal",
- "value": "whatsapp"
- }
- ]
- }
- },
{
"id": 934,
"name": "data",
@@ -29011,9 +29202,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 585,
+ "line": 569,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L585"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L569"
}
],
"type": {
@@ -29021,6 +29212,35 @@
"name": "object"
}
},
+ {
+ "id": 932,
+ "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/src/lib/types.ts",
+ "line": 561,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L561"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
{
"id": 933,
"name": "shouldCreateUser",
@@ -29037,12 +29257,222 @@
}
]
},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 563,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L563"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [935, 934, 932, 933]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 559,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L559"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [929, 930]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 556,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L556"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 936,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 938,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 577,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L577"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 939,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 942,
+ "name": "captchaToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verification token received when the user completes the captcha on the site."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 587,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L587"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 943,
+ "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/src/lib/types.ts",
+ "line": 589,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L589"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ }
+ },
+ {
+ "id": 941,
+ "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/src/lib/types.ts",
+ "line": 585,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L585"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 940,
+ "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/src/lib/types.ts",
"line": 579,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L579"
}
],
"type": {
@@ -29054,7 +29484,7 @@
"groups": [
{
"title": "Properties",
- "children": [935, 936, 934, 933]
+ "children": [942, 943, 941, 940]
}
],
"sources": [
@@ -29062,14 +29492,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 577,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L577"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L577"
}
]
}
}
},
{
- "id": 930,
+ "id": 937,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -29087,7 +29517,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 576,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L576"
}
],
"type": {
@@ -29099,7 +29529,7 @@
"groups": [
{
"title": "Properties",
- "children": [931, 930]
+ "children": [938, 937]
}
],
"sources": [
@@ -29107,7 +29537,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 574,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L574"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L574"
}
]
}
@@ -29116,7 +29546,7 @@
}
},
{
- "id": 1048,
+ "id": 1055,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -29126,7 +29556,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 781,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L781"
}
],
"type": {
@@ -29135,14 +29565,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1049,
+ "id": 1056,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1051,
+ "id": 1058,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29154,20 +29584,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 786,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1052,
+ "id": 1059,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1054,
+ "id": 1061,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29187,7 +29617,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 790,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L790"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L790"
}
],
"type": {
@@ -29196,7 +29626,7 @@
}
},
{
- "id": 1053,
+ "id": 1060,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29216,7 +29646,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 788,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L788"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L788"
}
],
"type": {
@@ -29225,7 +29655,7 @@
}
},
{
- "id": 1055,
+ "id": 1062,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -29245,7 +29675,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 796,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L796"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L796"
}
],
"type": {
@@ -29257,7 +29687,7 @@
"groups": [
{
"title": "Properties",
- "children": [1054, 1053, 1055]
+ "children": [1061, 1060, 1062]
}
],
"sources": [
@@ -29265,14 +29695,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 786,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L786"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L786"
}
]
}
}
},
{
- "id": 1050,
+ "id": 1057,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -29290,7 +29720,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 784,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L784"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L784"
}
],
"type": {
@@ -29302,7 +29732,7 @@
"groups": [
{
"title": "Properties",
- "children": [1051, 1050]
+ "children": [1058, 1057]
}
],
"sources": [
@@ -29310,7 +29740,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 782,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L782"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L782"
}
]
}
@@ -29318,14 +29748,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1056,
+ "id": 1063,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1057,
+ "id": 1064,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -29343,7 +29773,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 801,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L801"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L801"
}
],
"type": {
@@ -29352,7 +29782,7 @@
}
},
{
- "id": 1058,
+ "id": 1065,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29364,20 +29794,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 803,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1059,
+ "id": 1066,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1061,
+ "id": 1068,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29397,7 +29827,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 807,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L807"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L807"
}
],
"type": {
@@ -29406,7 +29836,7 @@
}
},
{
- "id": 1060,
+ "id": 1067,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29426,7 +29856,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 805,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L805"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L805"
}
],
"type": {
@@ -29435,7 +29865,7 @@
}
},
{
- "id": 1062,
+ "id": 1069,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -29455,7 +29885,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 813,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L813"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L813"
}
],
"type": {
@@ -29467,7 +29897,7 @@
"groups": [
{
"title": "Properties",
- "children": [1061, 1060, 1062]
+ "children": [1068, 1067, 1069]
}
],
"sources": [
@@ -29475,7 +29905,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 803,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L803"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L803"
}
]
}
@@ -29485,7 +29915,7 @@
"groups": [
{
"title": "Properties",
- "children": [1057, 1058]
+ "children": [1064, 1065]
}
],
"sources": [
@@ -29493,7 +29923,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 799,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L799"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L799"
}
]
}
@@ -29502,7 +29932,7 @@
}
},
{
- "id": 1303,
+ "id": 1310,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -29512,20 +29942,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1341,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1341"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1304,
+ "id": 1311,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1305,
+ "id": 1312,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -29545,7 +29975,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1352,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1352"
}
],
"type": {
@@ -29570,7 +30000,7 @@
"groups": [
{
"title": "Properties",
- "children": [1305]
+ "children": [1312]
}
],
"sources": [
@@ -29578,14 +30008,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1341,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1341"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1341"
}
]
}
}
},
{
- "id": 1355,
+ "id": 1362,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -29595,7 +30025,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1500,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1500"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1500"
}
],
"type": {
@@ -29608,7 +30038,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1354,
+ "target": 1361,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -29616,7 +30046,7 @@
}
},
{
- "id": 907,
+ "id": 914,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -29626,12 +30056,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 534,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L534"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L534"
}
],
"type": {
"type": "reference",
- "target": 737,
+ "target": 744,
"typeArguments": [
{
"type": "intersection",
@@ -29648,14 +30078,14 @@
{
"type": "reflection",
"declaration": {
- "id": 908,
+ "id": 915,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 909,
+ "id": 916,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -29667,20 +30097,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 536,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 910,
+ "id": 917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 913,
+ "id": 920,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -29692,7 +30122,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 539,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L539"
}
],
"type": {
@@ -29701,7 +30131,7 @@
}
},
{
- "id": 914,
+ "id": 921,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -29713,7 +30143,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 540,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L540"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L540"
}
],
"type": {
@@ -29731,7 +30161,7 @@
}
},
{
- "id": 912,
+ "id": 919,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29743,7 +30173,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 538,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L538"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L538"
}
],
"type": {
@@ -29752,7 +30182,7 @@
}
},
{
- "id": 911,
+ "id": 918,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -29764,7 +30194,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 537,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L537"
}
],
"type": {
@@ -29776,7 +30206,7 @@
"groups": [
{
"title": "Properties",
- "children": [913, 914, 912, 911]
+ "children": [920, 921, 919, 918]
}
],
"sources": [
@@ -29784,7 +30214,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 536,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L536"
}
]
}
@@ -29794,7 +30224,7 @@
"groups": [
{
"title": "Properties",
- "children": [909]
+ "children": [916]
}
],
"sources": [
@@ -29802,7 +30232,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 535,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L535"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L535"
}
]
}
@@ -29815,7 +30245,7 @@
}
},
{
- "id": 960,
+ "id": 967,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -29825,20 +30255,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 624,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 961,
+ "id": 968,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 966,
+ "id": 973,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -29850,7 +30280,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 626,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626"
}
],
"type": {
@@ -29859,14 +30289,14 @@
{
"type": "reflection",
"declaration": {
- "id": 967,
+ "id": 974,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 968,
+ "id": 975,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -29876,13 +30306,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 627,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L627"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 969,
+ "id": 976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -29892,12 +30322,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 627,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L627"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L627"
}
],
"signatures": [
{
- "id": 970,
+ "id": 977,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -29915,7 +30345,7 @@
"groups": [
{
"title": "Properties",
- "children": [968]
+ "children": [975]
}
],
"sources": [
@@ -29923,7 +30353,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 626,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L626"
}
]
}
@@ -29936,7 +30366,7 @@
}
},
{
- "id": 962,
+ "id": 969,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -29948,13 +30378,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 625,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 963,
+ "id": 970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -29964,19 +30394,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 625,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L625"
}
],
"signatures": [
{
- "id": 964,
+ "id": 971,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 965,
+ "id": 972,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -30040,7 +30470,7 @@
}
},
{
- "id": 971,
+ "id": 978,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -30052,13 +30482,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 630,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L630"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 972,
+ "id": 979,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -30068,19 +30498,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 630,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L630"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L630"
}
],
"signatures": [
{
- "id": 973,
+ "id": 980,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 974,
+ "id": 981,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -30096,7 +30526,7 @@
}
},
{
- "id": 975,
+ "id": 982,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -30156,7 +30586,7 @@
"groups": [
{
"title": "Properties",
- "children": [966, 962, 971]
+ "children": [973, 969, 978]
}
],
"sources": [
@@ -30164,14 +30594,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 624,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L624"
}
]
}
}
},
{
- "id": 976,
+ "id": 983,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -30181,7 +30611,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 633,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L633"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L633"
}
],
"type": {
@@ -30190,14 +30620,14 @@
{
"type": "reflection",
"declaration": {
- "id": 977,
+ "id": 984,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 978,
+ "id": 985,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -30207,7 +30637,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 635,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L635"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L635"
}
],
"type": {
@@ -30216,7 +30646,7 @@
}
},
{
- "id": 981,
+ "id": 988,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30228,20 +30658,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 643,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 982,
+ "id": 989,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 984,
+ "id": 991,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30261,7 +30691,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 648,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L648"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L648"
}
],
"type": {
@@ -30270,7 +30700,7 @@
}
},
{
- "id": 985,
+ "id": 992,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -30282,7 +30712,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 650,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L650"
}
],
"type": {
@@ -30343,7 +30773,7 @@
}
},
{
- "id": 983,
+ "id": 990,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -30363,7 +30793,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 645,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L645"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L645"
}
],
"type": {
@@ -30375,7 +30805,7 @@
"groups": [
{
"title": "Properties",
- "children": [984, 985, 983]
+ "children": [991, 992, 990]
}
],
"sources": [
@@ -30383,14 +30813,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 643,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L643"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L643"
}
]
}
}
},
{
- "id": 980,
+ "id": 987,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -30410,7 +30840,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 641,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L641"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L641"
}
],
"type": {
@@ -30419,7 +30849,7 @@
}
},
{
- "id": 979,
+ "id": 986,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -30447,12 +30877,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 638,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L638"
}
],
"type": {
"type": "reference",
- "target": 960,
+ "target": 967,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -30461,7 +30891,7 @@
"groups": [
{
"title": "Properties",
- "children": [978, 981, 980, 979]
+ "children": [985, 988, 987, 986]
}
],
"sources": [
@@ -30469,7 +30899,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 634,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L634"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L634"
}
]
}
@@ -30477,14 +30907,14 @@
{
"type": "reflection",
"declaration": {
- "id": 986,
+ "id": 993,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 987,
+ "id": 994,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -30494,7 +30924,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 656,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L656"
}
],
"type": {
@@ -30503,7 +30933,7 @@
}
},
{
- "id": 988,
+ "id": 995,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -30545,7 +30975,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 659,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L659"
}
],
"type": {
@@ -30554,7 +30984,7 @@
}
},
{
- "id": 990,
+ "id": 997,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -30566,20 +30996,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 664,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 991,
+ "id": 998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 992,
+ "id": 999,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -30599,7 +31029,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 666,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L666"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L666"
}
],
"type": {
@@ -30611,7 +31041,7 @@
"groups": [
{
"title": "Properties",
- "children": [992]
+ "children": [999]
}
],
"sources": [
@@ -30619,14 +31049,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 664,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L664"
}
]
}
}
},
{
- "id": 989,
+ "id": 996,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -30644,7 +31074,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 662,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L662"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L662"
}
],
"type": {
@@ -30661,7 +31091,7 @@
"groups": [
{
"title": "Properties",
- "children": [987, 988, 990, 989]
+ "children": [994, 995, 997, 996]
}
],
"sources": [
@@ -30669,7 +31099,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 655,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L655"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L655"
}
]
}
@@ -30678,7 +31108,7 @@
}
},
{
- "id": 795,
+ "id": 802,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -30688,24 +31118,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 211,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211"
}
],
"type": {
"type": "reference",
- "target": 742,
+ "target": 749,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 796,
+ "id": 803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 797,
+ "id": 804,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -30731,7 +31161,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L219"
}
],
"type": {
@@ -30743,7 +31173,7 @@
"groups": [
{
"title": "Properties",
- "children": [797]
+ "children": [804]
}
],
"sources": [
@@ -30751,7 +31181,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 211,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L211"
}
]
}
@@ -30762,7 +31192,7 @@
}
},
{
- "id": 739,
+ "id": 746,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -30780,19 +31210,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 136,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L136"
}
],
"typeParameters": [
{
- "id": 740,
+ "id": 747,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 741,
+ "id": 748,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -30802,7 +31232,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 740,
+ "target": 747,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -30819,14 +31249,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 747,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 741,
+ "target": 748,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -30837,7 +31267,7 @@
}
},
{
- "id": 1285,
+ "id": 1292,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -30847,7 +31277,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1310,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1310"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1310"
}
],
"type": {
@@ -30904,14 +31334,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1286,
+ "id": 1293,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1287,
+ "id": 1294,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -30939,7 +31369,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1320,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1320"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1320"
}
],
"type": {
@@ -30951,7 +31381,7 @@
"groups": [
{
"title": "Properties",
- "children": [1287]
+ "children": [1294]
}
],
"sources": [
@@ -30959,7 +31389,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1312,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1312"
}
]
}
@@ -30968,7 +31398,7 @@
}
},
{
- "id": 1384,
+ "id": 1391,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -30986,20 +31416,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1585,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1585"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1385,
+ "id": 1392,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1386,
+ "id": 1393,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -31019,7 +31449,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1587,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1587"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1587"
}
],
"type": {
@@ -31028,7 +31458,7 @@
}
},
{
- "id": 1387,
+ "id": 1394,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -31048,7 +31478,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1589,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1589"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1589"
}
],
"type": {
@@ -31057,7 +31487,7 @@
}
},
{
- "id": 1390,
+ "id": 1397,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -31077,21 +31507,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1595,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1595"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1595"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1356,
+ "target": 1363,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1388,
+ "id": 1395,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -31111,7 +31541,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1591,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1591"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1591"
}
],
"type": {
@@ -31120,7 +31550,7 @@
}
},
{
- "id": 1389,
+ "id": 1396,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -31140,7 +31570,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1593,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1593"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1593"
}
],
"type": {
@@ -31155,7 +31585,7 @@
"groups": [
{
"title": "Properties",
- "children": [1386, 1387, 1390, 1388, 1389]
+ "children": [1393, 1394, 1397, 1395, 1396]
}
],
"sources": [
@@ -31163,14 +31593,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1585,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1585"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1585"
}
]
}
}
},
{
- "id": 798,
+ "id": 805,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -31180,24 +31610,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 222,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222"
}
],
"type": {
"type": "reference",
- "target": 751,
+ "target": 758,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 799,
+ "id": 806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 800,
+ "id": 807,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -31207,12 +31637,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 223,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L223"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L223"
}
],
"type": {
"type": "reference",
- "target": 846,
+ "target": 853,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -31221,7 +31651,7 @@
"groups": [
{
"title": "Properties",
- "children": [800]
+ "children": [807]
}
],
"sources": [
@@ -31229,7 +31659,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 222,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L222"
}
]
}
@@ -31240,7 +31670,7 @@
}
},
{
- "id": 1012,
+ "id": 1019,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -31250,7 +31680,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 711,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L711"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L711"
}
],
"type": {
@@ -31258,19 +31688,19 @@
"types": [
{
"type": "reference",
- "target": 1013,
+ "target": 1020,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1021,
+ "target": 1028,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1029,
+ "target": 1036,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -31278,7 +31708,7 @@
}
},
{
- "id": 733,
+ "id": 740,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -31288,20 +31718,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 734,
+ "id": 741,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 736,
+ "id": 743,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -31311,7 +31741,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L122"
}
],
"type": {
@@ -31320,7 +31750,7 @@
}
},
{
- "id": 735,
+ "id": 742,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -31330,14 +31760,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L121"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 732,
+ "target": 739,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -31347,7 +31777,7 @@
"groups": [
{
"title": "Properties",
- "children": [736, 735]
+ "children": [743, 742]
}
],
"sources": [
@@ -31355,14 +31785,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 120,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L120"
}
]
}
}
},
{
- "id": 732,
+ "id": 739,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -31372,7 +31802,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 119,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L119"
}
],
"type": {
@@ -31397,7 +31827,7 @@
}
},
{
- "id": 1011,
+ "id": 1018,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -31407,7 +31837,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 709,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L709"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L709"
}
],
"type": {
@@ -31415,13 +31845,13 @@
"types": [
{
"type": "reference",
- "target": 976,
+ "target": 983,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 994,
+ "target": 1001,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -31429,7 +31859,7 @@
}
},
{
- "id": 671,
+ "id": 678,
"name": "AuthAdminApi",
"variant": "declaration",
"kind": 32,
@@ -31441,7 +31871,7 @@
"fileName": "packages/core/auth-js/src/AuthAdminApi.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/AuthAdminApi.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthAdminApi.ts#L3"
}
],
"type": {
@@ -31456,7 +31886,7 @@
"defaultValue": "GoTrueAdminApi"
},
{
- "id": 672,
+ "id": 679,
"name": "AuthClient",
"variant": "declaration",
"kind": 32,
@@ -31468,7 +31898,7 @@
"fileName": "packages/core/auth-js/src/AuthClient.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/AuthClient.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/AuthClient.ts#L3"
}
],
"type": {
@@ -31483,7 +31913,7 @@
"defaultValue": "GoTrueClient"
},
{
- "id": 686,
+ "id": 693,
"name": "lockInternals",
"variant": "declaration",
"kind": 32,
@@ -31499,20 +31929,20 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 687,
+ "id": 694,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 688,
+ "id": 695,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -31526,7 +31956,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L10"
}
],
"type": {
@@ -31539,7 +31969,7 @@
"groups": [
{
"title": "Properties",
- "children": [688]
+ "children": [695]
}
],
"sources": [
@@ -31547,7 +31977,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L6"
}
]
}
@@ -31555,7 +31985,7 @@
"defaultValue": "..."
},
{
- "id": 1354,
+ "id": 1361,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -31567,7 +31997,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1499,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/types.ts#L1499"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/types.ts#L1499"
}
],
"type": {
@@ -31594,7 +32024,7 @@
"defaultValue": "..."
},
{
- "id": 1466,
+ "id": 1488,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -31604,12 +32034,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"signatures": [
{
- "id": 1467,
+ "id": 1489,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -31619,12 +32049,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 61,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L61"
}
],
"parameters": [
{
- "id": 1468,
+ "id": 1490,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31641,7 +32071,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1491,
+ "target": 1513,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -31650,7 +32080,7 @@
]
},
{
- "id": 1463,
+ "id": 1485,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -31660,12 +32090,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"signatures": [
{
- "id": 1464,
+ "id": 1486,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -31675,12 +32105,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 36,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L36"
}
],
"parameters": [
{
- "id": 1465,
+ "id": 1487,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31697,7 +32127,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1481,
+ "target": 1503,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -31706,7 +32136,7 @@
]
},
{
- "id": 1472,
+ "id": 1494,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -31716,12 +32146,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"signatures": [
{
- "id": 1473,
+ "id": 1495,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -31731,12 +32161,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 192,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L192"
}
],
"parameters": [
{
- "id": 1474,
+ "id": 1496,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31753,7 +32183,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1548,
+ "target": 1570,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -31762,7 +32192,7 @@
]
},
{
- "id": 1475,
+ "id": 1497,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -31772,12 +32202,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 242,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242"
}
],
"signatures": [
{
- "id": 1476,
+ "id": 1498,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -31787,12 +32217,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 242,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L242"
}
],
"parameters": [
{
- "id": 1477,
+ "id": 1499,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31809,7 +32239,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1602,
+ "target": 1624,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -31818,7 +32248,7 @@
]
},
{
- "id": 1469,
+ "id": 1491,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -31828,12 +32258,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"signatures": [
{
- "id": 1470,
+ "id": 1492,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -31843,12 +32273,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 126,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L126"
}
],
"parameters": [
{
- "id": 1471,
+ "id": 1493,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31865,7 +32295,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1523,
+ "target": 1545,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -31874,7 +32304,7 @@
]
},
{
- "id": 1478,
+ "id": 1500,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -31884,12 +32314,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"signatures": [
{
- "id": 1479,
+ "id": 1501,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -31899,12 +32329,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 274,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/errors.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/errors.ts#L274"
}
],
"parameters": [
{
- "id": 1480,
+ "id": 1502,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -31921,7 +32351,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1612,
+ "target": 1634,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -31930,7 +32360,7 @@
]
},
{
- "id": 673,
+ "id": 680,
"name": "navigatorLock",
"variant": "declaration",
"kind": 64,
@@ -31940,12 +32370,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"signatures": [
{
- "id": 674,
+ "id": 681,
"name": "navigatorLock",
"variant": "signature",
"kind": 4096,
@@ -32016,12 +32446,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 96,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L96"
}
],
"typeParameters": [
{
- "id": 675,
+ "id": 682,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -32030,7 +32460,7 @@
],
"parameters": [
{
- "id": 676,
+ "id": 683,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -32049,7 +32479,7 @@
}
},
{
- "id": 677,
+ "id": 684,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -32076,7 +32506,7 @@
}
},
{
- "id": 678,
+ "id": 685,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -32092,7 +32522,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 679,
+ "id": 686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32102,12 +32532,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"signatures": [
{
- "id": 680,
+ "id": 687,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -32117,7 +32547,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L99"
}
],
"type": {
@@ -32129,7 +32559,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 675,
+ "target": 682,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32153,7 +32583,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 675,
+ "target": 682,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32166,7 +32596,7 @@
]
},
{
- "id": 689,
+ "id": 696,
"name": "processLock",
"variant": "declaration",
"kind": 64,
@@ -32176,12 +32606,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 214,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214"
}
],
"signatures": [
{
- "id": 690,
+ "id": 697,
"name": "processLock",
"variant": "signature",
"kind": 4096,
@@ -32219,12 +32649,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 214,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L214"
}
],
"typeParameters": [
{
- "id": 691,
+ "id": 698,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -32233,7 +32663,7 @@
],
"parameters": [
{
- "id": 692,
+ "id": 699,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -32252,7 +32682,7 @@
}
},
{
- "id": 693,
+ "id": 700,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -32279,7 +32709,7 @@
}
},
{
- "id": 694,
+ "id": 701,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -32295,7 +32725,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 695,
+ "id": 702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32305,12 +32735,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217"
}
],
"signatures": [
{
- "id": 696,
+ "id": 703,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -32320,7 +32750,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 217,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/auth-js/src/lib/locks.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/auth-js/src/lib/locks.ts#L217"
}
],
"type": {
@@ -32332,7 +32762,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 691,
+ "target": 698,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32356,7 +32786,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 691,
+ "target": 698,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -32373,35 +32803,35 @@
{
"title": "Classes",
"children": [
- 1491, 1481, 1548, 1539, 1624, 1531, 1575, 1602, 1523, 1501, 1612, 1511, 1, 107, 681
+ 1513, 1503, 1570, 1561, 1646, 1553, 1597, 1624, 1545, 1523, 1634, 1533, 1, 107, 688
]
},
{
"title": "Interfaces",
"children": [
- 878, 812, 1447, 1085, 1278, 1404, 1148, 1347, 1327, 801, 891, 846, 838, 872, 815, 843, 1021,
- 1013, 1029
+ 885, 819, 1462, 1092, 1285, 1411, 1155, 1354, 1334, 808, 898, 853, 845, 879, 822, 850, 1028,
+ 1020, 1036
]
},
{
"title": "Type Aliases",
"children": [
- 810, 699, 698, 1142, 937, 1268, 1265, 1275, 1272, 1133, 1137, 1132, 1134, 1135, 1136, 1310,
- 1128, 1309, 1311, 1143, 1138, 1129, 1127, 1120, 1443, 1444, 768, 759, 763, 773, 777, 1291,
- 1376, 1033, 993, 994, 828, 827, 1079, 1069, 1088, 1093, 1089, 1100, 1074, 1063, 709, 1288,
- 1312, 700, 1119, 1118, 1116, 1115, 1117, 1101, 1307, 1306, 1308, 1114, 1102, 1113, 1106,
- 1105, 1107, 1111, 1032, 1427, 1433, 1360, 1356, 1392, 1359, 1391, 1357, 1358, 782, 1299,
- 1292, 737, 697, 742, 751, 1317, 1034, 901, 950, 938, 915, 920, 1048, 1303, 1355, 907, 960,
- 976, 795, 739, 1285, 1384, 798, 1012, 733, 732, 1011
+ 817, 706, 705, 1149, 944, 1275, 1272, 1282, 1279, 1140, 1144, 1139, 1141, 1142, 1143, 1317,
+ 1135, 1316, 1318, 1150, 1145, 1136, 1134, 1127, 1450, 1451, 1459, 1460, 775, 766, 770, 780,
+ 784, 1298, 1383, 1040, 1000, 1001, 835, 834, 1086, 1076, 1095, 1100, 1096, 1107, 1081, 1070,
+ 716, 1295, 1319, 707, 1126, 1125, 1123, 1122, 1124, 1108, 1314, 1313, 1315, 1121, 1109,
+ 1120, 1113, 1112, 1114, 1118, 1039, 1434, 1440, 1367, 1363, 1399, 1366, 1398, 1364, 1365,
+ 1454, 789, 1306, 1299, 744, 704, 749, 758, 1324, 1041, 908, 957, 945, 922, 927, 1055, 1310,
+ 1362, 914, 967, 983, 802, 746, 1292, 1391, 805, 1019, 740, 739, 1018
]
},
{
"title": "Variables",
- "children": [671, 672, 686, 1354]
+ "children": [678, 679, 693, 1361]
},
{
"title": "Functions",
- "children": [1466, 1463, 1472, 1475, 1469, 1478, 673, 689]
+ "children": [1488, 1485, 1494, 1497, 1491, 1500, 680, 696]
}
],
"packageName": "@supabase/auth-js",
@@ -33489,1045 +33919,1017 @@
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.stopAutoRefresh"
},
- "648": {
+ "655": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "649": {
+ "656": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "650": {
+ "657": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "jwt"
},
- "651": {
+ "658": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "652": {
+ "659": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "653": {
+ "660": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "654": {
+ "661": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.allowExpired"
},
- "655": {
+ "662": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.jwks"
},
- "656": {
+ "663": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "657": {
+ "664": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "658": {
+ "665": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "659": {
+ "666": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "660": {
+ "667": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "661": {
+ "668": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.claims"
},
- "662": {
+ "669": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.header"
},
- "663": {
+ "670": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.signature"
},
- "664": {
+ "671": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "665": {
+ "672": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "666": {
+ "673": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "667": {
+ "674": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "668": {
+ "675": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "669": {
+ "676": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "670": {
+ "677": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "671": {
+ "678": {
"sourceFileName": "src/AuthAdminApi.ts",
"qualifiedName": "AuthAdminApi"
},
- "672": {
+ "679": {
"sourceFileName": "src/AuthClient.ts",
"qualifiedName": "AuthClient"
},
- "673": {
+ "680": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "674": {
+ "681": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "675": {
+ "682": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "R"
},
- "676": {
+ "683": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "name"
},
- "677": {
+ "684": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "678": {
+ "685": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "fn"
},
- "679": {
+ "686": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "680": {
+ "687": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "681": {
+ "688": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "682": {
+ "689": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.__constructor"
},
- "683": {
+ "690": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "684": {
+ "691": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "message"
},
- "685": {
+ "692": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout"
},
- "686": {
+ "693": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "internals"
},
- "687": {
+ "694": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__object"
},
- "688": {
+ "695": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__object.debug"
},
- "689": {
+ "696": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "690": {
+ "697": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "691": {
+ "698": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "R"
},
- "692": {
+ "699": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "name"
},
- "693": {
+ "700": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "694": {
+ "701": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "fn"
},
- "695": {
+ "702": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "696": {
+ "703": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "697": {
+ "704": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Provider"
},
- "698": {
+ "705": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthChangeEventMFA"
},
- "699": {
+ "706": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthChangeEvent"
},
- "700": {
+ "707": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "LockFunc"
},
- "701": {
+ "708": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "702": {
+ "709": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "703": {
+ "710": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "name"
},
- "704": {
+ "711": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "acquireTimeout"
},
- "705": {
+ "712": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "fn"
},
- "706": {
+ "713": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "707": {
+ "714": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "708": {
+ "715": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "R"
},
- "709": {
+ "716": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueClientOptions"
},
- "710": {
+ "717": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "711": {
+ "718": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "712": {
+ "719": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.headers"
},
- "713": {
+ "720": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "714": {
+ "721": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "716": {
+ "723": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.storageKey"
},
- "717": {
+ "724": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.detectSessionInUrl"
},
- "718": {
+ "725": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.autoRefreshToken"
},
- "719": {
+ "726": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.persistSession"
},
- "720": {
+ "727": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.storage"
},
- "721": {
+ "728": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.userStorage"
},
- "722": {
+ "729": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.fetch"
},
- "723": {
+ "730": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.flowType"
},
- "724": {
+ "731": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.debug"
},
- "725": {
+ "732": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "726": {
+ "733": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "727": {
+ "734": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "message"
},
- "728": {
+ "735": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "args"
},
- "729": {
+ "736": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.lock"
},
- "730": {
+ "737": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.hasCustomAuthorizationHeader"
},
- "731": {
+ "738": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.throwOnError"
},
- "732": {
+ "739": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "WeakPasswordReasons"
},
- "733": {
+ "740": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "WeakPassword"
},
- "734": {
+ "741": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "735": {
+ "742": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.reasons"
},
- "736": {
+ "743": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.message"
},
- "737": {
+ "744": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Prettify"
},
- "738": {
+ "745": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "739": {
+ "746": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "StrictOmit"
},
- "740": {
+ "747": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "741": {
+ "748": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "K"
},
- "742": {
+ "749": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequestResult"
},
- "743": {
+ "750": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "744": {
+ "751": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "745": {
+ "752": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "746": {
+ "753": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "747": {
+ "754": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "748": {
+ "755": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "749": {
+ "756": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "750": {
+ "757": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "ErrorType"
},
- "751": {
+ "758": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequestResultSafeDestructure"
},
- "752": {
+ "759": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "753": {
+ "760": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "754": {
+ "761": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "755": {
+ "762": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "756": {
+ "763": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "757": {
+ "764": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "758": {
+ "765": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "759": {
+ "766": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthResponse"
},
- "760": {
+ "767": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "761": {
+ "768": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "762": {
+ "769": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "763": {
+ "770": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthResponsePassword"
},
- "764": {
+ "771": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "765": {
+ "772": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "766": {
+ "773": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "767": {
+ "774": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.weak_password"
},
- "768": {
+ "775": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthOtpResponse"
},
- "769": {
+ "776": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "770": {
+ "777": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "771": {
+ "778": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "772": {
+ "779": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.messageId"
},
- "773": {
+ "780": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthTokenResponse"
},
- "774": {
+ "781": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "775": {
+ "782": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "776": {
+ "783": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "777": {
+ "784": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthTokenResponsePassword"
},
- "778": {
+ "785": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "779": {
+ "786": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "780": {
+ "787": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "781": {
+ "788": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.weakPassword"
},
- "782": {
+ "789": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "OAuthResponse"
},
- "783": {
+ "790": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "784": {
+ "791": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "785": {
+ "792": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "786": {
+ "793": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "787": {
+ "794": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "788": {
+ "795": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "789": {
+ "796": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "790": {
+ "797": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "791": {
+ "798": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "792": {
+ "799": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "793": {
+ "800": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "794": {
+ "801": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "795": {
+ "802": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SSOResponse"
},
- "796": {
+ "803": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "797": {
+ "804": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "798": {
+ "805": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserResponse"
},
- "799": {
+ "806": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "800": {
+ "807": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "801": {
+ "808": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session"
},
- "802": {
+ "809": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.provider_token"
},
- "803": {
+ "810": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.provider_refresh_token"
},
- "804": {
+ "811": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.access_token"
},
- "805": {
+ "812": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.refresh_token"
},
- "806": {
+ "813": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.expires_in"
},
- "807": {
+ "814": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.expires_at"
},
- "808": {
+ "815": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.token_type"
},
- "809": {
+ "816": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.user"
},
- "810": {
+ "817": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMRMethod"
},
- "811": {
+ "818": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "812": {
+ "819": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry"
},
- "813": {
+ "820": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry.method"
},
- "814": {
+ "821": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry.timestamp"
},
- "815": {
+ "822": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity"
},
- "816": {
+ "823": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.id"
},
- "817": {
+ "824": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.user_id"
},
- "818": {
+ "825": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_data"
},
- "819": {
+ "826": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "820": {
+ "827": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "822": {
+ "829": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "823": {
+ "830": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "824": {
+ "831": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "825": {
+ "832": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "826": {
+ "833": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "827": {
+ "834": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "828": {
+ "835": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Factor"
},
- "829": {
+ "836": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "830": {
+ "837": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "831": {
+ "838": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "832": {
+ "839": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "833": {
+ "840": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "834": {
+ "841": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "835": {
+ "842": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "836": {
+ "843": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Type"
},
- "837": {
+ "844": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Status"
},
- "838": {
+ "845": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "839": {
+ "846": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "840": {
+ "847": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.providers"
},
- "841": {
+ "848": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "843": {
+ "850": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "844": {
+ "851": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata.__index"
},
- "846": {
+ "853": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User"
},
- "847": {
+ "854": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.id"
},
- "848": {
+ "855": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.app_metadata"
},
- "849": {
+ "856": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.user_metadata"
},
- "850": {
+ "857": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.aud"
},
- "851": {
+ "858": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.confirmation_sent_at"
},
- "852": {
+ "859": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.recovery_sent_at"
},
- "853": {
+ "860": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.email_change_sent_at"
},
- "854": {
+ "861": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.new_email"
},
- "855": {
+ "862": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.new_phone"
},
- "856": {
+ "863": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.invited_at"
},
- "857": {
+ "864": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.action_link"
},
- "858": {
+ "865": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.email"
},
- "859": {
+ "866": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.phone"
},
- "860": {
+ "867": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.created_at"
},
- "861": {
+ "868": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.confirmed_at"
},
- "862": {
+ "869": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.email_confirmed_at"
},
- "863": {
+ "870": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.phone_confirmed_at"
},
- "864": {
+ "871": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.last_sign_in_at"
},
- "865": {
+ "872": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.role"
},
- "866": {
+ "873": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.updated_at"
},
- "867": {
+ "874": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.identities"
},
- "868": {
+ "875": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.is_anonymous"
},
- "869": {
+ "876": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.is_sso_user"
},
- "870": {
+ "877": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.factors"
},
- "871": {
+ "878": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.deleted_at"
},
- "872": {
+ "879": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes"
},
- "873": {
+ "880": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.email"
},
- "874": {
+ "881": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.phone"
},
- "875": {
+ "882": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.password"
},
- "876": {
+ "883": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.nonce"
},
- "877": {
+ "884": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.data"
},
- "878": {
+ "885": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes"
},
- "879": {
+ "886": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.user_metadata"
},
- "880": {
+ "887": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.app_metadata"
},
- "881": {
+ "888": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.email_confirm"
},
- "882": {
+ "889": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.phone_confirm"
},
- "883": {
+ "890": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.ban_duration"
},
- "884": {
+ "891": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.role"
},
- "885": {
+ "892": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.password_hash"
},
- "886": {
+ "893": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.id"
},
- "887": {
+ "894": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "nonce"
},
- "888": {
+ "895": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "phone"
},
- "889": {
+ "896": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "email"
},
- "890": {
+ "897": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "password"
},
- "891": {
+ "898": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription"
},
- "892": {
+ "899": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription.id"
},
- "893": {
+ "900": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription.callback"
},
- "894": {
+ "901": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "895": {
+ "902": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "896": {
+ "903": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "event"
},
- "897": {
+ "904": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "session"
},
- "898": {
+ "905": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription.unsubscribe"
},
- "899": {
+ "906": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "900": {
+ "907": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "901": {
+ "908": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignInAnonymouslyCredentials"
},
- "902": {
+ "909": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "903": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
- },
- "904": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
- },
- "905": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
- },
- "906": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
- },
- "907": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
- },
- "908": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
- },
- "909": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
- },
"910": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"911": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"912": {
"sourceFileName": "src/lib/types.ts",
@@ -34539,79 +34941,79 @@
},
"914": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"915": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type"
},
"916": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"917": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"918": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.emailRedirectTo"
},
"919": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.data"
},
"920": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"921": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.channel"
},
"922": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"923": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"924": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"925": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type"
},
"926": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.captchaToken"
},
"927": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"928": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"929": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email"
},
"930": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.options"
},
"931": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"932": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.emailRedirectTo"
},
"933": {
"sourceFileName": "src/lib/types.ts",
@@ -34627,15 +35029,15 @@
},
"936": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.phone"
},
"938": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "__type.options"
},
"939": {
"sourceFileName": "src/lib/types.ts",
@@ -34643,27 +35045,27 @@
},
"940": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type.shouldCreateUser"
},
"941": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.data"
},
"942": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"943": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.channel"
},
"944": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "AuthFlowType"
},
"945": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"946": {
"sourceFileName": "src/lib/types.ts",
@@ -34671,23 +35073,27 @@
},
"947": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.provider"
+ },
+ "948": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.options"
},
"949": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.redirectTo"
},
"951": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.scopes"
},
"952": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "__type.queryParams"
},
"953": {
"sourceFileName": "src/lib/types.ts",
@@ -34695,19 +35101,15 @@
},
"954": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token"
- },
- "955": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type.__index"
},
"956": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"957": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"958": {
"sourceFileName": "src/lib/types.ts",
@@ -34715,47 +35117,47 @@
},
"959": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.provider"
},
"960": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type"
},
"961": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.token"
},
"962": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "__type.access_token"
},
"963": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.nonce"
},
"964": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"965": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"966": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.captchaToken"
},
"967": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SolanaWallet"
},
"968": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type"
},
"969": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"970": {
"sourceFileName": "src/lib/types.ts",
@@ -34763,27 +35165,27 @@
},
"971": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"972": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "inputs"
},
"973": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"974": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"975": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "__type.toBase58"
},
"976": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "__type"
},
"977": {
"sourceFileName": "src/lib/types.ts",
@@ -34791,259 +35193,259 @@
},
"978": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signMessage"
},
"979": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type"
},
"980": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type"
},
"981": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "message"
},
"982": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "encoding"
},
"983": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"984": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"985": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.chain"
},
"986": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.wallet"
},
"987": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.statement"
},
"988": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.options"
},
"989": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type"
},
"990": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.url"
},
"991": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"992": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.signInWithSolana"
},
"993": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type"
},
"994": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "__type.chain"
},
"995": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.message"
},
"996": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signature"
},
"997": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type.options"
},
"998": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.captchaToken"
},
"1000": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWallet"
},
"1001": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"1002": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1003": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.chain"
},
"1004": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.wallet"
},
"1005": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.statement"
},
"1006": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type.options"
},
"1007": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type"
},
"1008": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.url"
},
"1009": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1010": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.signInWithEthereum"
},
"1011": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type"
},
"1012": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "__type.chain"
},
"1013": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "__type.message"
},
"1014": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "__type.signature"
},
"1015": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "__type.options"
},
"1016": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "__type"
},
"1017": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "__type.captchaToken"
},
"1018": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Web3Credentials"
},
"1019": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "VerifyOtpParams"
},
"1020": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"1021": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"1022": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"1023": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"1024": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"1025": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "__type"
},
"1026": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.redirectTo"
},
"1027": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.captchaToken"
},
"1028": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"1029": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"1030": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"1031": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"1032": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"1033": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "__type"
},
"1034": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "__type.redirectTo"
},
"1035": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1036": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1037": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1038": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1039": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MobileOtpType"
},
"1040": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "EmailOtpType"
},
"1041": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "ResendParams"
},
"1042": {
"sourceFileName": "src/lib/types.ts",
@@ -35055,7 +35457,7 @@
},
"1044": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.email"
},
"1045": {
"sourceFileName": "src/lib/types.ts",
@@ -35067,11 +35469,11 @@
},
"1047": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1048": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type.captchaToken"
},
"1049": {
"sourceFileName": "src/lib/types.ts",
@@ -35079,19 +35481,19 @@
},
"1050": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "__type.type"
},
"1051": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.phone"
},
"1052": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1053": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type"
},
"1054": {
"sourceFileName": "src/lib/types.ts",
@@ -35099,7 +35501,7 @@
},
"1055": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "SignInWithSSO"
},
"1056": {
"sourceFileName": "src/lib/types.ts",
@@ -35107,7 +35509,7 @@
},
"1057": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type.providerId"
},
"1058": {
"sourceFileName": "src/lib/types.ts",
@@ -35131,375 +35533,375 @@
},
"1063": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type"
},
"1064": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.domain"
},
"1065": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type.options"
},
"1066": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1067": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.redirectTo"
},
"1068": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.captchaToken"
},
"1069": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1070": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1071": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"1072": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type.type"
},
"1073": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1074": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.password"
},
"1075": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1076": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1077": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1078": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1079": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.email"
},
"1080": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1081": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1082": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1083": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.type"
},
"1084": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1085": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.options"
},
"1086": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1087": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "__type"
},
"1088": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "__type.type"
},
"1089": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "__type.email"
},
"1090": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.newEmail"
},
"1091": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "__type.options"
},
"1092": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "GenerateLinkOptions"
},
"1093": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1094": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1095": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "GenerateLinkParams"
},
"1096": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "GenerateLinkResponse"
},
"1097": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type"
},
"1098": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.properties"
},
"1099": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.user"
},
"1100": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "GenerateLinkProperties"
},
"1101": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "__type"
},
"1102": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "__type.action_link"
},
"1103": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email_otp"
},
"1104": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "__type.hashed_token"
},
"1105": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type.redirect_to"
},
"1106": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "__type.verification_type"
},
"1107": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "GenerateLinkType"
},
"1108": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAEnrollParams"
},
"1109": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "MFAUnenrollParams"
},
"1110": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type"
},
"1111": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "__type.factorId"
},
"1112": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1113": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1114": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1115": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "__type"
},
"1116": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "__type.webauthn"
},
"1117": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "T"
},
"1118": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1119": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "T"
},
"1120": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAVerifyParams"
},
"1121": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFATOTPChannel"
},
"1122": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1123": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1124": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1125": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "MFAChallengeParams"
},
"1126": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1127": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1128": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "__type"
},
"1129": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "__type.access_token"
},
"1130": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.token_type"
},
"1131": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.expires_in"
},
"1132": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type.refresh_token"
},
"1133": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "__type.user"
},
"1134": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1135": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1136": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1137": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "__type"
},
"1138": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "__type.id"
},
"1139": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1140": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1141": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1142": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1143": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1144": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1145": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1146": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type"
},
"1147": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.all"
},
"1148": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "T"
},
"1149": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1150": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1151": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1152": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.currentLevel"
},
"1153": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type.nextLevel"
},
"1154": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1155": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "GoTrueMFAApi"
},
"1156": {
"sourceFileName": "src/lib/types.ts",
@@ -35507,91 +35909,91 @@
},
"1157": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1158": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1159": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1160": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1161": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "friendlyName"
},
"1162": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "issuer"
},
"1163": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1164": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1165": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "__type"
},
"1166": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "factorType"
},
"1167": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1168": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "phone"
},
"1169": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1170": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1171": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1172": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorType"
},
"1173": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "friendlyName"
},
"1174": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1175": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "params"
},
"1176": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1177": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1178": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "params"
},
"1179": {
"sourceFileName": "src/lib/types.ts",
@@ -35599,15 +36001,15 @@
},
"1180": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "factorId"
},
"1181": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1182": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "data"
},
"1183": {
"sourceFileName": "src/lib/types.ts",
@@ -35615,11 +36017,11 @@
},
"1184": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type"
},
"1185": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "data"
},
"1186": {
"sourceFileName": "src/lib/types.ts",
@@ -35627,47 +36029,47 @@
},
"1187": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "id"
},
"1188": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "type"
},
"1189": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1190": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1191": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1192": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1193": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1194": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1195": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "channel"
},
"1196": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1197": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "data"
},
"1198": {
"sourceFileName": "src/lib/types.ts",
@@ -35675,11 +36077,11 @@
},
"1199": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type"
},
"1200": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "data"
},
"1201": {
"sourceFileName": "src/lib/types.ts",
@@ -35687,63 +36089,63 @@
},
"1202": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "id"
},
"1203": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "type"
},
"1204": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1205": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "error"
},
"1206": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1207": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1208": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1209": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "factorId"
},
"1210": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "webauthn"
},
"1211": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type"
},
"1212": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpId"
},
"1213": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "__type.rpOrigins"
},
"1214": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1215": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "data"
},
"1216": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "error"
},
"1217": {
"sourceFileName": "src/lib/types.ts",
@@ -35751,79 +36153,79 @@
},
"1218": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "data"
},
"1219": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1220": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "id"
},
"1221": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "type"
},
"1222": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1223": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "webauthn"
},
"1224": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1225": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.type"
},
"1226": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.credential_options"
},
"1227": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1228": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type.publicKey"
},
"1229": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "__type.type"
},
"1231": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "__type.credential_options"
},
"1232": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type"
},
"1233": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.publicKey"
},
"1234": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "error"
},
"1235": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1236": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "params"
},
"1237": {
"sourceFileName": "src/lib/types.ts",
@@ -35831,143 +36233,143 @@
},
"1238": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1239": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1240": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1241": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1242": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "challengeId"
},
"1243": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1244": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1245": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1246": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "__type"
},
"1247": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "factorId"
},
"1248": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "challengeId"
},
"1249": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "code"
},
"1250": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1251": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1252": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "__type"
},
"1253": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "factorId"
},
"1254": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "challengeId"
},
"1255": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "webauthn"
},
"1256": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1257": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1258": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1259": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1260": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "params"
},
"1261": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1262": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1263": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "params"
},
"1264": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "__type"
},
"1265": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "factorId"
},
"1266": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "code"
},
"1267": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1268": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1269": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1270": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1271": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1272": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1273": {
"sourceFileName": "src/lib/types.ts",
@@ -35975,11 +36377,11 @@
},
"1274": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "__type.id"
},
"1275": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1276": {
"sourceFileName": "src/lib/types.ts",
@@ -35987,67 +36389,67 @@
},
"1277": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type.id"
},
"1278": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type.userId"
},
"1279": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1280": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "__type"
},
"1281": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.factors"
},
"1282": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1283": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "__type"
},
"1284": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.userId"
},
"1285": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1286": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1287": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1288": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "params"
},
"1289": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1290": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1291": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "params"
},
"1292": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "SupportedStorage"
},
"1293": {
"sourceFileName": "src/lib/types.ts",
@@ -36055,23 +36457,27 @@
},
"1294": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "__type.isServer"
},
"1295": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "InitializeResult"
},
"1296": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type"
},
"1297": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.error"
+ },
+ "1298": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "CallRefreshTokenResult"
},
"1299": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "PageParams"
+ "qualifiedName": "Pagination"
},
"1300": {
"sourceFileName": "src/lib/types.ts",
@@ -36079,459 +36485,455 @@
},
"1301": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.page"
+ "qualifiedName": "__type.nextPage"
},
"1302": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.perPage"
+ "qualifiedName": "__type.lastPage"
},
"1303": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignOut"
+ "qualifiedName": "__type.total"
},
"1304": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
- },
- "1305": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.__index"
},
"1306": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollTOTPParams"
+ "qualifiedName": "PageParams"
},
"1307": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollPhoneParams"
+ "qualifiedName": "__type"
},
"1308": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAEnrollWebauthnParams"
+ "qualifiedName": "__type.page"
},
"1309": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollTOTPResponse"
+ "qualifiedName": "__type.perPage"
},
"1310": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollPhoneResponse"
+ "qualifiedName": "SignOut"
},
"1311": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollWebauthnResponse"
+ "qualifiedName": "__type"
},
"1312": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtHeader"
+ "qualifiedName": "__type.scope"
},
"1313": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAEnrollTOTPParams"
},
"1314": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.alg"
+ "qualifiedName": "MFAEnrollPhoneParams"
},
"1315": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.kid"
+ "qualifiedName": "MFAEnrollWebauthnParams"
},
"1316": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.typ"
+ "qualifiedName": "AuthMFAEnrollTOTPResponse"
},
"1317": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "RequiredClaims"
+ "qualifiedName": "AuthMFAEnrollPhoneResponse"
},
"1318": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
"1319": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iss"
+ "qualifiedName": "JwtHeader"
},
"1320": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.sub"
+ "qualifiedName": "__type"
},
"1321": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.alg"
},
"1322": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.exp"
+ "qualifiedName": "__type.kid"
},
"1323": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iat"
+ "qualifiedName": "__type.typ"
},
"1324": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.role"
+ "qualifiedName": "RequiredClaims"
},
"1325": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aal"
+ "qualifiedName": "__type"
},
"1326": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session_id"
+ "qualifiedName": "__type.iss"
},
"1327": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload"
+ "qualifiedName": "__type.sub"
},
"1328": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.email"
+ "qualifiedName": "__type.aud"
},
"1329": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.phone"
+ "qualifiedName": "__type.exp"
},
"1330": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.is_anonymous"
+ "qualifiedName": "__type.iat"
},
"1331": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.jti"
+ "qualifiedName": "__type.role"
},
"1332": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.nbf"
+ "qualifiedName": "__type.aal"
},
"1333": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.app_metadata"
+ "qualifiedName": "__type.session_id"
},
"1334": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.user_metadata"
+ "qualifiedName": "JwtPayload"
},
"1335": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.amr"
+ "qualifiedName": "JwtPayload.email"
},
"1336": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.ref"
+ "qualifiedName": "JwtPayload.phone"
},
"1337": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iss"
+ "qualifiedName": "JwtPayload.is_anonymous"
},
"1338": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.sub"
+ "qualifiedName": "JwtPayload.jti"
},
"1339": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "JwtPayload.nbf"
},
"1340": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.exp"
+ "qualifiedName": "JwtPayload.app_metadata"
},
"1341": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.iat"
+ "qualifiedName": "JwtPayload.user_metadata"
},
"1342": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.role"
+ "qualifiedName": "JwtPayload.amr"
},
"1343": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aal"
+ "qualifiedName": "JwtPayload.ref"
},
"1344": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.session_id"
+ "qualifiedName": "__type.iss"
},
"1345": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JwtPayload.__index"
+ "qualifiedName": "__type.sub"
+ },
+ "1346": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.aud"
},
"1347": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK"
+ "qualifiedName": "__type.exp"
},
"1348": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.kty"
+ "qualifiedName": "__type.iat"
},
"1349": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.key_ops"
+ "qualifiedName": "__type.role"
},
"1350": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.alg"
+ "qualifiedName": "__type.aal"
},
"1351": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.kid"
+ "qualifiedName": "__type.session_id"
},
"1352": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "JWK.__index"
+ "qualifiedName": "JwtPayload.__index"
},
"1354": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
+ "qualifiedName": "JWK"
},
"1355": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "JWK.kty"
},
"1356": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "JWK.key_ops"
},
"1357": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "JWK.alg"
},
"1358": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "JWK.kid"
},
"1359": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
- },
- "1360": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "JWK.__index"
},
"1361": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1362": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "SignOutScope"
},
"1363": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "OAuthClientGrantType"
},
"1364": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "OAuthClientResponseType"
},
"1365": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "OAuthClientType"
},
"1366": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1367": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "OAuthClient"
},
"1368": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type"
},
"1369": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_id"
},
"1370": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_name"
},
"1371": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.client_secret"
},
"1372": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.client_type"
},
"1373": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1374": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.registration_type"
},
"1375": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.client_uri"
},
"1376": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.logo_uri"
},
"1377": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.redirect_uris"
},
"1378": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.grant_types"
},
"1379": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.response_types"
},
"1380": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.scope"
},
"1381": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.created_at"
},
"1382": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.updated_at"
},
"1383": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1384": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type"
},
"1385": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.client_name"
},
"1386": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.client_uri"
},
"1387": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.redirect_uris"
},
"1388": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.grant_types"
},
"1389": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.response_types"
},
"1390": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.scope"
},
"1391": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1392": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "__type"
},
"1393": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.client_name"
},
"1394": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.client_uri"
},
"1395": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.logo_uri"
},
"1396": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type.redirect_uris"
},
"1397": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.grant_types"
},
"1398": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "OAuthClientResponse"
},
"1399": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientListResponse"
},
"1400": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"1401": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"1402": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type"
},
"1403": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1404": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.aud"
},
"1405": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "__type.error"
},
"1406": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "__type"
},
"1407": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.data"
},
"1408": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "__type"
},
"1409": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "__type.clients"
},
"1410": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "__type.error"
},
"1411": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1412": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1413": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1414": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "params"
},
"1415": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1416": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1417": {
"sourceFileName": "src/lib/types.ts",
@@ -36539,11 +36941,11 @@
},
"1418": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1419": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1420": {
"sourceFileName": "src/lib/types.ts",
@@ -36551,31 +36953,31 @@
},
"1421": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1422": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1423": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "clientId"
},
"1424": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "params"
},
"1425": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1426": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1427": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "clientId"
},
"1428": {
"sourceFileName": "src/lib/types.ts",
@@ -36583,107 +36985,107 @@
},
"1429": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "__type.data"
},
"1430": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.error"
},
"1431": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1432": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1433": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "clientId"
},
"1434": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1435": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "__type"
},
"1436": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type.id"
},
"1437": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.name"
},
"1438": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.uri"
},
"1439": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.logo_uri"
},
"1440": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1441": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1442": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.authorization_id"
},
"1443": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.redirect_uri"
},
"1444": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "__type.client"
},
"1445": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1446": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "__type"
},
"1447": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type.id"
},
"1448": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "__type.email"
},
"1449": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "__type.scope"
},
"1450": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1451": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1452": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "__type"
},
"1453": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "__type.redirect_url"
},
"1454": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "OAuthGrant"
},
"1455": {
"sourceFileName": "src/lib/types.ts",
@@ -36691,23 +37093,23 @@
},
"1456": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.client"
},
"1457": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.scopes"
},
"1458": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "__type.granted_at"
},
"1459": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1460": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1461": {
"sourceFileName": "src/lib/types.ts",
@@ -36715,637 +37117,725 @@
},
"1462": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1463": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1464": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1465": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1466": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1467": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1468": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1469": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1470": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1471": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1472": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1473": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1474": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1475": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1476": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1477": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1478": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1479": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1480": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1481": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1482": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1483": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1484": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
+ },
+ "1485": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1464": {
+ "1486": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1465": {
+ "1487": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1466": {
+ "1488": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1467": {
+ "1489": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1468": {
+ "1490": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1469": {
+ "1491": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1470": {
+ "1492": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1471": {
+ "1493": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1472": {
+ "1494": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1473": {
+ "1495": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1474": {
+ "1496": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1475": {
+ "1497": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1476": {
+ "1498": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1477": {
+ "1499": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1478": {
+ "1500": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1479": {
+ "1501": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1480": {
+ "1502": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1481": {
+ "1503": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1482": {
+ "1504": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.__constructor"
},
- "1483": {
+ "1505": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1484": {
+ "1506": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1485": {
+ "1507": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1486": {
+ "1508": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1487": {
+ "1509": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1488": {
+ "1510": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1489": {
+ "1511": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1491": {
+ "1513": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1492": {
+ "1514": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1493": {
+ "1515": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1494": {
+ "1516": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1495": {
+ "1517": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1496": {
+ "1518": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1497": {
+ "1519": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1498": {
+ "1520": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1499": {
+ "1521": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1501": {
+ "1523": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1502": {
+ "1524": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1503": {
+ "1525": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1504": {
+ "1526": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1505": {
+ "1527": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1506": {
+ "1528": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1507": {
+ "1529": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1508": {
+ "1530": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1509": {
+ "1531": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1511": {
+ "1533": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1512": {
+ "1534": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1513": {
+ "1535": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1514": {
+ "1536": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1515": {
+ "1537": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "name"
},
- "1516": {
+ "1538": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1517": {
+ "1539": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1518": {
+ "1540": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1519": {
+ "1541": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1520": {
+ "1542": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1521": {
+ "1543": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1523": {
+ "1545": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1524": {
+ "1546": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1525": {
+ "1547": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1526": {
+ "1548": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1527": {
+ "1549": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1528": {
+ "1550": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1529": {
+ "1551": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1531": {
+ "1553": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1532": {
+ "1554": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1533": {
+ "1555": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1534": {
+ "1556": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1535": {
+ "1557": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1536": {
+ "1558": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1537": {
+ "1559": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1539": {
+ "1561": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1540": {
+ "1562": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1541": {
+ "1563": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1542": {
+ "1564": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1543": {
+ "1565": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1544": {
+ "1566": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1545": {
+ "1567": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1546": {
+ "1568": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1548": {
+ "1570": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1549": {
+ "1571": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1550": {
+ "1572": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1551": {
+ "1573": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1552": {
+ "1574": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1553": {
+ "1575": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1554": {
+ "1576": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1555": {
+ "1577": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1556": {
+ "1578": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1557": {
+ "1579": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1558": {
+ "1580": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1559": {
+ "1581": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1560": {
+ "1582": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1561": {
+ "1583": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1562": {
+ "1584": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1563": {
+ "1585": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1564": {
+ "1586": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1565": {
+ "1587": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1566": {
+ "1588": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1567": {
+ "1589": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1568": {
+ "1590": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1569": {
+ "1591": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1570": {
+ "1592": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1571": {
+ "1593": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1572": {
+ "1594": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1573": {
+ "1595": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1575": {
+ "1597": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1576": {
+ "1598": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1577": {
+ "1599": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1578": {
+ "1600": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1579": {
+ "1601": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1580": {
+ "1602": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1581": {
+ "1603": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1582": {
+ "1604": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1583": {
+ "1605": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1584": {
+ "1606": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1585": {
+ "1607": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1586": {
+ "1608": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1587": {
+ "1609": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1588": {
+ "1610": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1589": {
+ "1611": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1590": {
+ "1612": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1591": {
+ "1613": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1592": {
+ "1614": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1593": {
+ "1615": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1594": {
+ "1616": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1595": {
+ "1617": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1596": {
+ "1618": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1597": {
+ "1619": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1598": {
+ "1620": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1599": {
+ "1621": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1600": {
+ "1622": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1602": {
+ "1624": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1603": {
+ "1625": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1604": {
+ "1626": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1605": {
+ "1627": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1606": {
+ "1628": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1607": {
+ "1629": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1608": {
+ "1630": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1609": {
+ "1631": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1610": {
+ "1632": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1612": {
+ "1634": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1613": {
+ "1635": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1614": {
+ "1636": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1615": {
+ "1637": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1616": {
+ "1638": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1617": {
+ "1639": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1618": {
+ "1640": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1619": {
+ "1641": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1620": {
+ "1642": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1621": {
+ "1643": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1622": {
+ "1644": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1624": {
+ "1646": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1625": {
+ "1647": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1626": {
+ "1648": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1627": {
+ "1649": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1628": {
+ "1650": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1629": {
+ "1651": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1630": {
+ "1652": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1631": {
+ "1653": {
"sourceFileName": "",
"qualifiedName": "__type"
}
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json b/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json
index d6646bd66b7f8..0a7495207a00a 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/postgrest.json
@@ -25,7 +25,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"signatures": [
@@ -59,7 +59,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"typeParameters": [
@@ -128,7 +128,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -149,7 +149,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -376,7 +376,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -402,7 +402,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -421,7 +421,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"type": {
@@ -463,7 +463,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -484,7 +484,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -505,7 +505,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -529,7 +529,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -554,7 +554,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
]
}
@@ -611,7 +611,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -632,7 +632,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -861,7 +861,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -887,7 +887,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -908,7 +908,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -951,7 +951,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -972,7 +972,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -995,7 +995,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -1021,7 +1021,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -1045,7 +1045,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"signatures": [
@@ -1096,7 +1096,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"typeParameters": [
@@ -1151,7 +1151,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -1171,7 +1171,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -1196,7 +1196,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -1216,7 +1216,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -1441,7 +1441,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
}
],
"signatures": [
@@ -1483,7 +1483,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
}
],
"typeParameters": [
@@ -1568,7 +1568,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"signatures": [
@@ -1591,7 +1591,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"parameters": [
@@ -1636,7 +1636,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"signatures": [
@@ -1670,7 +1670,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"typeParameters": [
@@ -1777,7 +1777,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"signatures": [
@@ -1792,7 +1792,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"parameters": [
@@ -1924,7 +1924,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"signatures": [
@@ -1939,7 +1939,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"parameters": [
@@ -2047,7 +2047,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -2076,7 +2076,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"type": {
@@ -2169,7 +2169,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 12,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
}
],
"typeParameters": [
@@ -2303,7 +2303,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
}
],
"signatures": [
@@ -2337,7 +2337,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
}
],
"typeParameters": [
@@ -2394,7 +2394,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -2420,7 +2420,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -2674,7 +2674,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 70,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L70"
}
],
"type": {
@@ -2911,7 +2911,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 68,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L68"
}
],
"type": {
@@ -2946,7 +2946,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 69,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L69"
}
],
"type": {
@@ -2970,7 +2970,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 67,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L67"
}
]
}
@@ -3035,7 +3035,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
}
],
"type": {
@@ -3262,7 +3262,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
}
],
"type": {
@@ -3288,7 +3288,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
}
],
"type": {
@@ -3311,7 +3311,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
}
],
"type": {
@@ -3350,19 +3350,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L90"
}
],
"signatures": [
@@ -3377,7 +3377,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
}
],
"typeParameters": [
@@ -3476,7 +3476,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
}
],
"typeParameters": [
@@ -3577,7 +3577,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
}
],
"signatures": [
@@ -3600,7 +3600,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
}
],
"typeParameters": [
@@ -3826,7 +3826,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 162,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L162"
}
],
"type": {
@@ -3876,7 +3876,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 161,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L161"
}
],
"type": {
@@ -3922,7 +3922,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 160,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L160"
}
],
"type": {
@@ -3943,7 +3943,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 159,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L159"
}
]
}
@@ -4050,7 +4050,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
}
],
"signatures": [
@@ -4073,7 +4073,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
}
],
"typeParameters": [
@@ -4213,7 +4213,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 16,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
}
],
"typeParameters": [
@@ -4278,7 +4278,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -4304,7 +4304,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -4332,7 +4332,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 22,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
}
]
}
@@ -4606,7 +4606,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"signatures": [
@@ -4635,7 +4635,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"parameters": [
@@ -4665,7 +4665,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 73,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4684,7 +4684,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4703,7 +4703,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4722,7 +4722,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4742,7 +4742,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
]
}
@@ -4780,7 +4780,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L9"
}
],
"type": {
@@ -4799,7 +4799,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L7"
}
],
"type": {
@@ -4818,7 +4818,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L8"
}
],
"type": {
@@ -4842,7 +4842,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 6,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L6"
}
],
"extendedTypes": [
@@ -4875,7 +4875,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"signatures": [
@@ -4909,7 +4909,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"typeParameters": [
@@ -5038,7 +5038,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -5059,7 +5059,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -5286,7 +5286,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -5312,7 +5312,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -5331,7 +5331,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"type": {
@@ -5373,7 +5373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -5394,7 +5394,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -5415,7 +5415,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -5439,7 +5439,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -5464,7 +5464,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
]
}
@@ -5564,7 +5564,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -5591,7 +5591,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -5826,7 +5826,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -5858,7 +5858,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -5885,7 +5885,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -5934,7 +5934,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -5961,7 +5961,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -5990,7 +5990,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -6022,7 +6022,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -6053,7 +6053,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -6078,7 +6078,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -6181,19 +6181,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 368,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L368"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L368"
}
],
"signatures": [
@@ -6208,7 +6208,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
}
],
"typeParameters": [
@@ -6316,7 +6316,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
}
],
"parameters": [
@@ -6442,19 +6442,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 341,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L341"
}
],
"signatures": [
@@ -6469,7 +6469,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
}
],
"typeParameters": [
@@ -6577,7 +6577,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
}
],
"parameters": [
@@ -6659,7 +6659,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -6692,7 +6692,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -6740,7 +6740,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
}
],
"signatures": [
@@ -6795,7 +6795,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
}
],
"typeParameters": [
@@ -6993,7 +6993,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -7026,7 +7026,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -7082,7 +7082,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -7120,7 +7120,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -7162,7 +7162,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -7209,7 +7209,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -7255,7 +7255,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -7293,7 +7293,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -7314,7 +7314,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -7475,19 +7475,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 602,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L602"
}
],
"signatures": [
@@ -7502,7 +7502,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
}
],
"typeParameters": [
@@ -7670,7 +7670,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
}
],
"parameters": [
@@ -7728,7 +7728,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -7761,7 +7761,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -7870,19 +7870,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L142"
}
],
"signatures": [
@@ -7897,7 +7897,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
}
],
"typeParameters": [
@@ -7970,7 +7970,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
}
],
"parameters": [
@@ -8061,19 +8061,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 147,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L155"
}
],
"signatures": [
@@ -8088,7 +8088,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 147,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
}
],
"typeParameters": [
@@ -8161,7 +8161,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
}
],
"parameters": [
@@ -8252,19 +8252,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 232,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L239"
}
],
"signatures": [
@@ -8279,7 +8279,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
}
],
"typeParameters": [
@@ -8338,7 +8338,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 232,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
}
],
"parameters": [
@@ -8429,19 +8429,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 255,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L255"
}
],
"signatures": [
@@ -8456,7 +8456,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
}
],
"typeParameters": [
@@ -8522,7 +8522,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
}
],
"parameters": [
@@ -8620,19 +8620,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 271,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L271"
}
],
"signatures": [
@@ -8647,7 +8647,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
}
],
"typeParameters": [
@@ -8713,7 +8713,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
}
],
"parameters": [
@@ -8765,7 +8765,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
}
],
"signatures": [
@@ -8804,7 +8804,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
}
],
"typeParameters": [
@@ -9092,19 +9092,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
}
],
"signatures": [
@@ -9119,7 +9119,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
}
],
"typeParameters": [
@@ -9210,7 +9210,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
}
],
"parameters": [
@@ -9310,19 +9310,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 194,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L194"
}
],
"signatures": [
@@ -9337,7 +9337,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
}
],
"typeParameters": [
@@ -9396,7 +9396,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
}
],
"parameters": [
@@ -9487,19 +9487,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 203,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 210,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L210"
}
],
"signatures": [
@@ -9514,7 +9514,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
}
],
"typeParameters": [
@@ -9580,7 +9580,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 203,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
}
],
"parameters": [
@@ -9678,19 +9678,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 226,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L226"
}
],
"signatures": [
@@ -9705,7 +9705,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
}
],
"typeParameters": [
@@ -9771,7 +9771,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
}
],
"parameters": [
@@ -9825,7 +9825,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -9858,7 +9858,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -9933,7 +9933,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -9962,7 +9962,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -9983,7 +9983,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -10065,19 +10065,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 168,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L168"
}
],
"signatures": [
@@ -10092,7 +10092,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
}
],
"typeParameters": [
@@ -10165,7 +10165,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
}
],
"parameters": [
@@ -10256,19 +10256,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L181"
}
],
"signatures": [
@@ -10283,7 +10283,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
}
],
"typeParameters": [
@@ -10356,7 +10356,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
}
],
"parameters": [
@@ -10437,19 +10437,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 525,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L525"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L525"
}
],
"signatures": [
@@ -10464,7 +10464,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
}
],
"typeParameters": [
@@ -10541,7 +10541,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
}
],
"parameters": [
@@ -10592,7 +10592,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -10617,7 +10617,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -10823,7 +10823,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -10864,7 +10864,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -10971,7 +10971,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
}
],
"signatures": [
@@ -11010,7 +11010,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
}
],
"typeParameters": [
@@ -11245,19 +11245,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 551,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551"
}
],
"signatures": [
@@ -11272,7 +11272,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
}
],
"typeParameters": [
@@ -11361,7 +11361,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
}
],
"parameters": [
@@ -11417,7 +11417,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
}
],
"signatures": [
@@ -11456,7 +11456,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
}
],
"parameters": [
@@ -11531,7 +11531,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 576,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
],
"type": {
@@ -11560,7 +11560,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 576,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
],
"type": {
@@ -11581,7 +11581,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 576,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
]
}
@@ -11743,31 +11743,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -11784,7 +11784,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -11845,7 +11845,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -11866,7 +11866,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -11887,7 +11887,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -11907,7 +11907,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -11937,7 +11937,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -11982,7 +11982,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12003,7 +12003,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12024,7 +12024,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12044,7 +12044,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -12100,7 +12100,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -12161,7 +12161,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12182,7 +12182,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12203,7 +12203,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12223,7 +12223,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -12279,7 +12279,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -12324,7 +12324,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -12345,7 +12345,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -12366,7 +12366,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -12386,7 +12386,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -12467,19 +12467,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 467,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L467"
}
],
"signatures": [
@@ -12494,7 +12494,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
}
],
"typeParameters": [
@@ -12583,7 +12583,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
}
],
"parameters": [
@@ -12646,7 +12646,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"signatures": [
@@ -12699,7 +12699,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"typeParameters": [
@@ -12754,7 +12754,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -12774,7 +12774,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -12799,7 +12799,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -12819,7 +12819,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -13052,7 +13052,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -13117,7 +13117,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -13211,7 +13211,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -13240,7 +13240,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -13261,7 +13261,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -13343,19 +13343,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 450,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450"
}
],
"signatures": [
@@ -13370,7 +13370,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
}
],
"typeParameters": [
@@ -13429,7 +13429,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
}
],
"parameters": [
@@ -13520,19 +13520,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 391,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L391"
}
],
"signatures": [
@@ -13547,7 +13547,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
}
],
"typeParameters": [
@@ -13606,7 +13606,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
}
],
"parameters": [
@@ -13705,19 +13705,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406"
}
],
"signatures": [
@@ -13732,7 +13732,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
}
],
"typeParameters": [
@@ -13791,7 +13791,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
}
],
"parameters": [
@@ -13882,19 +13882,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 420,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L420"
}
],
"signatures": [
@@ -13909,7 +13909,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
}
],
"typeParameters": [
@@ -13968,7 +13968,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
}
],
"parameters": [
@@ -14067,19 +14067,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 425,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 435,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435"
}
],
"signatures": [
@@ -14094,7 +14094,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 425,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
}
],
"typeParameters": [
@@ -14153,7 +14153,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
}
],
"parameters": [
@@ -14200,7 +14200,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -14244,7 +14244,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -14373,7 +14373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -14406,7 +14406,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -14439,7 +14439,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -14504,7 +14504,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -14755,7 +14755,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"signatures": [
@@ -14780,7 +14780,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"parameters": [
@@ -14837,7 +14837,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -14878,7 +14878,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -15060,19 +15060,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 498,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L498"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L498"
}
],
"signatures": [
@@ -15087,7 +15087,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
}
],
"typeParameters": [
@@ -15159,7 +15159,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 481,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
],
"type": {
@@ -15180,7 +15180,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 481,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
],
"type": {
@@ -15213,7 +15213,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 481,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
]
}
@@ -15236,7 +15236,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
}
],
"parameters": [
@@ -15292,7 +15292,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 486,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
],
"type": {
@@ -15313,7 +15313,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 486,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
],
"type": {
@@ -15346,7 +15346,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 486,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
]
}
@@ -15373,7 +15373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"signatures": [
@@ -15409,7 +15409,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"typeParameters": [
@@ -15485,7 +15485,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"signatures": [
@@ -15500,7 +15500,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"parameters": [
@@ -15601,7 +15601,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"signatures": [
@@ -15616,7 +15616,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"parameters": [
@@ -15726,7 +15726,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -15757,7 +15757,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"type": {
@@ -15896,7 +15896,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 76,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L76"
}
],
"typeParameters": [
@@ -16081,7 +16081,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
}
],
"signatures": [
@@ -16115,7 +16115,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
}
],
"typeParameters": [
@@ -16225,7 +16225,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -16251,7 +16251,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -16318,7 +16318,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 46,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
}
],
"type": {
@@ -16547,7 +16547,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44"
}
],
"type": {
@@ -16574,7 +16574,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 45,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
}
],
"type": {
@@ -16594,7 +16594,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 43,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43"
}
]
}
@@ -16666,7 +16666,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
}
],
"type": {
@@ -16893,7 +16893,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
}
],
"type": {
@@ -16919,7 +16919,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
}
],
"type": {
@@ -16940,7 +16940,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
}
],
"type": {
@@ -16964,7 +16964,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
}
],
"type": {
@@ -16988,7 +16988,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
}
],
"signatures": [
@@ -17019,7 +17019,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
}
],
"parameters": [
@@ -17099,7 +17099,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 432,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432"
}
],
"type": {
@@ -17132,7 +17132,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 431,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L431"
}
]
}
@@ -17316,19 +17316,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189"
}
],
"signatures": [
@@ -17343,7 +17343,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
}
],
"typeParameters": [
@@ -17419,7 +17419,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 137,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137"
}
],
"type": {
@@ -17452,7 +17452,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 136,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136"
}
]
}
@@ -17535,7 +17535,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
}
],
"typeParameters": [
@@ -17614,7 +17614,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 151,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151"
}
],
"type": {
@@ -17648,7 +17648,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 152,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152"
}
],
"type": {
@@ -17668,7 +17668,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 150,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150"
}
]
}
@@ -17753,7 +17753,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
}
],
"signatures": [
@@ -17776,7 +17776,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
}
],
"typeParameters": [
@@ -17972,7 +17972,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90"
}
],
"type": {
@@ -18030,7 +18030,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 89,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89"
}
],
"type": {
@@ -18050,7 +18050,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88"
}
]
}
@@ -18141,7 +18141,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 379,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
}
],
"signatures": [
@@ -18172,7 +18172,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 379,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
}
],
"typeParameters": [
@@ -18302,7 +18302,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 384,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L384"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L384"
}
],
"type": {
@@ -18335,7 +18335,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 383,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L383"
}
]
}
@@ -18611,19 +18611,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 306,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L306"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L306"
}
],
"signatures": [
@@ -18638,7 +18638,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
}
],
"typeParameters": [
@@ -18714,7 +18714,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 240,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240"
}
],
"type": {
@@ -18748,7 +18748,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 239,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239"
}
],
"type": {
@@ -18769,7 +18769,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 238,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238"
}
],
"type": {
@@ -18789,7 +18789,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 237,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237"
}
]
}
@@ -18872,7 +18872,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
}
],
"typeParameters": [
@@ -18951,7 +18951,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 256,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256"
}
],
"type": {
@@ -18985,7 +18985,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 257,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257"
}
],
"type": {
@@ -19006,7 +19006,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 255,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255"
}
],
"type": {
@@ -19027,7 +19027,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 254,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254"
}
],
"type": {
@@ -19047,7 +19047,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 253,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253"
}
]
}
@@ -19141,7 +19141,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
}
],
"typeParameters": [
@@ -19251,7 +19251,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -19271,7 +19271,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -19312,7 +19312,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"signatures": [
@@ -19346,7 +19346,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"typeParameters": [
@@ -19475,7 +19475,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -19496,7 +19496,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -19723,7 +19723,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -19749,7 +19749,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -19768,7 +19768,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"type": {
@@ -19810,7 +19810,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -19831,7 +19831,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -19852,7 +19852,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -19876,7 +19876,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -19901,7 +19901,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
]
}
@@ -20001,7 +20001,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -20028,7 +20028,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -20263,7 +20263,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -20295,7 +20295,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -20322,7 +20322,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -20371,7 +20371,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -20398,7 +20398,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -20427,7 +20427,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -20459,7 +20459,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -20488,7 +20488,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -20511,7 +20511,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -20558,7 +20558,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -20589,7 +20589,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -20627,7 +20627,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -20658,7 +20658,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -20714,7 +20714,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -20752,7 +20752,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -20794,7 +20794,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -20841,7 +20841,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -20887,7 +20887,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -20925,7 +20925,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -20946,7 +20946,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -21041,7 +21041,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -21072,7 +21072,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -21125,7 +21125,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -21156,7 +21156,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -21231,7 +21231,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -21260,7 +21260,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -21281,7 +21281,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -21307,7 +21307,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -21330,7 +21330,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -21524,7 +21524,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -21563,7 +21563,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -21794,31 +21794,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -21833,7 +21833,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -21894,7 +21894,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -21915,7 +21915,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -21936,7 +21936,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -21956,7 +21956,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -21979,7 +21979,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -22024,7 +22024,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -22045,7 +22045,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -22066,7 +22066,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -22086,7 +22086,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -22135,7 +22135,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -22196,7 +22196,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -22217,7 +22217,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -22238,7 +22238,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -22258,7 +22258,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -22307,7 +22307,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -22352,7 +22352,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -22373,7 +22373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -22394,7 +22394,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -22414,7 +22414,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -22441,7 +22441,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"signatures": [
@@ -22494,7 +22494,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"typeParameters": [
@@ -22549,7 +22549,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -22569,7 +22569,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -22594,7 +22594,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -22614,7 +22614,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -22845,7 +22845,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -22908,7 +22908,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -23002,7 +23002,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -23031,7 +23031,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -23052,7 +23052,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -23078,7 +23078,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -23120,7 +23120,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -23247,7 +23247,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -23278,7 +23278,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -23299,7 +23299,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -23362,7 +23362,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -23603,7 +23603,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"signatures": [
@@ -23628,7 +23628,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"parameters": [
@@ -23683,7 +23683,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -23722,7 +23722,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -23812,7 +23812,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"signatures": [
@@ -23848,7 +23848,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"typeParameters": [
@@ -23924,7 +23924,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"signatures": [
@@ -23939,7 +23939,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"parameters": [
@@ -24040,7 +24040,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"signatures": [
@@ -24055,7 +24055,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"parameters": [
@@ -24165,7 +24165,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -24196,7 +24196,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"type": {
@@ -24333,7 +24333,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
}
],
"typeParameters": [
@@ -24485,7 +24485,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L23"
}
],
"type": {
@@ -24504,7 +24504,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L22"
}
],
"type": {
@@ -24523,7 +24523,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L21"
}
],
"type": {
@@ -24547,7 +24547,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -24573,7 +24573,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -24598,7 +24598,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 20,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L20"
}
],
"extendedTypes": [
@@ -24631,7 +24631,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L18"
}
],
"type": {
@@ -24659,7 +24659,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L17"
}
],
"type": {
@@ -24682,7 +24682,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L16"
}
],
"type": {
@@ -24703,7 +24703,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -24729,7 +24729,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -24754,7 +24754,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 15,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L15"
}
],
"typeParameters": [
@@ -24789,7 +24789,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
],
"type": {
@@ -24814,7 +24814,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/common/common.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L55"
}
],
"type": {
@@ -24834,7 +24834,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
]
}
@@ -24851,7 +24851,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L30"
}
],
"typeParameters": [
@@ -24899,7 +24899,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L31"
}
],
"typeParameters": [
@@ -24941,7 +24941,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L29"
}
],
"typeParameters": [
@@ -24999,7 +24999,7 @@
"fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts",
"line": 38,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
}
],
"typeParameters": [
@@ -25584,7 +25584,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17"
}
],
"type": {
@@ -25607,7 +25607,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L22"
}
],
"type": {
@@ -25631,7 +25631,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L18"
}
],
"type": {
@@ -25655,7 +25655,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L23"
}
],
"type": {
@@ -25679,7 +25679,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L20"
}
],
"type": {
@@ -25703,7 +25703,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L19"
}
],
"type": {
@@ -25727,7 +25727,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L21"
}
],
"type": {
@@ -25752,7 +25752,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17"
}
]
}
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json
index d6646bd66b7f8..0a7495207a00a 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/postgrest_dereferenced.json
@@ -25,7 +25,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"signatures": [
@@ -59,7 +59,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"typeParameters": [
@@ -128,7 +128,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -149,7 +149,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -376,7 +376,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -402,7 +402,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -421,7 +421,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"type": {
@@ -463,7 +463,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -484,7 +484,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -505,7 +505,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -529,7 +529,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -554,7 +554,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
]
}
@@ -611,7 +611,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -632,7 +632,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -861,7 +861,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -887,7 +887,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -908,7 +908,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -951,7 +951,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -972,7 +972,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -995,7 +995,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -1021,7 +1021,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -1045,7 +1045,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"signatures": [
@@ -1096,7 +1096,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"typeParameters": [
@@ -1151,7 +1151,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -1171,7 +1171,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -1196,7 +1196,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -1216,7 +1216,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -1441,7 +1441,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
}
],
"signatures": [
@@ -1483,7 +1483,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 274,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L274"
}
],
"typeParameters": [
@@ -1568,7 +1568,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"signatures": [
@@ -1591,7 +1591,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"parameters": [
@@ -1636,7 +1636,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"signatures": [
@@ -1670,7 +1670,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"typeParameters": [
@@ -1777,7 +1777,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"signatures": [
@@ -1792,7 +1792,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"parameters": [
@@ -1924,7 +1924,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"signatures": [
@@ -1939,7 +1939,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"parameters": [
@@ -2047,7 +2047,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -2076,7 +2076,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"type": {
@@ -2169,7 +2169,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 12,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L12"
}
],
"typeParameters": [
@@ -2303,7 +2303,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
}
],
"signatures": [
@@ -2337,7 +2337,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
}
],
"typeParameters": [
@@ -2394,7 +2394,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -2420,7 +2420,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -2674,7 +2674,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 70,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L70"
}
],
"type": {
@@ -2911,7 +2911,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 68,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L68"
}
],
"type": {
@@ -2946,7 +2946,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 69,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L69"
}
],
"type": {
@@ -2970,7 +2970,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 67,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L67"
}
]
}
@@ -3035,7 +3035,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
}
],
"type": {
@@ -3262,7 +3262,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
}
],
"type": {
@@ -3288,7 +3288,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
}
],
"type": {
@@ -3311,7 +3311,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
}
],
"type": {
@@ -3350,19 +3350,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L90"
}
],
"signatures": [
@@ -3377,7 +3377,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L78"
}
],
"typeParameters": [
@@ -3476,7 +3476,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L82"
}
],
"typeParameters": [
@@ -3577,7 +3577,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
}
],
"signatures": [
@@ -3600,7 +3600,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L144"
}
],
"typeParameters": [
@@ -3826,7 +3826,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 162,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L162"
}
],
"type": {
@@ -3876,7 +3876,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 161,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L161"
}
],
"type": {
@@ -3922,7 +3922,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 160,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L160"
}
],
"type": {
@@ -3943,7 +3943,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 159,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L159"
}
]
}
@@ -4050,7 +4050,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
}
],
"signatures": [
@@ -4073,7 +4073,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L106"
}
],
"typeParameters": [
@@ -4213,7 +4213,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 16,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
}
],
"typeParameters": [
@@ -4278,7 +4278,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -4304,7 +4304,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -4332,7 +4332,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 22,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
}
]
}
@@ -4606,7 +4606,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"signatures": [
@@ -4635,7 +4635,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"parameters": [
@@ -4665,7 +4665,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 73,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4684,7 +4684,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4703,7 +4703,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4722,7 +4722,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
],
"type": {
@@ -4742,7 +4742,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 24,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L24"
}
]
}
@@ -4780,7 +4780,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L9"
}
],
"type": {
@@ -4799,7 +4799,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L7"
}
],
"type": {
@@ -4818,7 +4818,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L8"
}
],
"type": {
@@ -4842,7 +4842,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 6,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestError.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestError.ts#L6"
}
],
"extendedTypes": [
@@ -4875,7 +4875,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"signatures": [
@@ -4909,7 +4909,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"typeParameters": [
@@ -5038,7 +5038,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -5059,7 +5059,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -5286,7 +5286,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -5312,7 +5312,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -5331,7 +5331,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"type": {
@@ -5373,7 +5373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -5394,7 +5394,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -5415,7 +5415,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -5439,7 +5439,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -5464,7 +5464,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
]
}
@@ -5564,7 +5564,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -5591,7 +5591,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -5826,7 +5826,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -5858,7 +5858,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -5885,7 +5885,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -5934,7 +5934,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -5961,7 +5961,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -5990,7 +5990,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -6022,7 +6022,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -6053,7 +6053,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -6078,7 +6078,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -6181,19 +6181,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 368,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L368"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L368"
}
],
"signatures": [
@@ -6208,7 +6208,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
}
],
"typeParameters": [
@@ -6316,7 +6316,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
}
],
"parameters": [
@@ -6442,19 +6442,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 341,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L341"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L341"
}
],
"signatures": [
@@ -6469,7 +6469,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
}
],
"typeParameters": [
@@ -6577,7 +6577,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
}
],
"parameters": [
@@ -6659,7 +6659,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -6692,7 +6692,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -6740,7 +6740,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
}
],
"signatures": [
@@ -6795,7 +6795,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
}
],
"typeParameters": [
@@ -6993,7 +6993,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -7026,7 +7026,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -7082,7 +7082,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -7120,7 +7120,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -7162,7 +7162,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -7209,7 +7209,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -7255,7 +7255,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -7293,7 +7293,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -7314,7 +7314,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -7475,19 +7475,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 602,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L602"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L602"
}
],
"signatures": [
@@ -7502,7 +7502,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
}
],
"typeParameters": [
@@ -7670,7 +7670,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
}
],
"parameters": [
@@ -7728,7 +7728,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -7761,7 +7761,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -7870,19 +7870,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L142"
}
],
"signatures": [
@@ -7897,7 +7897,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
}
],
"typeParameters": [
@@ -7970,7 +7970,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
}
],
"parameters": [
@@ -8061,19 +8061,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 147,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L155"
}
],
"signatures": [
@@ -8088,7 +8088,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 147,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
}
],
"typeParameters": [
@@ -8161,7 +8161,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
}
],
"parameters": [
@@ -8252,19 +8252,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 232,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L239"
}
],
"signatures": [
@@ -8279,7 +8279,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
}
],
"typeParameters": [
@@ -8338,7 +8338,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 232,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
}
],
"parameters": [
@@ -8429,19 +8429,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 255,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L255"
}
],
"signatures": [
@@ -8456,7 +8456,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
}
],
"typeParameters": [
@@ -8522,7 +8522,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
}
],
"parameters": [
@@ -8620,19 +8620,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 271,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L271"
}
],
"signatures": [
@@ -8647,7 +8647,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
}
],
"typeParameters": [
@@ -8713,7 +8713,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
}
],
"parameters": [
@@ -8765,7 +8765,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
}
],
"signatures": [
@@ -8804,7 +8804,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
}
],
"typeParameters": [
@@ -9092,19 +9092,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
}
],
"signatures": [
@@ -9119,7 +9119,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
}
],
"typeParameters": [
@@ -9210,7 +9210,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
}
],
"parameters": [
@@ -9310,19 +9310,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 194,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L194"
}
],
"signatures": [
@@ -9337,7 +9337,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
}
],
"typeParameters": [
@@ -9396,7 +9396,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
}
],
"parameters": [
@@ -9487,19 +9487,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 203,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 210,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L210"
}
],
"signatures": [
@@ -9514,7 +9514,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
}
],
"typeParameters": [
@@ -9580,7 +9580,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 203,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
}
],
"parameters": [
@@ -9678,19 +9678,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 226,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L226"
}
],
"signatures": [
@@ -9705,7 +9705,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
}
],
"typeParameters": [
@@ -9771,7 +9771,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
}
],
"parameters": [
@@ -9825,7 +9825,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -9858,7 +9858,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -9933,7 +9933,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -9962,7 +9962,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -9983,7 +9983,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -10065,19 +10065,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 168,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L168"
}
],
"signatures": [
@@ -10092,7 +10092,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
}
],
"typeParameters": [
@@ -10165,7 +10165,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
}
],
"parameters": [
@@ -10256,19 +10256,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L181"
}
],
"signatures": [
@@ -10283,7 +10283,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
}
],
"typeParameters": [
@@ -10356,7 +10356,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
}
],
"parameters": [
@@ -10437,19 +10437,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 525,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L525"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L525"
}
],
"signatures": [
@@ -10464,7 +10464,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
}
],
"typeParameters": [
@@ -10541,7 +10541,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
}
],
"parameters": [
@@ -10592,7 +10592,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -10617,7 +10617,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -10823,7 +10823,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -10864,7 +10864,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -10971,7 +10971,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
}
],
"signatures": [
@@ -11010,7 +11010,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
}
],
"typeParameters": [
@@ -11245,19 +11245,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 551,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551"
}
],
"signatures": [
@@ -11272,7 +11272,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
}
],
"typeParameters": [
@@ -11361,7 +11361,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
}
],
"parameters": [
@@ -11417,7 +11417,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
}
],
"signatures": [
@@ -11456,7 +11456,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
}
],
"parameters": [
@@ -11531,7 +11531,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 576,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
],
"type": {
@@ -11560,7 +11560,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 576,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
],
"type": {
@@ -11581,7 +11581,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 576,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
]
}
@@ -11743,31 +11743,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -11784,7 +11784,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -11845,7 +11845,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -11866,7 +11866,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -11887,7 +11887,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -11907,7 +11907,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -11937,7 +11937,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -11982,7 +11982,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12003,7 +12003,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12024,7 +12024,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -12044,7 +12044,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -12100,7 +12100,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -12161,7 +12161,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12182,7 +12182,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12203,7 +12203,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -12223,7 +12223,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -12279,7 +12279,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -12324,7 +12324,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -12345,7 +12345,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -12366,7 +12366,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -12386,7 +12386,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -12467,19 +12467,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 467,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L467"
}
],
"signatures": [
@@ -12494,7 +12494,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
}
],
"typeParameters": [
@@ -12583,7 +12583,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
}
],
"parameters": [
@@ -12646,7 +12646,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"signatures": [
@@ -12699,7 +12699,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"typeParameters": [
@@ -12754,7 +12754,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -12774,7 +12774,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -12799,7 +12799,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -12819,7 +12819,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -13052,7 +13052,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -13117,7 +13117,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -13211,7 +13211,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -13240,7 +13240,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -13261,7 +13261,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -13343,19 +13343,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 450,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450"
}
],
"signatures": [
@@ -13370,7 +13370,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
}
],
"typeParameters": [
@@ -13429,7 +13429,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
}
],
"parameters": [
@@ -13520,19 +13520,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 391,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L391"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L391"
}
],
"signatures": [
@@ -13547,7 +13547,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
}
],
"typeParameters": [
@@ -13606,7 +13606,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
}
],
"parameters": [
@@ -13705,19 +13705,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406"
}
],
"signatures": [
@@ -13732,7 +13732,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
}
],
"typeParameters": [
@@ -13791,7 +13791,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
}
],
"parameters": [
@@ -13882,19 +13882,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 420,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L420"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L420"
}
],
"signatures": [
@@ -13909,7 +13909,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
}
],
"typeParameters": [
@@ -13968,7 +13968,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
}
],
"parameters": [
@@ -14067,19 +14067,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 425,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 435,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435"
}
],
"signatures": [
@@ -14094,7 +14094,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 425,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
}
],
"typeParameters": [
@@ -14153,7 +14153,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
}
],
"parameters": [
@@ -14200,7 +14200,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -14244,7 +14244,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -14373,7 +14373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -14406,7 +14406,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -14439,7 +14439,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -14504,7 +14504,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -14755,7 +14755,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"signatures": [
@@ -14780,7 +14780,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"parameters": [
@@ -14837,7 +14837,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -14878,7 +14878,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -15060,19 +15060,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 498,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L498"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L498"
}
],
"signatures": [
@@ -15087,7 +15087,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
}
],
"typeParameters": [
@@ -15159,7 +15159,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 481,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
],
"type": {
@@ -15180,7 +15180,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 481,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
],
"type": {
@@ -15213,7 +15213,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 481,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
]
}
@@ -15236,7 +15236,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
}
],
"parameters": [
@@ -15292,7 +15292,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 486,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
],
"type": {
@@ -15313,7 +15313,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 486,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
],
"type": {
@@ -15346,7 +15346,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 486,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
]
}
@@ -15373,7 +15373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"signatures": [
@@ -15409,7 +15409,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"typeParameters": [
@@ -15485,7 +15485,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"signatures": [
@@ -15500,7 +15500,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"parameters": [
@@ -15601,7 +15601,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"signatures": [
@@ -15616,7 +15616,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"parameters": [
@@ -15726,7 +15726,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -15757,7 +15757,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"type": {
@@ -15896,7 +15896,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
"line": 76,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L76"
}
],
"typeParameters": [
@@ -16081,7 +16081,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
}
],
"signatures": [
@@ -16115,7 +16115,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L37"
}
],
"typeParameters": [
@@ -16225,7 +16225,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -16251,7 +16251,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -16318,7 +16318,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 46,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L46"
}
],
"type": {
@@ -16547,7 +16547,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L44"
}
],
"type": {
@@ -16574,7 +16574,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 45,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L45"
}
],
"type": {
@@ -16594,7 +16594,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 43,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L43"
}
]
}
@@ -16666,7 +16666,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
}
],
"type": {
@@ -16893,7 +16893,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
}
],
"type": {
@@ -16919,7 +16919,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
}
],
"type": {
@@ -16940,7 +16940,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
}
],
"type": {
@@ -16964,7 +16964,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
}
],
"type": {
@@ -16988,7 +16988,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
}
],
"signatures": [
@@ -17019,7 +17019,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L429"
}
],
"parameters": [
@@ -17099,7 +17099,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 432,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L432"
}
],
"type": {
@@ -17132,7 +17132,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 431,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L431"
}
]
}
@@ -17316,19 +17316,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 189,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L189"
}
],
"signatures": [
@@ -17343,7 +17343,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L134"
}
],
"typeParameters": [
@@ -17419,7 +17419,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 137,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137"
}
],
"type": {
@@ -17452,7 +17452,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 136,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L136"
}
]
}
@@ -17535,7 +17535,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L148"
}
],
"typeParameters": [
@@ -17614,7 +17614,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 151,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L151"
}
],
"type": {
@@ -17648,7 +17648,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 152,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L152"
}
],
"type": {
@@ -17668,7 +17668,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 150,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L150"
}
]
}
@@ -17753,7 +17753,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
}
],
"signatures": [
@@ -17776,7 +17776,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
}
],
"typeParameters": [
@@ -17972,7 +17972,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 90,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L90"
}
],
"type": {
@@ -18030,7 +18030,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 89,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L89"
}
],
"type": {
@@ -18050,7 +18050,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L88"
}
]
}
@@ -18141,7 +18141,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 379,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
}
],
"signatures": [
@@ -18172,7 +18172,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 379,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L379"
}
],
"typeParameters": [
@@ -18302,7 +18302,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 384,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L384"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L384"
}
],
"type": {
@@ -18335,7 +18335,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 383,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L383"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L383"
}
]
}
@@ -18611,19 +18611,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 306,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L306"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L306"
}
],
"signatures": [
@@ -18638,7 +18638,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 235,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L235"
}
],
"typeParameters": [
@@ -18714,7 +18714,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 240,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240"
}
],
"type": {
@@ -18748,7 +18748,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 239,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L239"
}
],
"type": {
@@ -18769,7 +18769,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 238,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238"
}
],
"type": {
@@ -18789,7 +18789,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 237,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L237"
}
]
}
@@ -18872,7 +18872,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L251"
}
],
"typeParameters": [
@@ -18951,7 +18951,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 256,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L256"
}
],
"type": {
@@ -18985,7 +18985,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 257,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L257"
}
],
"type": {
@@ -19006,7 +19006,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 255,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L255"
}
],
"type": {
@@ -19027,7 +19027,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 254,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L254"
}
],
"type": {
@@ -19047,7 +19047,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 253,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L253"
}
]
}
@@ -19141,7 +19141,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
}
],
"typeParameters": [
@@ -19251,7 +19251,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -19271,7 +19271,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -19312,7 +19312,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"signatures": [
@@ -19346,7 +19346,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
],
"typeParameters": [
@@ -19475,7 +19475,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 49,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L49"
}
],
"type": {
@@ -19496,7 +19496,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L52"
}
],
"type": {
@@ -19723,7 +19723,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 47,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L47"
}
],
"type": {
@@ -19749,7 +19749,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L53"
}
],
"type": {
@@ -19768,7 +19768,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 45,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L45"
}
],
"type": {
@@ -19810,7 +19810,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L48"
}
],
"type": {
@@ -19831,7 +19831,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 50,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L50"
}
],
"type": {
@@ -19852,7 +19852,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 51,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L51"
}
],
"type": {
@@ -19876,7 +19876,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 46,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L46"
}
],
"type": {
@@ -19901,7 +19901,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 44,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L44"
}
]
}
@@ -20001,7 +20001,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -20028,7 +20028,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -20263,7 +20263,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 23,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L23"
}
],
"type": {
@@ -20295,7 +20295,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -20322,7 +20322,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L21"
}
],
"type": {
@@ -20371,7 +20371,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -20398,7 +20398,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -20427,7 +20427,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -20459,7 +20459,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L22"
}
],
"type": {
@@ -20488,7 +20488,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -20511,7 +20511,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -20558,7 +20558,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -20589,7 +20589,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -20627,7 +20627,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -20658,7 +20658,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -20714,7 +20714,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -20752,7 +20752,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -20794,7 +20794,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -20841,7 +20841,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -20887,7 +20887,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -20925,7 +20925,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -20946,7 +20946,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -21041,7 +21041,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -21072,7 +21072,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -21125,7 +21125,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -21156,7 +21156,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -21231,7 +21231,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -21260,7 +21260,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -21281,7 +21281,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -21307,7 +21307,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -21330,7 +21330,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -21524,7 +21524,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -21563,7 +21563,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -21794,31 +21794,31 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -21833,7 +21833,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -21894,7 +21894,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -21915,7 +21915,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -21936,7 +21936,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -21956,7 +21956,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -21979,7 +21979,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -22024,7 +22024,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -22045,7 +22045,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -22066,7 +22066,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -22086,7 +22086,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -22135,7 +22135,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -22196,7 +22196,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -22217,7 +22217,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -22238,7 +22238,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -22258,7 +22258,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -22307,7 +22307,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -22352,7 +22352,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -22373,7 +22373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -22394,7 +22394,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -22414,7 +22414,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -22441,7 +22441,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"signatures": [
@@ -22494,7 +22494,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 309,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L309"
}
],
"typeParameters": [
@@ -22549,7 +22549,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -22569,7 +22569,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -22594,7 +22594,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
],
"type": {
@@ -22614,7 +22614,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 311,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L311"
}
]
}
@@ -22845,7 +22845,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -22908,7 +22908,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -23002,7 +23002,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -23031,7 +23031,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -23052,7 +23052,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -23078,7 +23078,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -23120,7 +23120,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -23247,7 +23247,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -23278,7 +23278,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -23299,7 +23299,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -23362,7 +23362,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -23603,7 +23603,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"signatures": [
@@ -23628,7 +23628,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L85"
}
],
"parameters": [
@@ -23683,7 +23683,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -23722,7 +23722,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -23812,7 +23812,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"signatures": [
@@ -23848,7 +23848,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L91"
}
],
"typeParameters": [
@@ -23924,7 +23924,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"signatures": [
@@ -23939,7 +23939,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 98,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L98"
}
],
"parameters": [
@@ -24040,7 +24040,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"signatures": [
@@ -24055,7 +24055,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 105,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L105"
}
],
"parameters": [
@@ -24165,7 +24165,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -24196,7 +24196,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"type": {
@@ -24333,7 +24333,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
}
],
"typeParameters": [
@@ -24485,7 +24485,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L23"
}
],
"type": {
@@ -24504,7 +24504,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L22"
}
],
"type": {
@@ -24523,7 +24523,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L21"
}
],
"type": {
@@ -24547,7 +24547,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -24573,7 +24573,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -24598,7 +24598,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 20,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L20"
}
],
"extendedTypes": [
@@ -24631,7 +24631,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L18"
}
],
"type": {
@@ -24659,7 +24659,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L17"
}
],
"type": {
@@ -24682,7 +24682,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L16"
}
],
"type": {
@@ -24703,7 +24703,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -24729,7 +24729,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -24754,7 +24754,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 15,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L15"
}
],
"typeParameters": [
@@ -24789,7 +24789,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
],
"type": {
@@ -24814,7 +24814,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/common/common.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L55"
}
],
"type": {
@@ -24834,7 +24834,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
]
}
@@ -24851,7 +24851,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L30"
}
],
"typeParameters": [
@@ -24899,7 +24899,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L31"
}
],
"typeParameters": [
@@ -24941,7 +24941,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/types/types.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/types/types.ts#L29"
}
],
"typeParameters": [
@@ -24999,7 +24999,7 @@
"fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts",
"line": 38,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
}
],
"typeParameters": [
@@ -25584,7 +25584,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17"
}
],
"type": {
@@ -25607,7 +25607,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L22"
}
],
"type": {
@@ -25631,7 +25631,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L18"
}
],
"type": {
@@ -25655,7 +25655,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L23"
}
],
"type": {
@@ -25679,7 +25679,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L20"
}
],
"type": {
@@ -25703,7 +25703,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L19"
}
],
"type": {
@@ -25727,7 +25727,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L21"
}
],
"type": {
@@ -25752,7 +25752,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/postgrest-js/src/index.ts#L17"
}
]
}
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/realtime.json b/apps/docs/spec/enrichments/tsdoc_v2/realtime.json
index 16a9b1fc100e0..f3aa7fbdfe9d2 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/realtime.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/realtime.json
@@ -23,7 +23,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
}
],
"type": {
@@ -42,7 +42,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
}
],
"type": {
@@ -61,7 +61,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
}
],
"type": {
@@ -80,7 +80,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
}
],
"type": {
@@ -100,7 +100,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 134,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
}
]
},
@@ -122,7 +122,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
}
],
"type": {
@@ -141,7 +141,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
}
],
"type": {
@@ -160,7 +160,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 129,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
}
],
"type": {
@@ -179,7 +179,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
}
],
"type": {
@@ -199,7 +199,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 127,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
}
]
},
@@ -221,7 +221,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L33"
}
],
"type": {
@@ -240,7 +240,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L34"
}
],
"type": {
@@ -259,7 +259,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L32"
}
],
"type": {
@@ -279,7 +279,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L31"
}
]
},
@@ -301,7 +301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
}
],
"type": {
@@ -320,7 +320,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
}
],
"type": {
@@ -339,7 +339,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
}
],
"type": {
@@ -358,7 +358,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
}
],
"type": {
@@ -378,7 +378,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 141,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
}
]
},
@@ -408,7 +408,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"signatures": [
@@ -442,7 +442,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"parameters": [
@@ -515,7 +515,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"type": {
@@ -531,7 +531,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"indexSignatures": [
@@ -546,7 +546,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
],
"parameters": [
@@ -584,7 +584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 169,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
}
],
"type": {
@@ -608,7 +608,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"type": {
@@ -624,7 +624,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"indexSignatures": [
@@ -639,7 +639,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"parameters": [
@@ -677,7 +677,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
}
],
"type": {
@@ -696,7 +696,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 167,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
}
],
"type": {
@@ -716,7 +716,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
]
}
@@ -739,7 +739,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
}
],
"type": {
@@ -758,7 +758,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
}
],
"type": {
@@ -778,7 +778,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
}
],
"type": {
@@ -805,7 +805,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 203,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
}
],
"type": {
@@ -827,7 +827,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
}
],
"type": {
@@ -849,7 +849,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
}
],
"type": {
@@ -868,7 +868,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
}
],
"type": {
@@ -897,7 +897,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
}
],
"type": {
@@ -924,7 +924,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 204,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
}
],
"type": {
@@ -946,7 +946,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
}
],
"type": {
@@ -971,7 +971,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
}
],
"type": {
@@ -990,7 +990,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
}
],
"type": {
@@ -1019,7 +1019,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 202,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
}
],
"type": {
@@ -1038,7 +1038,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 549,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
}
],
"signatures": [
@@ -1072,7 +1072,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 549,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
}
],
"parameters": [
@@ -1150,7 +1150,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 552,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
}
],
"type": {
@@ -1170,7 +1170,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 552,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
}
]
}
@@ -1208,7 +1208,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -1228,7 +1228,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
]
}
@@ -1253,7 +1253,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -1272,7 +1272,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -1291,7 +1291,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -1311,7 +1311,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
]
}
@@ -1336,91 +1336,91 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 416,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 524,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
}
],
"signatures": [
@@ -1443,7 +1443,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 416,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
}
],
"parameters": [
@@ -1484,7 +1484,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 418,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
}
],
"type": {
@@ -1504,7 +1504,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 418,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
}
]
}
@@ -1529,7 +1529,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
}
],
"signatures": [
@@ -1544,7 +1544,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
}
],
"type": {
@@ -1584,7 +1584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"typeParameters": [
@@ -1607,7 +1607,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"indexSignatures": [
@@ -1622,7 +1622,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"parameters": [
@@ -1686,7 +1686,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 423,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
}
],
"type": {
@@ -1706,7 +1706,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 423,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
}
]
}
@@ -1731,7 +1731,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"signatures": [
@@ -1746,7 +1746,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"parameters": [
@@ -1810,7 +1810,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"typeParameters": [
@@ -1833,7 +1833,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"indexSignatures": [
@@ -1848,7 +1848,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"parameters": [
@@ -1912,7 +1912,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 428,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
}
],
"type": {
@@ -1932,7 +1932,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 428,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
}
]
}
@@ -1957,7 +1957,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"signatures": [
@@ -1972,7 +1972,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"parameters": [
@@ -2036,7 +2036,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"typeParameters": [
@@ -2059,7 +2059,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"indexSignatures": [
@@ -2074,7 +2074,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"parameters": [
@@ -2150,7 +2150,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"signatures": [
@@ -2165,7 +2165,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"parameters": [
@@ -2229,7 +2229,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
}
],
"typeParameters": [
@@ -2252,7 +2252,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
}
],
"indexSignatures": [
@@ -2267,7 +2267,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
}
],
"parameters": [
@@ -2343,7 +2343,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"signatures": [
@@ -2358,7 +2358,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"parameters": [
@@ -2422,7 +2422,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"typeParameters": [
@@ -2445,7 +2445,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"indexSignatures": [
@@ -2460,7 +2460,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"parameters": [
@@ -2536,7 +2536,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"signatures": [
@@ -2551,7 +2551,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"parameters": [
@@ -2615,7 +2615,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
}
],
"typeParameters": [
@@ -2638,7 +2638,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
}
],
"indexSignatures": [
@@ -2653,7 +2653,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
}
],
"parameters": [
@@ -2729,7 +2729,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"signatures": [
@@ -2744,7 +2744,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"parameters": [
@@ -2808,7 +2808,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"parameters": [
@@ -2865,7 +2865,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 459,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
}
],
"type": {
@@ -2885,7 +2885,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 459,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
}
]
}
@@ -2918,7 +2918,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 460,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
}
],
"signatures": [
@@ -2933,7 +2933,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 460,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
}
],
"parameters": [
@@ -2963,7 +2963,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 462,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L462"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L462"
}
],
"type": {
@@ -2984,7 +2984,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 463,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
}
],
"type": {
@@ -3007,7 +3007,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 465,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
}
],
"type": {
@@ -3028,7 +3028,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 464,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L464"
}
],
"type": {
@@ -3048,7 +3048,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 463,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
}
]
}
@@ -3065,7 +3065,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 461,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L461"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L461"
}
],
"type": {
@@ -3085,7 +3085,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 460,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
}
],
"indexSignatures": [
@@ -3100,7 +3100,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 467,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
}
],
"parameters": [
@@ -3163,7 +3163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"typeParameters": [
@@ -3186,7 +3186,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"indexSignatures": [
@@ -3201,7 +3201,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"parameters": [
@@ -3265,7 +3265,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 472,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
],
"type": {
@@ -3285,7 +3285,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 472,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
]
}
@@ -3310,7 +3310,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
],
"signatures": [
@@ -3325,7 +3325,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
],
"parameters": [
@@ -3355,7 +3355,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 475,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
}
],
"type": {
@@ -3376,7 +3376,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 476,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
}
],
"type": {
@@ -3399,7 +3399,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"type": {
@@ -3420,7 +3420,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 477,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L477"
}
],
"type": {
@@ -3440,7 +3440,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 476,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
}
]
}
@@ -3457,7 +3457,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 480,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
}
],
"type": {
@@ -3479,7 +3479,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 474,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L474"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L474"
}
],
"type": {
@@ -3499,7 +3499,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
]
}
@@ -3543,7 +3543,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
}
],
"typeParameters": [
@@ -3612,7 +3612,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 485,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
}
],
"type": {
@@ -3635,7 +3635,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 485,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
}
]
}
@@ -3660,7 +3660,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
],
"signatures": [
@@ -3675,7 +3675,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
],
"parameters": [
@@ -3705,7 +3705,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 488,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
}
],
"type": {
@@ -3727,7 +3727,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 489,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L489"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L489"
}
],
"type": {
@@ -3760,7 +3760,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 487,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L487"
}
],
"type": {
@@ -3780,7 +3780,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
]
}
@@ -3824,7 +3824,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
}
],
"typeParameters": [
@@ -3847,7 +3847,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
}
],
"indexSignatures": [
@@ -3862,7 +3862,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
}
],
"parameters": [
@@ -3926,7 +3926,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
],
"type": {
@@ -3949,7 +3949,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
]
}
@@ -3974,7 +3974,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
],
"signatures": [
@@ -3989,7 +3989,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
],
"parameters": [
@@ -4019,7 +4019,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 497,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
}
],
"type": {
@@ -4041,7 +4041,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 498,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L498"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L498"
}
],
"type": {
@@ -4074,7 +4074,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 496,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
}
],
"type": {
@@ -4094,7 +4094,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
]
}
@@ -4138,7 +4138,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
}
],
"typeParameters": [
@@ -4161,7 +4161,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
}
],
"indexSignatures": [
@@ -4176,7 +4176,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
}
],
"parameters": [
@@ -4240,7 +4240,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
],
"type": {
@@ -4263,7 +4263,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
]
}
@@ -4288,7 +4288,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
],
"signatures": [
@@ -4303,7 +4303,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
],
"parameters": [
@@ -4333,7 +4333,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 506,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
}
],
"type": {
@@ -4355,7 +4355,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 507,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L507"
}
],
"type": {
@@ -4388,7 +4388,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 505,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
}
],
"type": {
@@ -4408,7 +4408,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
]
}
@@ -4452,7 +4452,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
}
],
"typeParameters": [
@@ -4475,7 +4475,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
}
],
"indexSignatures": [
@@ -4490,7 +4490,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
}
],
"parameters": [
@@ -4554,7 +4554,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
],
"type": {
@@ -4577,7 +4577,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
]
}
@@ -4602,7 +4602,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
],
"signatures": [
@@ -4617,7 +4617,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
],
"parameters": [
@@ -4647,7 +4647,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 515,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
}
],
"type": {
@@ -4669,7 +4669,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 516,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L516"
}
],
"type": {
@@ -4702,7 +4702,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 514,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
}
],
"type": {
@@ -4722,7 +4722,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
]
}
@@ -4766,7 +4766,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
}
],
"typeParameters": [
@@ -4789,7 +4789,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
}
],
"indexSignatures": [
@@ -4804,7 +4804,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
}
],
"parameters": [
@@ -4878,7 +4878,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 522,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
}
],
"signatures": [
@@ -4893,7 +4893,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 522,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
}
],
"parameters": [
@@ -4940,7 +4940,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"signatures": [
@@ -4963,7 +4963,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"typeParameters": [
@@ -4986,7 +4986,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"indexSignatures": [
@@ -5001,7 +5001,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"parameters": [
@@ -5066,7 +5066,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 609,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
}
],
"signatures": [
@@ -5089,7 +5089,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 609,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
}
],
"parameters": [
@@ -5135,7 +5135,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 612,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L612"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L612"
}
],
"type": {
@@ -5164,7 +5164,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 613,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L613"
}
],
"type": {
@@ -5191,7 +5191,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 611,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L611"
}
],
"type": {
@@ -5224,7 +5224,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 610,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L610"
}
],
"indexSignatures": [
@@ -5239,7 +5239,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 614,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L614"
}
],
"parameters": [
@@ -5291,7 +5291,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 616,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
}
],
"indexSignatures": [
@@ -5306,7 +5306,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 616,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
}
],
"parameters": [
@@ -5364,7 +5364,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"signatures": [
@@ -5387,7 +5387,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"parameters": [
@@ -5412,7 +5412,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"signatures": [
@@ -5427,7 +5427,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"parameters": [
@@ -5506,7 +5506,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 735,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
}
],
"signatures": [
@@ -5529,7 +5529,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 735,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
}
],
"type": {
@@ -5550,7 +5550,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 386,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
}
],
"signatures": [
@@ -5581,7 +5581,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 386,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
}
],
"parameters": [
@@ -5604,7 +5604,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 387,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
}
],
"indexSignatures": [
@@ -5619,7 +5619,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 387,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
}
],
"parameters": [
@@ -5663,7 +5663,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 388,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
}
],
"indexSignatures": [
@@ -5678,7 +5678,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 388,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
}
],
"parameters": [
@@ -5736,7 +5736,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 696,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
}
],
"signatures": [
@@ -5767,7 +5767,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 696,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
}
],
"parameters": [
@@ -5826,7 +5826,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"signatures": [
@@ -5849,7 +5849,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"parameters": [
@@ -5872,7 +5872,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"indexSignatures": [
@@ -5887,7 +5887,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"parameters": [
@@ -5945,7 +5945,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"signatures": [
@@ -5968,7 +5968,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"parameters": [
@@ -5991,7 +5991,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"indexSignatures": [
@@ -6006,7 +6006,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"parameters": [
@@ -6059,7 +6059,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 164,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
}
]
},
@@ -6081,7 +6081,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176"
}
],
"signatures": [
@@ -6115,7 +6115,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176"
}
],
"parameters": [
@@ -6263,7 +6263,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"type": {
@@ -6286,7 +6286,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"signatures": [
@@ -6301,7 +6301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"type": {
@@ -6347,7 +6347,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L103"
}
],
"type": {
@@ -6376,7 +6376,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L104"
}
],
"type": {
@@ -6405,7 +6405,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 105,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L105"
}
],
"type": {
@@ -6431,7 +6431,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L125"
}
],
"type": {
@@ -6462,7 +6462,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 123,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L123"
}
],
"type": {
@@ -6486,7 +6486,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L122"
}
],
"type": {
@@ -6510,7 +6510,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L106"
}
],
"type": {
@@ -6530,7 +6530,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L139"
}
],
"type": {
@@ -6773,7 +6773,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"type": {
@@ -6789,7 +6789,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"indexSignatures": [
@@ -6804,7 +6804,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"parameters": [
@@ -6841,7 +6841,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"type": {
@@ -6857,7 +6857,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"signatures": [
@@ -6872,7 +6872,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"parameters": [
@@ -6914,7 +6914,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L113"
}
],
"type": {
@@ -6934,7 +6934,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L114"
}
],
"type": {
@@ -6969,7 +6969,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 107,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L107"
}
],
"type": {
@@ -6989,7 +6989,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L120"
}
],
"type": {
@@ -7016,7 +7016,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L121"
}
],
"type": {
@@ -7042,7 +7042,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"type": {
@@ -7058,7 +7058,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"indexSignatures": [
@@ -7073,7 +7073,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"parameters": [
@@ -7110,7 +7110,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L115"
}
],
"type": {
@@ -7139,7 +7139,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 124,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L124"
}
],
"type": {
@@ -7163,7 +7163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L118"
}
],
"type": {
@@ -7198,7 +7198,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"type": {
@@ -7218,7 +7218,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 126,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L126"
}
],
"type": {
@@ -7246,7 +7246,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L127"
}
],
"type": {
@@ -7272,7 +7272,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128"
}
],
"type": {
@@ -7295,7 +7295,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 130,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L130"
}
],
"type": {
@@ -7322,7 +7322,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 131,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L131"
}
],
"type": {
@@ -7349,7 +7349,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 132,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L132"
}
],
"type": {
@@ -7376,7 +7376,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 129,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L129"
}
],
"type": {
@@ -7404,7 +7404,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 128,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128"
}
]
}
@@ -7422,7 +7422,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"type": {
@@ -7442,7 +7442,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L112"
}
],
"type": {
@@ -7473,7 +7473,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 119,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L119"
}
],
"type": {
@@ -7495,7 +7495,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"type": {
@@ -7516,7 +7516,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L143"
}
],
"type": {
@@ -7542,7 +7542,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L142"
}
],
"type": {
@@ -7561,7 +7561,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378"
}
],
"signatures": [
@@ -7602,7 +7602,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378"
}
],
"parameters": [
@@ -7653,7 +7653,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195"
}
],
"signatures": [
@@ -7676,7 +7676,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195"
}
],
"type": {
@@ -7697,7 +7697,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 337,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337"
}
],
"signatures": [
@@ -7720,7 +7720,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 337,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337"
}
],
"type": {
@@ -7746,7 +7746,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261"
}
],
"signatures": [
@@ -7769,7 +7769,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261"
}
],
"parameters": [
@@ -7834,7 +7834,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251"
}
],
"signatures": [
@@ -7868,7 +7868,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251"
}
],
"type": {
@@ -7889,7 +7889,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491"
}
],
"signatures": [
@@ -7912,7 +7912,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491"
}
],
"type": {
@@ -7933,7 +7933,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297"
}
],
"signatures": [
@@ -7956,7 +7956,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297"
}
],
"type": {
@@ -7983,7 +7983,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 353,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353"
}
],
"signatures": [
@@ -8014,7 +8014,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 353,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353"
}
],
"type": {
@@ -8035,7 +8035,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360"
}
],
"signatures": [
@@ -8066,7 +8066,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360"
}
],
"type": {
@@ -8087,7 +8087,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 367,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367"
}
],
"signatures": [
@@ -8118,7 +8118,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 367,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367"
}
],
"type": {
@@ -8139,7 +8139,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L330"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330"
}
],
"signatures": [
@@ -8170,7 +8170,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L330"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330"
}
],
"parameters": [
@@ -8228,7 +8228,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"signatures": [
@@ -8251,7 +8251,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"parameters": [
@@ -8274,7 +8274,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"signatures": [
@@ -8289,7 +8289,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"parameters": [
@@ -8338,7 +8338,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397"
}
],
"signatures": [
@@ -8361,7 +8361,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397"
}
],
"parameters": [
@@ -8397,7 +8397,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 318,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318"
}
],
"signatures": [
@@ -8420,7 +8420,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 318,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318"
}
],
"type": {
@@ -8457,7 +8457,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305"
}
],
"signatures": [
@@ -8480,7 +8480,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305"
}
],
"parameters": [
@@ -8538,7 +8538,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432"
}
],
"signatures": [
@@ -8561,7 +8561,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432"
}
],
"type": {
@@ -8593,7 +8593,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 421,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421"
}
],
"signatures": [
@@ -8624,7 +8624,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 421,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421"
}
],
"parameters": [
@@ -8701,7 +8701,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 102,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L102"
}
]
},
@@ -8723,7 +8723,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"signatures": [
@@ -8757,7 +8757,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"parameters": [
@@ -8839,7 +8839,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
],
"type": {
@@ -8862,7 +8862,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L65"
}
],
"type": {
@@ -8886,7 +8886,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L66"
}
],
"type": {
@@ -8910,7 +8910,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -8926,7 +8926,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"signatures": [
@@ -8941,7 +8941,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -8965,7 +8965,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
]
}
@@ -8993,7 +8993,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 90,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L90"
}
],
"type": {
@@ -9015,7 +9015,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L63"
}
],
"type": {
@@ -9035,7 +9035,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L62"
}
],
"type": {
@@ -9064,7 +9064,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L61"
}
],
"type": {
@@ -9092,7 +9092,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L60"
}
],
"type": {
@@ -9119,7 +9119,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 59,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L59"
}
]
},
@@ -9152,7 +9152,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 166,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
}
],
"signatures": [
@@ -9186,7 +9186,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 166,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
}
],
"parameters": [
@@ -9264,7 +9264,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 146,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
}
],
"signatures": [
@@ -9298,7 +9298,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 146,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
}
],
"type": {
@@ -9412,7 +9412,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 181,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
}
],
"signatures": [
@@ -9446,7 +9446,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 181,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
}
],
"type": {
@@ -9468,7 +9468,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
}
]
},
@@ -9492,7 +9492,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
}
],
"type": {
@@ -9513,7 +9513,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
}
],
"type": {
@@ -9534,7 +9534,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 5,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
}
],
"type": {
@@ -9555,7 +9555,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 4,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
}
],
"type": {
@@ -9576,7 +9576,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 2,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
}
],
"type": {
@@ -9597,7 +9597,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"type": {
@@ -9613,7 +9613,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"signatures": [
@@ -9628,7 +9628,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"parameters": [
@@ -9671,7 +9671,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
}
],
"type": {
@@ -9690,7 +9690,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"type": {
@@ -9713,7 +9713,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"signatures": [
@@ -9728,7 +9728,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"parameters": [
@@ -9782,7 +9782,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"type": {
@@ -9805,7 +9805,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"signatures": [
@@ -9820,7 +9820,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"parameters": [
@@ -9874,7 +9874,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"type": {
@@ -9897,7 +9897,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"signatures": [
@@ -9912,7 +9912,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"parameters": [
@@ -9966,7 +9966,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"type": {
@@ -9989,7 +9989,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"signatures": [
@@ -10004,7 +10004,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"parameters": [
@@ -10060,7 +10060,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 3,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
}
],
"type": {
@@ -10081,7 +10081,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 8,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
}
],
"type": {
@@ -10102,7 +10102,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
}
],
"type": {
@@ -10123,7 +10123,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 7,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
}
],
"type": {
@@ -10142,7 +10142,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"signatures": [
@@ -10165,7 +10165,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"parameters": [
@@ -10215,7 +10215,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"signatures": [
@@ -10238,7 +10238,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"parameters": [
@@ -10287,7 +10287,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"signatures": [
@@ -10310,7 +10310,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"parameters": [
@@ -10360,7 +10360,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"signatures": [
@@ -10383,7 +10383,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"parameters": [
@@ -10465,7 +10465,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 1,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
}
]
},
@@ -10503,7 +10503,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"signatures": [
@@ -10518,7 +10518,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L63"
}
],
"parameters": [
@@ -10594,7 +10594,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"indexSignatures": [
@@ -10609,7 +10609,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L65"
}
],
"parameters": [
@@ -10643,7 +10643,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
],
"type": {
@@ -10666,7 +10666,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
],
"type": {
@@ -10699,7 +10699,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -10724,7 +10724,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -10745,7 +10745,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -10771,7 +10771,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -10791,7 +10791,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
]
}
@@ -10818,7 +10818,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -10843,7 +10843,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -10864,7 +10864,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -10884,7 +10884,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
]
}
@@ -10911,7 +10911,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
}
],
"type": {
@@ -10931,7 +10931,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
]
}
@@ -10949,7 +10949,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
]
}
@@ -10966,7 +10966,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 125,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
}
],
"type": {
@@ -10998,7 +10998,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
],
"type": {
@@ -11023,7 +11023,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"type": {
@@ -11039,7 +11039,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"signatures": [
@@ -11091,7 +11091,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L82"
}
],
"type": {
@@ -11117,7 +11117,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 81,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L81"
}
],
"type": {
@@ -11143,7 +11143,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L89"
}
],
"type": {
@@ -11169,7 +11169,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"type": {
@@ -11185,7 +11185,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"indexSignatures": [
@@ -11200,7 +11200,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"parameters": [
@@ -11238,7 +11238,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"type": {
@@ -11254,7 +11254,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"signatures": [
@@ -11304,7 +11304,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L77"
}
],
"type": {
@@ -11325,7 +11325,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 87,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L87"
}
],
"type": {
@@ -11351,7 +11351,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L80"
}
],
"type": {
@@ -11377,7 +11377,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L88"
}
],
"type": {
@@ -11403,7 +11403,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"type": {
@@ -11419,7 +11419,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"indexSignatures": [
@@ -11434,7 +11434,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"parameters": [
@@ -11472,7 +11472,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L83"
}
],
"type": {
@@ -11498,7 +11498,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L76"
}
],
"type": {
@@ -11519,7 +11519,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L75"
}
],
"type": {
@@ -11542,7 +11542,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L79"
}
],
"type": {
@@ -11563,7 +11563,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L90"
}
],
"type": {
@@ -11584,7 +11584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L91"
}
],
"type": {
@@ -11606,7 +11606,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
]
}
@@ -11623,7 +11623,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
],
"type": {
@@ -11646,7 +11646,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L35"
}
],
"type": {
@@ -11667,7 +11667,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L38"
}
],
"type": {
@@ -11686,7 +11686,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L36"
}
],
"type": {
@@ -11705,7 +11705,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L37"
}
],
"type": {
@@ -11724,7 +11724,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L34"
}
],
"type": {
@@ -11744,7 +11744,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
]
}
@@ -11761,7 +11761,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
],
"typeParameters": [
@@ -11816,7 +11816,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
}
],
"type": {
@@ -11848,7 +11848,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
}
],
"type": {
@@ -11875,7 +11875,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
}
],
"type": {
@@ -11904,7 +11904,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
}
],
"type": {
@@ -11924,7 +11924,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
]
}
@@ -11941,7 +11941,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"typeParameters": [
@@ -11964,7 +11964,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"indexSignatures": [
@@ -11979,7 +11979,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"parameters": [
@@ -12067,7 +12067,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"typeParameters": [
@@ -12090,7 +12090,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"indexSignatures": [
@@ -12105,7 +12105,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"parameters": [
@@ -12163,7 +12163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 96,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
}
],
"type": {
@@ -12193,7 +12193,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
],
"type": {
@@ -12209,7 +12209,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
]
}
@@ -12226,7 +12226,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 98,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
}
],
"type": {
@@ -12260,7 +12260,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 95,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
}
]
}
@@ -12279,7 +12279,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"typeParameters": [
@@ -12302,7 +12302,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"indexSignatures": [
@@ -12317,7 +12317,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"parameters": [
@@ -12375,7 +12375,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 82,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
}
],
"type": {
@@ -12405,7 +12405,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 83,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
}
],
"type": {
@@ -12427,7 +12427,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
],
"type": {
@@ -12443,7 +12443,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
]
}
@@ -12461,7 +12461,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 81,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
}
]
}
@@ -12480,7 +12480,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"typeParameters": [
@@ -12503,7 +12503,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"indexSignatures": [
@@ -12518,7 +12518,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"parameters": [
@@ -12576,7 +12576,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 89,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
}
],
"type": {
@@ -12606,7 +12606,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 90,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
}
],
"type": {
@@ -12628,7 +12628,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 91,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
}
],
"type": {
@@ -12662,7 +12662,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 88,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
}
]
}
@@ -12681,7 +12681,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"typeParameters": [
@@ -12704,7 +12704,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"indexSignatures": [
@@ -12719,7 +12719,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"parameters": [
@@ -12765,7 +12765,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L20"
}
],
"type": {
@@ -12801,7 +12801,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L18"
}
],
"type": {
@@ -12831,7 +12831,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L19"
}
],
"type": {
@@ -12850,7 +12850,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L21"
}
],
"type": {
@@ -12887,7 +12887,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
]
}
@@ -12904,7 +12904,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"typeParameters": [
@@ -12927,7 +12927,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"indexSignatures": [
@@ -12942,7 +12942,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"parameters": [
@@ -12988,7 +12988,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L27"
}
],
"type": {
@@ -13024,7 +13024,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L25"
}
],
"type": {
@@ -13054,7 +13054,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L26"
}
],
"type": {
@@ -13073,7 +13073,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L28"
}
],
"type": {
@@ -13110,7 +13110,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 77,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
]
}
@@ -13127,7 +13127,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"typeParameters": [
@@ -13150,7 +13150,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -13165,7 +13165,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"parameters": [
@@ -13202,7 +13202,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
]
}
@@ -13222,7 +13222,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 75,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -13237,7 +13237,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L14"
}
],
"parameters": [
@@ -13290,7 +13290,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 41,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L41"
}
],
"type": {
@@ -13324,7 +13324,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 148,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
}
],
"type": {
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json
index 16a9b1fc100e0..f3aa7fbdfe9d2 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/realtime_dereferenced.json
@@ -23,7 +23,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
}
],
"type": {
@@ -42,7 +42,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
}
],
"type": {
@@ -61,7 +61,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
}
],
"type": {
@@ -80,7 +80,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
}
],
"type": {
@@ -100,7 +100,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 134,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
}
]
},
@@ -122,7 +122,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
}
],
"type": {
@@ -141,7 +141,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
}
],
"type": {
@@ -160,7 +160,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 129,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
}
],
"type": {
@@ -179,7 +179,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
}
],
"type": {
@@ -199,7 +199,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 127,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
}
]
},
@@ -221,7 +221,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L33"
}
],
"type": {
@@ -240,7 +240,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L34"
}
],
"type": {
@@ -259,7 +259,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L32"
}
],
"type": {
@@ -279,7 +279,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L31"
}
]
},
@@ -301,7 +301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
}
],
"type": {
@@ -320,7 +320,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 144,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
}
],
"type": {
@@ -339,7 +339,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
}
],
"type": {
@@ -358,7 +358,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
}
],
"type": {
@@ -378,7 +378,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 141,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
}
]
},
@@ -408,7 +408,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"signatures": [
@@ -442,7 +442,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L200"
}
],
"parameters": [
@@ -515,7 +515,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"type": {
@@ -531,7 +531,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 165,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
}
],
"indexSignatures": [
@@ -546,7 +546,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
],
"parameters": [
@@ -584,7 +584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 169,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
}
],
"type": {
@@ -608,7 +608,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"type": {
@@ -624,7 +624,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"indexSignatures": [
@@ -639,7 +639,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 168,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
}
],
"parameters": [
@@ -677,7 +677,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 170,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
}
],
"type": {
@@ -696,7 +696,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 167,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
}
],
"type": {
@@ -716,7 +716,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 166,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
}
]
}
@@ -739,7 +739,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
}
],
"type": {
@@ -758,7 +758,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
}
],
"type": {
@@ -778,7 +778,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
}
],
"type": {
@@ -805,7 +805,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 203,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L203"
}
],
"type": {
@@ -827,7 +827,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
}
],
"type": {
@@ -849,7 +849,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
}
],
"type": {
@@ -868,7 +868,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
}
],
"type": {
@@ -897,7 +897,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
}
],
"type": {
@@ -924,7 +924,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 204,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L204"
}
],
"type": {
@@ -946,7 +946,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
}
],
"type": {
@@ -971,7 +971,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
}
],
"type": {
@@ -990,7 +990,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
}
],
"type": {
@@ -1019,7 +1019,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 202,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L202"
}
],
"type": {
@@ -1038,7 +1038,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 549,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
}
],
"signatures": [
@@ -1072,7 +1072,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 549,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L549"
}
],
"parameters": [
@@ -1150,7 +1150,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 552,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
}
],
"type": {
@@ -1170,7 +1170,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 552,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L552"
}
]
}
@@ -1208,7 +1208,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -1228,7 +1228,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
]
}
@@ -1253,7 +1253,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -1272,7 +1272,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -1291,7 +1291,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
],
"type": {
@@ -1311,7 +1311,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 553,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L553"
}
]
}
@@ -1336,91 +1336,91 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 416,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
},
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 524,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
}
],
"signatures": [
@@ -1443,7 +1443,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 416,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
}
],
"parameters": [
@@ -1484,7 +1484,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 418,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
}
],
"type": {
@@ -1504,7 +1504,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 418,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L418"
}
]
}
@@ -1529,7 +1529,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
}
],
"signatures": [
@@ -1544,7 +1544,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 419,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
}
],
"type": {
@@ -1584,7 +1584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"typeParameters": [
@@ -1607,7 +1607,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"indexSignatures": [
@@ -1622,7 +1622,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 421,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L421"
}
],
"parameters": [
@@ -1686,7 +1686,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 423,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
}
],
"type": {
@@ -1706,7 +1706,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 423,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L423"
}
]
}
@@ -1731,7 +1731,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"signatures": [
@@ -1746,7 +1746,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 424,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
}
],
"parameters": [
@@ -1810,7 +1810,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"typeParameters": [
@@ -1833,7 +1833,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"indexSignatures": [
@@ -1848,7 +1848,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 426,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L426"
}
],
"parameters": [
@@ -1912,7 +1912,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 428,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
}
],
"type": {
@@ -1932,7 +1932,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 428,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
}
]
}
@@ -1957,7 +1957,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"signatures": [
@@ -1972,7 +1972,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 429,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L429"
}
],
"parameters": [
@@ -2036,7 +2036,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"typeParameters": [
@@ -2059,7 +2059,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"indexSignatures": [
@@ -2074,7 +2074,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 431,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"parameters": [
@@ -2150,7 +2150,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"signatures": [
@@ -2165,7 +2165,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 434,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
}
],
"parameters": [
@@ -2229,7 +2229,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
}
],
"typeParameters": [
@@ -2252,7 +2252,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
}
],
"indexSignatures": [
@@ -2267,7 +2267,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 436,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
}
],
"parameters": [
@@ -2343,7 +2343,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"signatures": [
@@ -2358,7 +2358,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 439,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L439"
}
],
"parameters": [
@@ -2422,7 +2422,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"typeParameters": [
@@ -2445,7 +2445,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"indexSignatures": [
@@ -2460,7 +2460,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 441,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"parameters": [
@@ -2536,7 +2536,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"signatures": [
@@ -2551,7 +2551,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 444,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"parameters": [
@@ -2615,7 +2615,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
}
],
"typeParameters": [
@@ -2638,7 +2638,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
}
],
"indexSignatures": [
@@ -2653,7 +2653,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 446,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
}
],
"parameters": [
@@ -2729,7 +2729,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"signatures": [
@@ -2744,7 +2744,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 449,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
}
],
"parameters": [
@@ -2808,7 +2808,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 457,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"parameters": [
@@ -2865,7 +2865,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 459,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
}
],
"type": {
@@ -2885,7 +2885,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 459,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
}
]
}
@@ -2918,7 +2918,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 460,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
}
],
"signatures": [
@@ -2933,7 +2933,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 460,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
}
],
"parameters": [
@@ -2963,7 +2963,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 462,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L462"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L462"
}
],
"type": {
@@ -2984,7 +2984,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 463,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
}
],
"type": {
@@ -3007,7 +3007,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 465,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
}
],
"type": {
@@ -3028,7 +3028,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 464,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L464"
}
],
"type": {
@@ -3048,7 +3048,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 463,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
}
]
}
@@ -3065,7 +3065,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 461,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L461"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L461"
}
],
"type": {
@@ -3085,7 +3085,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 460,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
}
],
"indexSignatures": [
@@ -3100,7 +3100,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 467,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
}
],
"parameters": [
@@ -3163,7 +3163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"typeParameters": [
@@ -3186,7 +3186,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"indexSignatures": [
@@ -3201,7 +3201,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 470,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L470"
}
],
"parameters": [
@@ -3265,7 +3265,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 472,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
],
"type": {
@@ -3285,7 +3285,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 472,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
]
}
@@ -3310,7 +3310,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
],
"signatures": [
@@ -3325,7 +3325,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
],
"parameters": [
@@ -3355,7 +3355,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 475,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
}
],
"type": {
@@ -3376,7 +3376,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 476,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
}
],
"type": {
@@ -3399,7 +3399,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 478,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"type": {
@@ -3420,7 +3420,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 477,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L477"
}
],
"type": {
@@ -3440,7 +3440,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 476,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
}
]
}
@@ -3457,7 +3457,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 480,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L480"
}
],
"type": {
@@ -3479,7 +3479,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 474,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L474"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L474"
}
],
"type": {
@@ -3499,7 +3499,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 473,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L473"
}
]
}
@@ -3543,7 +3543,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
}
],
"typeParameters": [
@@ -3612,7 +3612,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 485,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
}
],
"type": {
@@ -3635,7 +3635,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 485,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
}
]
}
@@ -3660,7 +3660,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
],
"signatures": [
@@ -3675,7 +3675,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
],
"parameters": [
@@ -3705,7 +3705,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 488,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L488"
}
],
"type": {
@@ -3727,7 +3727,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 489,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L489"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L489"
}
],
"type": {
@@ -3760,7 +3760,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 487,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L487"
}
],
"type": {
@@ -3780,7 +3780,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 486,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
]
}
@@ -3824,7 +3824,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
}
],
"typeParameters": [
@@ -3847,7 +3847,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
}
],
"indexSignatures": [
@@ -3862,7 +3862,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 492,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L492"
}
],
"parameters": [
@@ -3926,7 +3926,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
],
"type": {
@@ -3949,7 +3949,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 494,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L494"
}
]
}
@@ -3974,7 +3974,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
],
"signatures": [
@@ -3989,7 +3989,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
],
"parameters": [
@@ -4019,7 +4019,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 497,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L497"
}
],
"type": {
@@ -4041,7 +4041,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 498,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L498"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L498"
}
],
"type": {
@@ -4074,7 +4074,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 496,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L496"
}
],
"type": {
@@ -4094,7 +4094,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 495,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
]
}
@@ -4138,7 +4138,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
}
],
"typeParameters": [
@@ -4161,7 +4161,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
}
],
"indexSignatures": [
@@ -4176,7 +4176,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 501,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L501"
}
],
"parameters": [
@@ -4240,7 +4240,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
],
"type": {
@@ -4263,7 +4263,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 503,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L503"
}
]
}
@@ -4288,7 +4288,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
],
"signatures": [
@@ -4303,7 +4303,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
],
"parameters": [
@@ -4333,7 +4333,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 506,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L506"
}
],
"type": {
@@ -4355,7 +4355,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 507,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L507"
}
],
"type": {
@@ -4388,7 +4388,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 505,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L505"
}
],
"type": {
@@ -4408,7 +4408,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 504,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L504"
}
]
}
@@ -4452,7 +4452,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
}
],
"typeParameters": [
@@ -4475,7 +4475,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
}
],
"indexSignatures": [
@@ -4490,7 +4490,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 510,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L510"
}
],
"parameters": [
@@ -4554,7 +4554,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
],
"type": {
@@ -4577,7 +4577,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 512,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L512"
}
]
}
@@ -4602,7 +4602,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
],
"signatures": [
@@ -4617,7 +4617,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
],
"parameters": [
@@ -4647,7 +4647,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 515,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L515"
}
],
"type": {
@@ -4669,7 +4669,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 516,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L516"
}
],
"type": {
@@ -4702,7 +4702,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 514,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L514"
}
],
"type": {
@@ -4722,7 +4722,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 513,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L513"
}
]
}
@@ -4766,7 +4766,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
}
],
"typeParameters": [
@@ -4789,7 +4789,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
}
],
"indexSignatures": [
@@ -4804,7 +4804,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 519,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L519"
}
],
"parameters": [
@@ -4878,7 +4878,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 522,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
}
],
"signatures": [
@@ -4893,7 +4893,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 522,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L522"
}
],
"parameters": [
@@ -4940,7 +4940,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"signatures": [
@@ -4963,7 +4963,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"typeParameters": [
@@ -4986,7 +4986,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"indexSignatures": [
@@ -5001,7 +5001,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 378,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L378"
}
],
"parameters": [
@@ -5066,7 +5066,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 609,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
}
],
"signatures": [
@@ -5089,7 +5089,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 609,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L609"
}
],
"parameters": [
@@ -5135,7 +5135,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 612,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L612"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L612"
}
],
"type": {
@@ -5164,7 +5164,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 613,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L613"
}
],
"type": {
@@ -5191,7 +5191,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 611,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L611"
}
],
"type": {
@@ -5224,7 +5224,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 610,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L610"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L610"
}
],
"indexSignatures": [
@@ -5239,7 +5239,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 614,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L614"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L614"
}
],
"parameters": [
@@ -5291,7 +5291,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 616,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
}
],
"indexSignatures": [
@@ -5306,7 +5306,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 616,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L616"
}
],
"parameters": [
@@ -5364,7 +5364,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"signatures": [
@@ -5387,7 +5387,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 270,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L270"
}
],
"parameters": [
@@ -5412,7 +5412,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"signatures": [
@@ -5427,7 +5427,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 271,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L271"
}
],
"parameters": [
@@ -5506,7 +5506,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 735,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
}
],
"signatures": [
@@ -5529,7 +5529,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 735,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L735"
}
],
"type": {
@@ -5550,7 +5550,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 386,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
}
],
"signatures": [
@@ -5581,7 +5581,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 386,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L386"
}
],
"parameters": [
@@ -5604,7 +5604,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 387,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
}
],
"indexSignatures": [
@@ -5619,7 +5619,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 387,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
}
],
"parameters": [
@@ -5663,7 +5663,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 388,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
}
],
"indexSignatures": [
@@ -5678,7 +5678,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 388,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L388"
}
],
"parameters": [
@@ -5736,7 +5736,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 696,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
}
],
"signatures": [
@@ -5767,7 +5767,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 696,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L696"
}
],
"parameters": [
@@ -5826,7 +5826,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"signatures": [
@@ -5849,7 +5849,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"parameters": [
@@ -5872,7 +5872,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"indexSignatures": [
@@ -5887,7 +5887,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 403,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
}
],
"parameters": [
@@ -5945,7 +5945,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"signatures": [
@@ -5968,7 +5968,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"parameters": [
@@ -5991,7 +5991,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"indexSignatures": [
@@ -6006,7 +6006,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 683,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L683"
}
],
"parameters": [
@@ -6059,7 +6059,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 164,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
}
]
},
@@ -6081,7 +6081,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176"
}
],
"signatures": [
@@ -6115,7 +6115,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L176"
}
],
"parameters": [
@@ -6263,7 +6263,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"type": {
@@ -6286,7 +6286,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"signatures": [
@@ -6301,7 +6301,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 140,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L140"
}
],
"type": {
@@ -6347,7 +6347,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L103"
}
],
"type": {
@@ -6376,7 +6376,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L104"
}
],
"type": {
@@ -6405,7 +6405,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 105,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L105"
}
],
"type": {
@@ -6431,7 +6431,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L125"
}
],
"type": {
@@ -6462,7 +6462,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 123,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L123"
}
],
"type": {
@@ -6486,7 +6486,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L122"
}
],
"type": {
@@ -6510,7 +6510,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L106"
}
],
"type": {
@@ -6530,7 +6530,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L139"
}
],
"type": {
@@ -6773,7 +6773,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"type": {
@@ -6789,7 +6789,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"indexSignatures": [
@@ -6804,7 +6804,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"parameters": [
@@ -6841,7 +6841,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"type": {
@@ -6857,7 +6857,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"signatures": [
@@ -6872,7 +6872,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"parameters": [
@@ -6914,7 +6914,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L113"
}
],
"type": {
@@ -6934,7 +6934,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L114"
}
],
"type": {
@@ -6969,7 +6969,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 107,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L107"
}
],
"type": {
@@ -6989,7 +6989,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L120"
}
],
"type": {
@@ -7016,7 +7016,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L121"
}
],
"type": {
@@ -7042,7 +7042,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"type": {
@@ -7058,7 +7058,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"indexSignatures": [
@@ -7073,7 +7073,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"parameters": [
@@ -7110,7 +7110,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L115"
}
],
"type": {
@@ -7139,7 +7139,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 124,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L124"
}
],
"type": {
@@ -7163,7 +7163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L118"
}
],
"type": {
@@ -7198,7 +7198,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"type": {
@@ -7218,7 +7218,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 126,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L126"
}
],
"type": {
@@ -7246,7 +7246,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 127,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L127"
}
],
"type": {
@@ -7272,7 +7272,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 128,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128"
}
],
"type": {
@@ -7295,7 +7295,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 130,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L130"
}
],
"type": {
@@ -7322,7 +7322,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 131,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L131"
}
],
"type": {
@@ -7349,7 +7349,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 132,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L132"
}
],
"type": {
@@ -7376,7 +7376,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 129,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L129"
}
],
"type": {
@@ -7404,7 +7404,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 128,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L128"
}
]
}
@@ -7422,7 +7422,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"type": {
@@ -7442,7 +7442,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L112"
}
],
"type": {
@@ -7473,7 +7473,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 119,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L119"
}
],
"type": {
@@ -7495,7 +7495,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 141,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L141"
}
],
"type": {
@@ -7516,7 +7516,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 143,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L143"
}
],
"type": {
@@ -7542,7 +7542,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L142"
}
],
"type": {
@@ -7561,7 +7561,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378"
}
],
"signatures": [
@@ -7602,7 +7602,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L378"
}
],
"parameters": [
@@ -7653,7 +7653,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195"
}
],
"signatures": [
@@ -7676,7 +7676,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L195"
}
],
"type": {
@@ -7697,7 +7697,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 337,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337"
}
],
"signatures": [
@@ -7720,7 +7720,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 337,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L337"
}
],
"type": {
@@ -7746,7 +7746,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261"
}
],
"signatures": [
@@ -7769,7 +7769,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L261"
}
],
"parameters": [
@@ -7834,7 +7834,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251"
}
],
"signatures": [
@@ -7868,7 +7868,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L251"
}
],
"type": {
@@ -7889,7 +7889,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491"
}
],
"signatures": [
@@ -7912,7 +7912,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 491,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L491"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L491"
}
],
"type": {
@@ -7933,7 +7933,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297"
}
],
"signatures": [
@@ -7956,7 +7956,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L297"
}
],
"type": {
@@ -7983,7 +7983,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 353,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353"
}
],
"signatures": [
@@ -8014,7 +8014,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 353,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L353"
}
],
"type": {
@@ -8035,7 +8035,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360"
}
],
"signatures": [
@@ -8066,7 +8066,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L360"
}
],
"type": {
@@ -8087,7 +8087,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 367,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367"
}
],
"signatures": [
@@ -8118,7 +8118,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 367,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L367"
}
],
"type": {
@@ -8139,7 +8139,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L330"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330"
}
],
"signatures": [
@@ -8170,7 +8170,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 330,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L330"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L330"
}
],
"parameters": [
@@ -8228,7 +8228,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"signatures": [
@@ -8251,7 +8251,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"parameters": [
@@ -8274,7 +8274,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"signatures": [
@@ -8289,7 +8289,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 485,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L485"
}
],
"parameters": [
@@ -8338,7 +8338,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397"
}
],
"signatures": [
@@ -8361,7 +8361,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L397"
}
],
"parameters": [
@@ -8397,7 +8397,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 318,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318"
}
],
"signatures": [
@@ -8420,7 +8420,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 318,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L318"
}
],
"type": {
@@ -8457,7 +8457,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305"
}
],
"signatures": [
@@ -8480,7 +8480,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 305,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L305"
}
],
"parameters": [
@@ -8538,7 +8538,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432"
}
],
"signatures": [
@@ -8561,7 +8561,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L432"
}
],
"type": {
@@ -8593,7 +8593,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 421,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421"
}
],
"signatures": [
@@ -8624,7 +8624,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 421,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L421"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L421"
}
],
"parameters": [
@@ -8701,7 +8701,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 102,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L102"
}
]
},
@@ -8723,7 +8723,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"signatures": [
@@ -8757,7 +8757,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L89"
}
],
"parameters": [
@@ -8839,7 +8839,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
],
"type": {
@@ -8862,7 +8862,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L65"
}
],
"type": {
@@ -8886,7 +8886,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L66"
}
],
"type": {
@@ -8910,7 +8910,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -8926,7 +8926,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"signatures": [
@@ -8941,7 +8941,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -8965,7 +8965,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
]
}
@@ -8993,7 +8993,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 90,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L90"
}
],
"type": {
@@ -9015,7 +9015,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L63"
}
],
"type": {
@@ -9035,7 +9035,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L62"
}
],
"type": {
@@ -9064,7 +9064,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L61"
}
],
"type": {
@@ -9092,7 +9092,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L60"
}
],
"type": {
@@ -9119,7 +9119,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 59,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L59"
}
]
},
@@ -9152,7 +9152,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 166,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
}
],
"signatures": [
@@ -9186,7 +9186,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 166,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L166"
}
],
"parameters": [
@@ -9264,7 +9264,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 146,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
}
],
"signatures": [
@@ -9298,7 +9298,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 146,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L146"
}
],
"type": {
@@ -9412,7 +9412,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 181,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
}
],
"signatures": [
@@ -9446,7 +9446,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 181,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L181"
}
],
"type": {
@@ -9468,7 +9468,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 50,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L50"
}
]
},
@@ -9492,7 +9492,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L34"
}
],
"type": {
@@ -9513,7 +9513,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
}
],
"type": {
@@ -9534,7 +9534,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 5,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
}
],
"type": {
@@ -9555,7 +9555,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 4,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
}
],
"type": {
@@ -9576,7 +9576,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 2,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
}
],
"type": {
@@ -9597,7 +9597,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"type": {
@@ -9613,7 +9613,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"signatures": [
@@ -9628,7 +9628,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 37,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L37"
}
],
"parameters": [
@@ -9671,7 +9671,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L36"
}
],
"type": {
@@ -9690,7 +9690,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"type": {
@@ -9713,7 +9713,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"signatures": [
@@ -9728,7 +9728,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 21,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L21"
}
],
"parameters": [
@@ -9782,7 +9782,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"type": {
@@ -9805,7 +9805,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"signatures": [
@@ -9820,7 +9820,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"parameters": [
@@ -9874,7 +9874,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"type": {
@@ -9897,7 +9897,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"signatures": [
@@ -9912,7 +9912,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 20,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L20"
}
],
"parameters": [
@@ -9966,7 +9966,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"type": {
@@ -9989,7 +9989,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"signatures": [
@@ -10004,7 +10004,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"parameters": [
@@ -10060,7 +10060,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 3,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
}
],
"type": {
@@ -10081,7 +10081,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 8,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
}
],
"type": {
@@ -10102,7 +10102,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
}
],
"type": {
@@ -10123,7 +10123,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 7,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
}
],
"type": {
@@ -10142,7 +10142,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"signatures": [
@@ -10165,7 +10165,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L27"
}
],
"parameters": [
@@ -10215,7 +10215,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"signatures": [
@@ -10238,7 +10238,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"parameters": [
@@ -10287,7 +10287,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"signatures": [
@@ -10310,7 +10310,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L31"
}
],
"parameters": [
@@ -10360,7 +10360,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"signatures": [
@@ -10383,7 +10383,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L17"
}
],
"parameters": [
@@ -10465,7 +10465,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 1,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
}
]
},
@@ -10503,7 +10503,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"signatures": [
@@ -10518,7 +10518,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L63"
}
],
"parameters": [
@@ -10594,7 +10594,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 62,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L62"
}
],
"indexSignatures": [
@@ -10609,7 +10609,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L65"
}
],
"parameters": [
@@ -10643,7 +10643,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
],
"type": {
@@ -10666,7 +10666,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
],
"type": {
@@ -10699,7 +10699,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -10724,7 +10724,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -10745,7 +10745,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -10771,7 +10771,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -10791,7 +10791,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
]
}
@@ -10818,7 +10818,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -10843,7 +10843,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -10864,7 +10864,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -10884,7 +10884,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
]
}
@@ -10911,7 +10911,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
}
],
"type": {
@@ -10931,7 +10931,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
]
}
@@ -10949,7 +10949,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
]
}
@@ -10966,7 +10966,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 125,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
}
],
"type": {
@@ -10998,7 +10998,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
],
"type": {
@@ -11023,7 +11023,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"type": {
@@ -11039,7 +11039,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 92,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L92"
}
],
"signatures": [
@@ -11091,7 +11091,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L82"
}
],
"type": {
@@ -11117,7 +11117,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 81,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L81"
}
],
"type": {
@@ -11143,7 +11143,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L89"
}
],
"type": {
@@ -11169,7 +11169,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"type": {
@@ -11185,7 +11185,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"indexSignatures": [
@@ -11200,7 +11200,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"parameters": [
@@ -11238,7 +11238,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"type": {
@@ -11254,7 +11254,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"signatures": [
@@ -11304,7 +11304,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L77"
}
],
"type": {
@@ -11325,7 +11325,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 87,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L87"
}
],
"type": {
@@ -11351,7 +11351,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L80"
}
],
"type": {
@@ -11377,7 +11377,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L88"
}
],
"type": {
@@ -11403,7 +11403,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"type": {
@@ -11419,7 +11419,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"indexSignatures": [
@@ -11434,7 +11434,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"parameters": [
@@ -11472,7 +11472,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L83"
}
],
"type": {
@@ -11498,7 +11498,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L76"
}
],
"type": {
@@ -11519,7 +11519,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L75"
}
],
"type": {
@@ -11542,7 +11542,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L79"
}
],
"type": {
@@ -11563,7 +11563,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L90"
}
],
"type": {
@@ -11584,7 +11584,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 91,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L91"
}
],
"type": {
@@ -11606,7 +11606,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
]
}
@@ -11623,7 +11623,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
],
"type": {
@@ -11646,7 +11646,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L35"
}
],
"type": {
@@ -11667,7 +11667,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L38"
}
],
"type": {
@@ -11686,7 +11686,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L36"
}
],
"type": {
@@ -11705,7 +11705,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L37"
}
],
"type": {
@@ -11724,7 +11724,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L34"
}
],
"type": {
@@ -11744,7 +11744,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
]
}
@@ -11761,7 +11761,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
],
"typeParameters": [
@@ -11816,7 +11816,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
}
],
"type": {
@@ -11848,7 +11848,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
}
],
"type": {
@@ -11875,7 +11875,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
}
],
"type": {
@@ -11904,7 +11904,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
}
],
"type": {
@@ -11924,7 +11924,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 106,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
]
}
@@ -11941,7 +11941,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"typeParameters": [
@@ -11964,7 +11964,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"indexSignatures": [
@@ -11979,7 +11979,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 101,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"parameters": [
@@ -12067,7 +12067,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"typeParameters": [
@@ -12090,7 +12090,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"indexSignatures": [
@@ -12105,7 +12105,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 94,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"parameters": [
@@ -12163,7 +12163,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 96,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
}
],
"type": {
@@ -12193,7 +12193,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
],
"type": {
@@ -12209,7 +12209,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 97,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
]
}
@@ -12226,7 +12226,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 98,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
}
],
"type": {
@@ -12260,7 +12260,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 95,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
}
]
}
@@ -12279,7 +12279,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"typeParameters": [
@@ -12302,7 +12302,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"indexSignatures": [
@@ -12317,7 +12317,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 80,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"parameters": [
@@ -12375,7 +12375,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 82,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
}
],
"type": {
@@ -12405,7 +12405,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 83,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
}
],
"type": {
@@ -12427,7 +12427,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
],
"type": {
@@ -12443,7 +12443,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 84,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
]
}
@@ -12461,7 +12461,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 81,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
}
]
}
@@ -12480,7 +12480,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"typeParameters": [
@@ -12503,7 +12503,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"indexSignatures": [
@@ -12518,7 +12518,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 87,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"parameters": [
@@ -12576,7 +12576,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 89,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
}
],
"type": {
@@ -12606,7 +12606,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 90,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
}
],
"type": {
@@ -12628,7 +12628,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 91,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
}
],
"type": {
@@ -12662,7 +12662,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 88,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
}
]
}
@@ -12681,7 +12681,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"typeParameters": [
@@ -12704,7 +12704,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"indexSignatures": [
@@ -12719,7 +12719,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"parameters": [
@@ -12765,7 +12765,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L20"
}
],
"type": {
@@ -12801,7 +12801,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L18"
}
],
"type": {
@@ -12831,7 +12831,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L19"
}
],
"type": {
@@ -12850,7 +12850,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L21"
}
],
"type": {
@@ -12887,7 +12887,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
]
}
@@ -12904,7 +12904,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"typeParameters": [
@@ -12927,7 +12927,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"indexSignatures": [
@@ -12942,7 +12942,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"parameters": [
@@ -12988,7 +12988,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L27"
}
],
"type": {
@@ -13024,7 +13024,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L25"
}
],
"type": {
@@ -13054,7 +13054,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L26"
}
],
"type": {
@@ -13073,7 +13073,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L28"
}
],
"type": {
@@ -13110,7 +13110,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 77,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
]
}
@@ -13127,7 +13127,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"typeParameters": [
@@ -13150,7 +13150,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -13165,7 +13165,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"parameters": [
@@ -13202,7 +13202,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
]
}
@@ -13222,7 +13222,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 75,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
@@ -13237,7 +13237,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimePresence.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimePresence.ts#L14"
}
],
"parameters": [
@@ -13290,7 +13290,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 41,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeClient.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeClient.ts#L41"
}
],
"type": {
@@ -13324,7 +13324,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 148,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
}
],
"type": {
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/storage.json b/apps/docs/spec/enrichments/tsdoc_v2/storage.json
index fc2a0381ef264..8b5a87ac18d30 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/storage.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/storage.json
@@ -46,7 +46,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 67,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L67"
}
],
"type": {
@@ -73,7 +73,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L73"
}
],
"type": {
@@ -100,7 +100,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L69"
}
],
"type": {
@@ -127,7 +127,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L75"
}
],
"type": {
@@ -154,7 +154,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L77"
}
],
"type": {
@@ -181,7 +181,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L71"
}
],
"type": {
@@ -201,7 +201,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 65,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L65"
}
]
},
@@ -223,7 +223,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18"
}
],
"signatures": [
@@ -238,7 +238,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18"
}
],
"parameters": [
@@ -306,7 +306,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L15"
}
],
"type": {
@@ -325,7 +325,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L16"
}
],
"type": {
@@ -344,7 +344,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25"
}
],
"signatures": [
@@ -359,7 +359,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25"
}
],
"type": {
@@ -382,7 +382,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 28,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L28"
}
],
"type": {
@@ -402,7 +402,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 27,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L27"
}
],
"type": {
@@ -422,7 +422,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 29,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L29"
}
],
"type": {
@@ -442,7 +442,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 30,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L30"
}
],
"type": {
@@ -463,7 +463,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 26,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L26"
}
]
}
@@ -491,7 +491,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L14"
}
],
"extendedTypes": [
@@ -519,9 +519,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 25,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"signatures": [
@@ -539,6 +539,15 @@
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
{
"tag": "@example",
"content": [
@@ -553,9 +562,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 25,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"parameters": [
@@ -587,9 +596,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 27,
+ "line": 28,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"indexSignatures": [
@@ -602,9 +611,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 27,
+ "line": 28,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"parameters": [
@@ -895,9 +904,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 76,
+ "line": 90,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90"
}
],
"getSignature": {
@@ -910,16 +919,25 @@
"summary": [
{
"kind": "text",
- "text": "Access analytics storage operations using Iceberg tables."
+ "text": "Access analytics storage operations using Iceberg tables.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
{
"kind": "text",
- "text": "A StorageAnalyticsApi instance configured with the current storage settings."
+ "text": "A StorageAnalyticsClient instance configured with the current storage settings."
}
]
},
@@ -937,15 +955,15 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 76,
+ "line": 90,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90"
}
],
"type": {
"type": "reference",
"target": 47,
- "name": "StorageAnalyticsApi",
+ "name": "StorageAnalyticsClient",
"package": "@supabase/storage-js",
"qualifiedName": "default"
}
@@ -960,9 +978,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 50,
+ "line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"getSignature": {
@@ -975,10 +993,19 @@
"summary": [
{
"kind": "text",
- "text": "Access vector storage operations.\n\n**Private alpha:** This API is part of a private alpha release and may change or be removed without notice."
+ "text": "Access vector storage operations.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -988,14 +1015,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 50,
+ "line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"type": {
@@ -1017,9 +1045,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"signatures": [
@@ -1039,12 +1067,39 @@
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
{
"kind": "text",
- "text": "newly created bucket id"
+ "text": "Promise with newly created bucket id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .createBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"name\": \"avatars\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -1053,9 +1108,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"parameters": [
@@ -1112,9 +1167,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 125,
+ "line": 206,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206"
}
],
"type": {
@@ -1153,9 +1208,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 124,
+ "line": 205,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205"
}
],
"type": {
@@ -1193,9 +1248,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 123,
+ "line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204"
}
],
"type": {
@@ -1234,9 +1289,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 126,
+ "line": 207,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207"
}
],
"type": {
@@ -1256,9 +1311,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 122,
+ "line": 203,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203"
}
]
}
@@ -1294,9 +1349,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 132,
+ "line": 213,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213"
}
],
"type": {
@@ -1330,9 +1385,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 133,
+ "line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214"
}
],
"type": {
@@ -1350,9 +1405,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 131,
+ "line": 212,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212"
}
]
}
@@ -1375,9 +1430,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 136,
+ "line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217"
}
],
"type": {
@@ -1394,9 +1449,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 137,
+ "line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218"
}
],
"type": {
@@ -1416,9 +1471,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 135,
+ "line": 216,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216"
}
]
}
@@ -1453,9 +1508,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"signatures": [
@@ -1481,14 +1536,52 @@
"kind": "text",
"text": " the bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Delete bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .deleteBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully deleted\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"parameters": [
@@ -1540,9 +1633,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -1563,9 +1656,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -1583,9 +1676,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
]
}
@@ -1600,9 +1693,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 266,
+ "line": 408,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408"
}
],
"type": {
@@ -1620,9 +1713,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 264,
+ "line": 406,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406"
}
]
}
@@ -1645,9 +1738,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 269,
+ "line": 411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411"
}
],
"type": {
@@ -1664,9 +1757,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 270,
+ "line": 412,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412"
}
],
"type": {
@@ -1686,9 +1779,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 268,
+ "line": 410,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410"
}
]
}
@@ -1723,9 +1816,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"signatures": [
@@ -1743,14 +1836,52 @@
"kind": "text",
"text": "Removes all objects inside a single bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Empty bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .emptyBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully emptied\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"parameters": [
@@ -1802,9 +1933,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -1825,9 +1956,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -1845,9 +1976,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
]
}
@@ -1862,9 +1993,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 230,
+ "line": 353,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353"
}
],
"type": {
@@ -1882,9 +2013,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 228,
+ "line": 351,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351"
}
]
}
@@ -1907,9 +2038,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 233,
+ "line": 356,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356"
}
],
"type": {
@@ -1926,9 +2057,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 234,
+ "line": 357,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357"
}
],
"type": {
@@ -1948,9 +2079,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 232,
+ "line": 355,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355"
}
]
}
@@ -1983,9 +2114,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 39,
+ "line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"signatures": [
@@ -2001,14 +2132,34 @@
"kind": "text",
"text": "Perform file operation in a bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst avatars = storage.from('avatars')\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 39,
+ "line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"parameters": [
@@ -2053,9 +2204,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"signatures": [
@@ -2073,14 +2224,52 @@
"kind": "text",
"text": "Retrieves the details of an existing Storage bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with bucket details or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Get bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .getBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"id\": \"avatars\",\n \"name\": \"avatars\",\n \"owner\": \"\",\n \"public\": false,\n \"file_size_limit\": 1024,\n \"allowed_mime_types\": [\n \"image/png\"\n ],\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"parameters": [
@@ -2132,9 +2321,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 82,
+ "line": 141,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141"
}
],
"type": {
@@ -2153,9 +2342,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 83,
+ "line": 142,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142"
}
],
"type": {
@@ -2173,9 +2362,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 81,
+ "line": 140,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140"
}
]
}
@@ -2198,9 +2387,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 86,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145"
}
],
"type": {
@@ -2217,9 +2406,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 87,
+ "line": 146,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146"
}
],
"type": {
@@ -2239,9 +2428,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 85,
+ "line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144"
}
]
}
@@ -2276,9 +2465,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"signatures": [
@@ -2296,14 +2485,54 @@
"kind": "text",
"text": "Retrieves the details of all Storage buckets within an existing project."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of buckets or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets()\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets with options",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'prod'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"parameters": [
@@ -2315,11 +2544,51 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Query parameters for listing buckets"
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 625,
"name": "ListBucketOptions",
- "package": "@supabase/storage-js"
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "limit": [
+ {
+ "kind": "text",
+ "text": "Maximum number of buckets to return"
+ }
+ ],
+ "offset": [
+ {
+ "kind": "text",
+ "text": "Number of buckets to skip"
+ }
+ ],
+ "sortColumn": [
+ {
+ "kind": "text",
+ "text": "Column to sort by ('id', 'name', 'created_at', 'updated_at')"
+ }
+ ],
+ "sortOrder": [
+ {
+ "kind": "text",
+ "text": "Sort order ('asc' or 'desc')"
+ }
+ ],
+ "search": [
+ {
+ "kind": "text",
+ "text": "Search term to filter bucket names"
+ }
+ ]
+ }
}
}
],
@@ -2351,9 +2620,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 49,
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
}
],
"type": {
@@ -2375,9 +2644,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 50,
+ "line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
}
],
"type": {
@@ -2395,9 +2664,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 48,
+ "line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79"
}
]
}
@@ -2420,9 +2689,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 53,
+ "line": 84,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84"
}
],
"type": {
@@ -2439,9 +2708,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 54,
+ "line": 85,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
}
],
"type": {
@@ -2461,9 +2730,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 52,
+ "line": 83,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
}
]
}
@@ -2499,9 +2768,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"signatures": [
@@ -2519,14 +2788,25 @@
"kind": "text",
"text": "Enable throwing errors instead of returning them."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"type": {
@@ -2557,9 +2837,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"signatures": [
@@ -2577,14 +2857,52 @@
"kind": "text",
"text": "Updates a Storage bucket"
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .updateBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully updated\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"parameters": [
@@ -2641,9 +2959,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 184,
+ "line": 288,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288"
}
],
"type": {
@@ -2682,9 +3000,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 183,
+ "line": 287,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287"
}
],
"type": {
@@ -2722,9 +3040,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 182,
+ "line": 286,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286"
}
],
"type": {
@@ -2742,9 +3060,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 181,
+ "line": 285,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285"
}
]
}
@@ -2779,9 +3097,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -2802,9 +3120,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -2822,9 +3140,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
]
}
@@ -2839,9 +3157,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 189,
+ "line": 293,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293"
}
],
"type": {
@@ -2859,9 +3177,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 187,
+ "line": 291,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291"
}
]
}
@@ -2884,9 +3202,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 192,
+ "line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"type": {
@@ -2903,9 +3221,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 193,
+ "line": 297,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
],
"type": {
@@ -2925,9 +3243,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 191,
+ "line": 295,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295"
}
]
}
@@ -2966,12 +3284,26 @@
"children": [558, 600, 589, 517, 549, 540, 538, 573]
}
],
+ "categories": [
+ {
+ "title": "Analytics Buckets",
+ "children": [522]
+ },
+ {
+ "title": "File Buckets",
+ "children": [501, 558, 600, 589, 517, 549, 540, 538, 573]
+ },
+ {
+ "title": "Vector Buckets",
+ "children": [520]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L11"
}
],
"extendedTypes": [
@@ -3001,7 +3333,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 4,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4"
}
],
"signatures": [
@@ -3016,7 +3348,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 4,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4"
}
],
"parameters": [
@@ -3063,7 +3395,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 1,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L1"
}
],
"extendedTypes": [
@@ -3108,7 +3440,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38"
}
],
"signatures": [
@@ -3123,7 +3455,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38"
}
],
"parameters": [
@@ -3180,7 +3512,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L36"
}
],
"type": {
@@ -3204,7 +3536,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L35"
}
],
"extendedTypes": [
@@ -3242,7 +3574,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
}
],
"signatures": [
@@ -3257,7 +3589,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
}
],
"parameters": [
@@ -3325,7 +3657,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L27"
}
],
"type": {
@@ -3344,7 +3676,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L28"
}
],
"type": {
@@ -3363,7 +3695,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
}
],
"signatures": [
@@ -3378,7 +3710,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
}
],
"type": {
@@ -3401,7 +3733,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 40,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L40"
}
],
"type": {
@@ -3421,7 +3753,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 39,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L39"
}
],
"type": {
@@ -3441,7 +3773,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 41,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L41"
}
],
"type": {
@@ -3461,7 +3793,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 42,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L42"
}
],
"type": {
@@ -3482,7 +3814,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 38,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L38"
}
]
}
@@ -3510,7 +3842,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L26"
}
],
"extendedTypes": [
@@ -3532,7 +3864,7 @@
"summary": [
{
"kind": "text",
- "text": "Main client for interacting with S3 Vectors API\nProvides access to bucket, index, and vector data operations\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible.\n\n**Usage Patterns:**\n\n1. **Via StorageClient (recommended for most use cases):**\n"
+ "text": "Main client for interacting with S3 Vectors API\nProvides access to bucket, index, and vector data operations\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.\n\n**Usage Patterns:**\n\n1. **Via StorageClient (recommended for most use cases):**\n"
},
{
"kind": "code",
@@ -3546,7 +3878,8 @@
"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```"
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -3558,9 +3891,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 98,
+ "line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112"
}
],
"signatures": [
@@ -3574,16 +3907,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a StorageVectorsClient that can manage buckets, indexes, and vectors.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a StorageVectorsClient that can manage buckets, indexes, and vectors.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new StorageVectorsClient(url, options)\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 98,
+ "line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112"
}
],
"parameters": [
@@ -3681,9 +4035,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"signatures": [
@@ -3699,10 +4053,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -3754,14 +4117,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"parameters": [
@@ -3832,9 +4196,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"signatures": [
@@ -3850,10 +4214,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -3905,14 +4278,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"parameters": [
@@ -3981,9 +4355,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 127,
+ "line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145"
}
],
"signatures": [
@@ -3997,10 +4371,19 @@
"summary": [
{
"kind": "text",
- "text": "Access operations for a specific vector bucket\nReturns a scoped client for index and vector operations within the bucket\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Access operations for a specific vector bucket\nReturns a scoped client for index and vector operations within the bucket\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -4019,14 +4402,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 127,
+ "line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145"
}
],
"parameters": [
@@ -4070,9 +4454,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"signatures": [
@@ -4088,10 +4472,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -4135,14 +4528,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"parameters": [
@@ -4195,9 +4589,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"type": {
@@ -4217,9 +4611,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
]
}
@@ -4256,9 +4650,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"signatures": [
@@ -4274,10 +4668,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -4313,14 +4716,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"parameters": [
@@ -4417,9 +4821,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"signatures": [
@@ -4435,10 +4839,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -4457,14 +4870,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"type": {
@@ -4495,12 +4909,18 @@
"children": [776, 787, 757, 779, 784, 774]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [753, 776, 787, 757, 779, 784, 774]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 88,
+ "line": 94,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L94"
}
],
"extendedTypes": [
@@ -4538,7 +4958,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
}
],
"signatures": [
@@ -4553,7 +4973,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
}
],
"parameters": [
@@ -4600,7 +5020,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 4,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L4"
}
],
"extendedTypes": [
@@ -4653,7 +5073,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 54,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
}
],
"signatures": [
@@ -4668,7 +5088,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 54,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
}
],
"parameters": [
@@ -4725,7 +5145,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L52"
}
],
"type": {
@@ -4749,7 +5169,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L51"
}
],
"extendedTypes": [
@@ -4771,9 +5191,10 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector buckets\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "API class for managing Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector buckets\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -4785,9 +5206,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"signatures": [
@@ -4801,10 +5222,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new VectorBucketApi instance\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new VectorBucketApi instance\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@example",
"content": [
@@ -4814,14 +5244,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"parameters": [
@@ -4869,9 +5300,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"indexSignatures": [
@@ -4884,9 +5315,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"parameters": [
@@ -5161,9 +5592,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"signatures": [
@@ -5177,10 +5608,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -5232,14 +5672,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"parameters": [
@@ -5298,9 +5739,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"signatures": [
@@ -5314,10 +5755,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -5369,14 +5819,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"parameters": [
@@ -5435,9 +5886,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"signatures": [
@@ -5451,10 +5902,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -5498,14 +5958,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"parameters": [
@@ -5558,9 +6019,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"type": {
@@ -5580,9 +6041,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
]
}
@@ -5607,9 +6068,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"signatures": [
@@ -5623,10 +6084,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -5662,14 +6132,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"parameters": [
@@ -5755,9 +6226,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"signatures": [
@@ -5771,10 +6242,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -5793,14 +6273,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"type": {
@@ -5821,12 +6302,18 @@
"children": [937, 948, 940, 945, 935]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [906, 937, 948, 940, 945, 935]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 18,
+ "line": 21,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L21"
}
],
"extendedBy": [
@@ -5847,9 +6334,10 @@
"summary": [
{
"kind": "text",
- "text": "Scoped client for operations within a specific vector bucket\nProvides index management and access to vector operations\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Scoped client for operations within a specific vector bucket\nProvides index management and access to vector operations\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -5861,9 +6349,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 146,
+ "line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175"
}
],
"signatures": [
@@ -5877,16 +6365,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a helper that automatically scopes all index operations to the provided bucket.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a helper that automatically scopes all index operations to the provided bucket.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 146,
+ "line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175"
}
],
"parameters": [
@@ -5918,9 +6427,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 148,
+ "line": 177,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177"
}
],
"indexSignatures": [
@@ -5933,9 +6442,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 148,
+ "line": 177,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177"
}
],
"parameters": [
@@ -6221,9 +6730,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 179,
+ "line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212"
}
],
"signatures": [
@@ -6237,10 +6746,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6259,14 +6777,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 179,
+ "line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212"
}
],
"parameters": [
@@ -6352,9 +6871,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 243,
+ "line": 288,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288"
}
],
"signatures": [
@@ -6368,10 +6887,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes an index from this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes an index from this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6390,14 +6918,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 243,
+ "line": 288,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288"
}
],
"parameters": [
@@ -6466,9 +6995,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 224,
+ "line": 265,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265"
}
],
"signatures": [
@@ -6482,10 +7011,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6504,14 +7042,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 224,
+ "line": 265,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265"
}
],
"parameters": [
@@ -6564,9 +7103,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
],
"type": {
@@ -6586,9 +7125,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
]
}
@@ -6623,9 +7162,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 274,
+ "line": 323,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323"
}
],
"signatures": [
@@ -6639,10 +7178,19 @@
"summary": [
{
"kind": "text",
- "text": "Access operations for a specific index within this bucket\nReturns a scoped client for vector data operations\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Access operations for a specific index within this bucket\nReturns a scoped client for vector data operations\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6661,14 +7209,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 274,
+ "line": 323,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323"
}
],
"parameters": [
@@ -6710,9 +7259,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 201,
+ "line": 238,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238"
}
],
"signatures": [
@@ -6726,10 +7275,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6748,14 +7306,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 201,
+ "line": 238,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238"
}
],
"parameters": [
@@ -6847,9 +7406,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"signatures": [
@@ -6865,10 +7424,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6887,14 +7455,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"type": {
@@ -6925,12 +7494,18 @@
"children": [808, 819, 814, 822, 811, 839]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [791, 808, 819, 814, 822, 811, 839]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 138,
+ "line": 159,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L159"
}
],
"extendedTypes": [
@@ -6952,9 +7527,10 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Vector Data within Vector Indexes\nProvides methods for inserting, querying, listing, and deleting vector embeddings\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "API class for managing Vector Data within Vector Indexes\nProvides methods for inserting, querying, listing, and deleting vector embeddings\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -6966,9 +7542,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"signatures": [
@@ -6982,16 +7558,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a VectorDataApi bound to a Storage Vectors deployment.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a VectorDataApi bound to a Storage Vectors deployment.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorDataApi(url, headers)\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"parameters": [
@@ -7039,9 +7636,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"indexSignatures": [
@@ -7054,9 +7651,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"parameters": [
@@ -7339,9 +7936,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 343,
+ "line": 379,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379"
}
],
"signatures": [
@@ -7355,10 +7952,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes vectors by their keys in batch\nAccepts 1-500 keys per request\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes vectors by their keys in batch\nAccepts 1-500 keys per request\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -7402,14 +8008,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 343,
+ "line": 379,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379"
}
],
"parameters": [
@@ -7490,9 +8097,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 155,
+ "line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179"
}
],
"signatures": [
@@ -7506,10 +8113,19 @@
"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\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -7553,14 +8169,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 155,
+ "line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179"
}
],
"parameters": [
@@ -7655,9 +8272,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 225,
+ "line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253"
}
],
"signatures": [
@@ -7671,10 +8288,19 @@
"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\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -7718,14 +8344,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 225,
+ "line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253"
}
],
"parameters": [
@@ -7838,9 +8465,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 100,
+ "line": 120,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120"
}
],
"signatures": [
@@ -7854,10 +8481,19 @@
"summary": [
{
"kind": "text",
- "text": "Inserts or updates vectors in batch (upsert operation)\nAccepts 1-500 vectors per request. Larger batches should be split\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Inserts or updates vectors in batch (upsert operation)\nAccepts 1-500 vectors per request. Larger batches should be split\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -7909,14 +8545,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 100,
+ "line": 120,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120"
}
],
"parameters": [
@@ -7997,9 +8634,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 298,
+ "line": 330,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330"
}
],
"signatures": [
@@ -8013,10 +8650,19 @@
"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)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -8060,14 +8706,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 298,
+ "line": 330,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330"
}
],
"parameters": [
@@ -8176,9 +8823,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"signatures": [
@@ -8192,10 +8839,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -8214,14 +8870,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"type": {
@@ -8242,12 +8899,18 @@
"children": [1043, 1034, 1037, 1031, 1040, 1029]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [1000, 1043, 1034, 1037, 1031, 1040, 1029]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 23,
+ "line": 26,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L26"
}
],
"extendedBy": [
@@ -8268,9 +8931,10 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Vector Indexes within Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector indexes\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "API class for managing Vector Indexes within Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector indexes\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -8282,9 +8946,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"signatures": [
@@ -8298,16 +8962,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates an API client for managing vector indexes.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates an API client for managing vector indexes.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"parameters": [
@@ -8355,9 +9040,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"indexSignatures": [
@@ -8370,9 +9055,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"parameters": [
@@ -8655,9 +9340,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 110,
+ "line": 133,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133"
}
],
"signatures": [
@@ -8671,10 +9356,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector index within a bucket\nDefines the schema for vectors including dimensionality, distance metric, and metadata config\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector index within a bucket\nDefines the schema for vectors including dimensionality, distance metric, and metadata config\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -8734,14 +9428,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 110,
+ "line": 133,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133"
}
],
"parameters": [
@@ -8840,9 +9535,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 249,
+ "line": 284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284"
}
],
"signatures": [
@@ -8856,10 +9551,19 @@
"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\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes a vector index and all its data\nThis operation removes the index schema and all vectors stored in the index\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -8903,14 +9607,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 249,
+ "line": 284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284"
}
],
"parameters": [
@@ -8988,9 +9693,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 150,
+ "line": 177,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177"
}
],
"signatures": [
@@ -9004,10 +9709,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific vector index\nReturns index configuration including dimension, distance metric, and metadata settings\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific vector index\nReturns index configuration including dimension, distance metric, and metadata settings\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -9051,14 +9765,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 150,
+ "line": 177,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177"
}
],
"parameters": [
@@ -9130,9 +9845,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
],
"type": {
@@ -9152,9 +9867,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
]
}
@@ -9179,9 +9894,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 209,
+ "line": 240,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240"
}
],
"signatures": [
@@ -9195,10 +9910,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vector indexes within a bucket with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vector indexes within a bucket with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -9242,14 +9966,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 209,
+ "line": 240,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240"
}
],
"parameters": [
@@ -9340,9 +10065,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"signatures": [
@@ -9356,10 +10081,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -9378,14 +10112,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"type": {
@@ -9406,12 +10141,18 @@
"children": [983, 995, 986, 992, 981]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [952, 983, 995, 986, 992, 981]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 35,
+ "line": 41,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L41"
}
],
"extendedBy": [
@@ -9432,9 +10173,10 @@
"summary": [
{
"kind": "text",
- "text": "Scoped client for operations within a specific vector index\nProvides vector data operations (put, get, list, query, delete)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Scoped client for operations within a specific vector index\nProvides vector data operations (put, get, list, query, delete)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -9446,9 +10188,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 300,
+ "line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
}
],
"signatures": [
@@ -9462,16 +10204,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a helper that automatically scopes all vector operations to the provided bucket/index names.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a helper that automatically scopes all vector operations to the provided bucket/index names.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 300,
+ "line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
}
],
"parameters": [
@@ -9503,9 +10266,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 302,
+ "line": 363,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363"
}
],
"indexSignatures": [
@@ -9518,9 +10281,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 302,
+ "line": 363,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363"
}
],
"parameters": [
@@ -9817,9 +10580,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 445,
+ "line": 526,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526"
}
],
"signatures": [
@@ -9833,10 +10596,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -9855,14 +10627,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 445,
+ "line": 526,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526"
}
],
"parameters": [
@@ -9957,9 +10730,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 361,
+ "line": 430,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430"
}
],
"signatures": [
@@ -9973,10 +10746,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -9995,14 +10777,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 361,
+ "line": 430,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430"
}
],
"parameters": [
@@ -10099,9 +10882,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 387,
+ "line": 460,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460"
}
],
"signatures": [
@@ -10115,10 +10898,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vectors in this index with pagination\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vectors in this index with pagination\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -10137,14 +10929,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 387,
+ "line": 460,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460"
}
],
"parameters": [
@@ -10242,9 +11035,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 335,
+ "line": 400,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400"
}
],
"signatures": [
@@ -10258,10 +11051,19 @@
"summary": [
{
"kind": "text",
- "text": "Inserts or updates vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Inserts or updates vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -10280,14 +11082,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 335,
+ "line": 400,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400"
}
],
"parameters": [
@@ -10382,9 +11185,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 418,
+ "line": 495,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495"
}
],
"signatures": [
@@ -10398,10 +11201,19 @@
"summary": [
{
"kind": "text",
- "text": "Queries for similar vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Queries for similar vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -10420,14 +11232,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 418,
+ "line": 495,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495"
}
],
"parameters": [
@@ -10527,9 +11340,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"signatures": [
@@ -10545,10 +11358,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -10567,14 +11389,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"type": {
@@ -10605,12 +11428,18 @@
"children": [873, 864, 867, 861, 870, 890]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [842, 873, 864, 867, 861, 870, 890]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 291,
+ "line": 343,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L343"
}
],
"extendedTypes": [
@@ -10656,7 +11485,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L42"
}
],
"type": {
@@ -10683,7 +11512,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L40"
}
],
"type": {
@@ -10693,7 +11522,7 @@
},
{
"id": 632,
- "name": "id",
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -10710,7 +11539,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L36"
}
],
"type": {
@@ -10737,7 +11566,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L38"
}
],
"type": {
@@ -10764,7 +11593,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -10784,7 +11613,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 34,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L34"
}
]
},
@@ -10808,7 +11637,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L16"
}
],
"type": {
@@ -10830,7 +11659,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L17"
}
],
"type": {
@@ -10851,7 +11680,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L15"
}
],
"type": {
@@ -10870,7 +11699,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L11"
}
],
"type": {
@@ -10889,7 +11718,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L13"
}
],
"type": {
@@ -10908,7 +11737,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L14"
}
],
"type": {
@@ -10927,7 +11756,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L19"
}
],
"type": {
@@ -10948,7 +11777,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L12"
}
],
"type": {
@@ -10969,7 +11798,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -10989,7 +11818,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 10,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L10"
}
]
},
@@ -11003,9 +11832,10 @@
"summary": [
{
"kind": "text",
- "text": "Options for creating a vector index\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Options for creating a vector index\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -11014,12 +11844,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 23,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26"
}
],
"type": {
@@ -11033,12 +11867,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 24,
+ "line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L27"
}
],
"type": {
@@ -11052,12 +11890,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 25,
+ "line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L28"
}
],
"type": {
@@ -11073,12 +11915,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 22,
+ "line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25"
}
],
"type": {
@@ -11094,12 +11940,16 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 26,
+ "line": 29,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L29"
}
],
"type": {
@@ -11115,12 +11965,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 21,
+ "line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24"
}
],
"type": {
@@ -11138,9 +11992,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 20,
+ "line": 23,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23"
}
]
},
@@ -11178,7 +12032,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 196,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L196"
}
],
"type": {
@@ -11205,7 +12059,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L197"
}
],
"type": {
@@ -11235,7 +12089,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L195"
}
],
"type": {
@@ -11255,7 +12109,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 194,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L194"
}
]
},
@@ -11279,7 +12133,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L112"
}
],
"type": {
@@ -11299,7 +12153,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 111,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L111"
}
]
},
@@ -11339,7 +12193,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L9"
}
],
"type": {
@@ -11368,7 +12222,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L10"
}
],
"type": {
@@ -11388,7 +12242,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 8,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L8"
}
]
},
@@ -11426,7 +12280,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 291,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L291"
}
],
"type": {
@@ -11453,7 +12307,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L292"
}
],
"type": {
@@ -11475,7 +12329,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 290,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L290"
}
]
},
@@ -11515,7 +12369,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
}
],
"type": {
@@ -11531,7 +12385,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
}
],
"indexSignatures": [
@@ -11546,7 +12400,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 14,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L14"
}
],
"parameters": [
@@ -11592,7 +12446,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L16"
}
],
"type": {
@@ -11612,7 +12466,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 12,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L12"
}
]
},
@@ -11644,7 +12498,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 204,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L204"
}
],
"type": {
@@ -11669,7 +12523,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 200,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L200"
}
]
},
@@ -11691,7 +12545,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L49"
}
],
"type": {
@@ -11710,7 +12564,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L57"
}
],
"type": {
@@ -11731,7 +12585,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L53"
}
],
"type": {
@@ -11750,7 +12604,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L51"
}
],
"type": {
@@ -11778,7 +12632,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L55"
}
],
"type": {
@@ -11797,7 +12651,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L56"
}
],
"type": {
@@ -11831,7 +12685,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L48"
}
],
"type": {
@@ -11850,7 +12704,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L50"
}
],
"type": {
@@ -11869,7 +12723,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L52"
}
],
"type": {
@@ -11889,7 +12743,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 47,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L47"
}
]
},
@@ -11911,7 +12765,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L64"
}
],
"type": {
@@ -11932,7 +12786,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L70"
}
],
"type": {
@@ -11953,7 +12807,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L71"
}
],
"type": {
@@ -11972,7 +12826,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L66"
}
],
"type": {
@@ -11993,7 +12847,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -12012,7 +12866,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L61"
}
],
"type": {
@@ -12040,7 +12894,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 68,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L68"
}
],
"type": {
@@ -12061,7 +12915,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -12082,7 +12936,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L74"
}
],
"type": {
@@ -12116,7 +12970,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L63"
}
],
"type": {
@@ -12137,7 +12991,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L69"
}
],
"type": {
@@ -12156,7 +13010,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L65"
}
],
"type": {
@@ -12175,7 +13029,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L62"
}
],
"type": {
@@ -12195,7 +13049,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 60,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L60"
}
]
},
@@ -12235,7 +13089,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L86"
}
],
"type": {
@@ -12312,7 +13166,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L90"
}
],
"type": {
@@ -12341,7 +13195,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -12370,7 +13224,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L108"
}
],
"type": {
@@ -12414,7 +13268,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L103"
}
],
"type": {
@@ -12458,7 +13312,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -12478,7 +13332,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 82,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L82"
}
]
},
@@ -12516,7 +13370,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 162,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L162"
}
],
"type": {
@@ -12543,7 +13397,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L163"
}
],
"type": {
@@ -12575,7 +13429,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L164"
}
],
"type": {
@@ -12604,7 +13458,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L165"
}
],
"type": {
@@ -12631,7 +13485,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L161"
}
],
"type": {
@@ -12651,7 +13505,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 160,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L160"
}
]
},
@@ -12689,7 +13543,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L173"
}
],
"type": {
@@ -12714,7 +13568,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 172,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L172"
}
]
},
@@ -12738,7 +13592,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L23"
}
],
"type": {
@@ -12759,7 +13613,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L24"
}
],
"type": {
@@ -12780,7 +13634,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L27"
}
],
"type": {
@@ -12801,7 +13655,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L25"
}
],
"type": {
@@ -12839,7 +13693,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L26"
}
],
"type": {
@@ -12868,7 +13722,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L22"
}
]
},
@@ -12908,7 +13762,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L138"
}
],
"type": {
@@ -12937,7 +13791,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L139"
}
],
"type": {
@@ -12966,7 +13820,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L137"
}
],
"type": {
@@ -12993,7 +13847,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L136"
}
],
"type": {
@@ -13013,7 +13867,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 135,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L135"
}
]
},
@@ -13051,7 +13905,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148"
}
],
"type": {
@@ -13076,7 +13930,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 148,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148"
}
],
"type": {
@@ -13096,7 +13950,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 148,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148"
}
]
}
@@ -13124,7 +13978,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 149,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L149"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L149"
}
],
"type": {
@@ -13144,7 +13998,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 147,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L147"
}
]
},
@@ -13184,7 +14038,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L114"
}
],
"type": {
@@ -13213,7 +14067,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L115"
}
],
"type": {
@@ -13242,7 +14096,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L113"
}
],
"type": {
@@ -13262,7 +14116,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 112,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L112"
}
]
},
@@ -13302,7 +14156,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L125"
}
],
"type": {
@@ -13329,7 +14183,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 124,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
],
"type": {
@@ -13354,7 +14208,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 124,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
],
"type": {
@@ -13374,7 +14228,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 124,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
]
}
@@ -13393,7 +14247,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 123,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L123"
}
]
},
@@ -13431,7 +14285,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 214,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L214"
}
],
"type": {
@@ -13460,7 +14314,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L215"
}
],
"type": {
@@ -13489,7 +14343,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L216"
}
],
"type": {
@@ -13518,7 +14372,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 217,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L217"
}
],
"type": {
@@ -13547,7 +14401,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 218,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L218"
}
],
"type": {
@@ -13576,7 +14430,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L219"
}
],
"type": {
@@ -13605,7 +14459,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 220,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L220"
}
],
"type": {
@@ -13632,7 +14486,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L213"
}
],
"type": {
@@ -13652,7 +14506,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L212"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L212"
}
]
},
@@ -13692,7 +14546,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L230"
}
],
"type": {
@@ -13719,7 +14573,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L229"
}
],
"type": {
@@ -13744,7 +14598,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 228,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L228"
}
]
},
@@ -13766,7 +14620,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L209"
}
],
"type": {
@@ -13786,7 +14640,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 208,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L208"
}
]
},
@@ -13826,7 +14680,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L31"
}
],
"type": {
@@ -13849,7 +14703,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 30,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L30"
}
]
},
@@ -13887,7 +14741,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L184"
}
],
"type": {
@@ -13914,7 +14768,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L183"
}
],
"type": {
@@ -13941,7 +14795,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 185,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L185"
}
],
"type": {
@@ -13966,7 +14820,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 182,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L182"
}
]
},
@@ -14006,7 +14860,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L254"
}
],
"type": {
@@ -14035,7 +14889,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L251"
}
],
"type": {
@@ -14062,7 +14916,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 252,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L252"
}
],
"type": {
@@ -14093,7 +14947,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 255,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L255"
}
],
"type": {
@@ -14122,7 +14976,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L256"
}
],
"type": {
@@ -14151,7 +15005,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 253,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L253"
}
],
"type": {
@@ -14178,7 +15032,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L250"
}
],
"type": {
@@ -14198,7 +15052,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 249,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L249"
}
]
},
@@ -14236,7 +15090,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L264"
}
],
"type": {
@@ -14261,7 +15115,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 263,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L263"
}
]
},
@@ -14304,7 +15158,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L120"
}
],
"type": {
@@ -14333,7 +15187,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L125"
}
],
"type": {
@@ -14362,7 +15216,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L135"
}
],
"type": {
@@ -14391,7 +15245,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L130"
}
],
"type": {
@@ -14413,7 +15267,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 115,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L115"
}
]
},
@@ -14435,7 +15289,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L183"
}
],
"type": {
@@ -14454,7 +15308,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L179"
}
],
"type": {
@@ -14473,7 +15327,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L180"
}
],
"type": {
@@ -14501,7 +15355,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 188,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L188"
}
],
"type": {
@@ -14520,7 +15374,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L184"
}
],
"type": {
@@ -14554,7 +15408,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -14573,7 +15427,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L182"
}
],
"type": {
@@ -14593,7 +15447,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 178,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L178"
}
]
},
@@ -14625,7 +15479,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L158"
}
],
"type": {
@@ -14665,7 +15519,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L148"
}
],
"type": {
@@ -14694,7 +15548,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 153,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L153"
}
],
"type": {
@@ -14734,7 +15588,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L175"
}
],
"type": {
@@ -14792,7 +15646,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L169"
}
],
"type": {
@@ -14812,7 +15666,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 143,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L143"
}
]
},
@@ -14834,7 +15688,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L195"
}
],
"type": {
@@ -14858,7 +15712,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 194,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L194"
}
],
"type": {
@@ -14879,7 +15733,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L197"
}
],
"type": {
@@ -14898,7 +15752,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 196,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L196"
}
],
"type": {
@@ -14923,7 +15777,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 193,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L193"
}
]
},
@@ -14947,7 +15801,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -14968,7 +15822,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L79"
}
],
"type": {
@@ -14988,7 +15842,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 77,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L77"
}
]
},
@@ -15010,7 +15864,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L139"
}
],
"type": {
@@ -15044,7 +15898,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L140"
}
],
"type": {
@@ -15073,7 +15927,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 138,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L138"
}
]
},
@@ -15097,7 +15951,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L8"
}
],
"type": {
@@ -15117,7 +15971,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 7,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L7"
}
]
},
@@ -15131,9 +15985,10 @@
"summary": [
{
"kind": "text",
- "text": "Configuration options for the Storage Vectors client\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Configuration options for the Storage Vectors client\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -15150,14 +16005,15 @@
"kind": "text",
"text": "Custom fetch implementation (optional)\nUseful for testing or custom request handling"
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 28,
+ "line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L31"
}
],
"type": {
@@ -15387,14 +16243,15 @@
"kind": "text",
"text": "Custom headers to include in all requests"
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 23,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26"
}
],
"type": {
@@ -15408,9 +16265,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 23,
+ "line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26"
}
],
"indexSignatures": [
@@ -15423,9 +16280,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 23,
+ "line": 26,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26"
}
],
"parameters": [
@@ -15460,9 +16317,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 19,
+ "line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L22"
}
]
},
@@ -15500,7 +16357,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 281,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L281"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L281"
}
],
"type": {
@@ -15531,7 +16388,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 282,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L282"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L282"
}
],
"type": {
@@ -15551,7 +16408,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 280,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L280"
}
],
"typeParameters": [
@@ -15592,7 +16449,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 240,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L240"
}
],
"type": {
@@ -15621,7 +16478,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 220,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L220"
}
],
"type": {
@@ -15650,7 +16507,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 233,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L233"
}
],
"type": {
@@ -15679,7 +16536,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 227,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L227"
}
],
"type": {
@@ -15721,7 +16578,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L216"
}
],
"type": {
@@ -15741,7 +16598,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L212"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L212"
}
]
},
@@ -15781,7 +16638,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L21"
}
],
"type": {
@@ -15810,7 +16667,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L22"
}
],
"type": {
@@ -15839,7 +16696,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L20"
}
],
"type": {
@@ -15859,7 +16716,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 19,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L19"
}
]
},
@@ -15897,7 +16754,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L71"
}
],
"type": {
@@ -15920,7 +16777,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 70,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L70"
}
]
},
@@ -15960,7 +16817,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 272,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L272"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L272"
}
],
"type": {
@@ -15985,7 +16842,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 271,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L271"
}
]
},
@@ -16025,7 +16882,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L62"
}
],
"type": {
@@ -16052,7 +16909,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L58"
}
],
"type": {
@@ -16079,7 +16936,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 59,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L59"
}
],
"type": {
@@ -16106,7 +16963,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L60"
}
],
"type": {
@@ -16135,7 +16992,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L56"
}
],
"type": {
@@ -16164,7 +17021,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L61"
}
],
"type": {
@@ -16193,7 +17050,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L57"
}
],
"type": {
@@ -16213,7 +17070,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 55,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L55"
}
]
},
@@ -16253,7 +17110,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L101"
}
],
"type": {
@@ -16284,7 +17141,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L103"
}
],
"type": {
@@ -16311,7 +17168,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L100"
}
],
"type": {
@@ -16340,7 +17197,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L102"
}
],
"type": {
@@ -16362,7 +17219,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 99,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L99"
}
]
},
@@ -16400,7 +17257,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L88"
}
],
"type": {
@@ -16429,7 +17286,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 87,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L87"
}
],
"type": {
@@ -16458,7 +17315,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L89"
}
],
"type": {
@@ -16480,7 +17337,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 86,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L86"
}
]
},
@@ -16503,7 +17360,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 299,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L299"
}
],
"typeParameters": [
@@ -16561,7 +17418,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 8,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L8"
}
],
"type": {
@@ -16589,7 +17446,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 247,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L247"
}
],
"typeParameters": [
@@ -16692,7 +17549,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 43,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L43"
}
],
"type": {
@@ -16724,7 +17581,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 251,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L251"
}
],
"typeParameters": [
@@ -16759,7 +17616,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 253,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L253"
}
],
"type": {
@@ -16781,7 +17638,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 254,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L254"
}
],
"type": {
@@ -16801,7 +17658,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 252,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L252"
}
]
}
@@ -16826,7 +17683,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 257,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L257"
}
],
"type": {
@@ -16845,7 +17702,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L258"
}
],
"type": {
@@ -16867,7 +17724,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 256,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L256"
}
]
}
@@ -16886,7 +17743,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 5,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L5"
}
],
"type": {
@@ -16918,7 +17775,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L22"
}
],
"type": {
@@ -16954,7 +17811,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 191,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L191"
}
],
"type": {
@@ -17011,7 +17868,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 38,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L38"
}
],
"type": {
@@ -17038,7 +17895,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 237,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L237"
}
],
"type": {
@@ -17080,7 +17937,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 78,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L78"
}
],
"type": {
@@ -17133,7 +17990,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
}
],
"signatures": [
@@ -17162,7 +18019,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 35,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
}
],
"parameters": [
@@ -17204,7 +18061,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 10,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10"
}
],
"signatures": [
@@ -17219,7 +18076,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 10,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10"
}
],
"parameters": [
@@ -17260,7 +18117,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 18,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
}
],
"signatures": [
@@ -17294,7 +18151,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 18,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
}
],
"parameters": [
@@ -17351,7 +18208,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
}
],
"signatures": [
@@ -17380,7 +18237,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 57,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
}
],
"parameters": [
@@ -17436,7 +18293,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
}
],
"signatures": [
@@ -17465,7 +18322,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 10,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
}
],
"parameters": [
@@ -17933,7 +18790,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
}
],
"signatures": [
@@ -17962,7 +18819,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 23,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
}
],
"type": {
@@ -18087,7 +18944,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 70,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
}
],
"signatures": [
@@ -18102,7 +18959,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 70,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
}
],
"parameters": [
@@ -18140,7 +18997,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 71,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
}
],
"type": {
@@ -18163,7 +19020,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 71,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
}
]
}
@@ -18200,7 +19057,7 @@
},
{
"id": 613,
- "name": "StorageAnalyticsApi",
+ "name": "StorageAnalyticsClient",
"variant": "reference",
"kind": 4194304,
"flags": {},
@@ -18209,7 +19066,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 3,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/index.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L3"
}
],
"target": 47
@@ -18250,7 +19107,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/index.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L1"
}
]
},
@@ -18279,7 +19136,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"signatures": [
@@ -18294,7 +19151,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"parameters": [
@@ -18317,7 +19174,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -18332,7 +19189,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"type": {
@@ -18395,7 +19252,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
}
],
"type": {
@@ -18420,7 +19277,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -18435,7 +19292,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"type": {
@@ -18459,7 +19316,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"signatures": [
@@ -18493,7 +19350,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"typeParameters": [
@@ -18546,7 +19403,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"signatures": [
@@ -18561,7 +19418,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"parameters": [
@@ -18679,7 +19536,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -18713,7 +19570,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"parameters": [
@@ -18753,7 +19610,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -18768,7 +19625,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"type": {
@@ -18835,7 +19692,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"signatures": [
@@ -18869,7 +19726,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"typeParameters": [
@@ -18946,7 +19803,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"signatures": [
@@ -18961,7 +19818,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"parameters": [
@@ -19063,7 +19920,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"signatures": [
@@ -19078,7 +19935,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"parameters": [
@@ -19195,7 +20052,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 5,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
}
],
"implementedTypes": [
@@ -19241,13 +20098,13 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
}
]
},
{
"id": 46,
- "name": "packages/StorageAnalyticsApi",
+ "name": "packages/StorageAnalyticsClient",
"variant": "declaration",
"kind": 2,
"flags": {},
@@ -19262,7 +20119,7 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Analytics Buckets using Iceberg tables\nProvides methods for creating, listing, and deleting analytics buckets"
+ "text": "Client class for managing Analytics Buckets using Iceberg tables\nProvides methods for creating, listing, and deleting analytics buckets"
}
]
},
@@ -19275,10 +20132,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"signatures": [
@@ -19292,16 +20149,36 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new StorageAnalyticsApi instance"
+ "text": "Creates a new StorageAnalyticsClient instance\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new StorageAnalyticsClient(url, headers)\n```"
+ }
+ ]
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"parameters": [
@@ -19348,10 +20225,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"indexSignatures": [
@@ -19363,10 +20240,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"parameters": [
@@ -19625,7 +20502,7 @@
"type": {
"type": "reference",
"target": 47,
- "name": "StorageAnalyticsApi",
+ "name": "StorageAnalyticsClient",
"package": "@supabase/storage-js",
"qualifiedName": "default"
}
@@ -19640,10 +20517,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 57,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
}
],
"signatures": [
@@ -19657,10 +20534,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new analytics bucket using Iceberg tables\nAnalytics buckets are optimized for analytical queries and data processing"
+ "text": "Creates a new analytics bucket using Iceberg tables\nAnalytics buckets are optimized for analytical queries and data processing\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -19672,10 +20558,19 @@
},
{
"tag": "@example",
+ "name": "Create analytics bucket",
"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```"
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .analytics\n .createBucket('analytics-data')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"name\": \"analytics-data\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -19683,10 +20578,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 57,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
}
],
"parameters": [
@@ -19737,10 +20632,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 59,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 82,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82"
}
],
"type": {
@@ -19758,10 +20653,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 60,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 83,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L83"
}
],
"type": {
@@ -19778,10 +20673,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 58,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 81,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81"
}
]
}
@@ -19803,10 +20698,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 63,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 86,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86"
}
],
"type": {
@@ -19822,10 +20717,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 64,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 87,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L87"
}
],
"type": {
@@ -19844,10 +20739,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 62,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 85,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85"
}
]
}
@@ -19869,10 +20764,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 170,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221"
}
],
"signatures": [
@@ -19886,10 +20781,19 @@
"summary": [
{
"kind": "text",
- "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"
+ "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\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -19901,10 +20805,19 @@
},
{
"tag": "@example",
+ "name": "Delete analytics bucket",
"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```"
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .analytics\n .deleteBucket('analytics-data')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully deleted\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -19912,16 +20825,16 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 170,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221"
}
],
"parameters": [
{
"id": 105,
- "name": "bucketId",
+ "name": "bucketName",
"variant": "param",
"kind": 32768,
"flags": {},
@@ -19966,10 +20879,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 172,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 223,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223"
}
],
"type": {
@@ -19989,10 +20902,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 172,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 223,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223"
}
],
"type": {
@@ -20009,10 +20922,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 172,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 223,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223"
}
]
}
@@ -20026,10 +20939,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 173,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 224,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224"
}
],
"type": {
@@ -20046,10 +20959,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 171,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 222,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L222"
}
]
}
@@ -20071,10 +20984,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 176,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 227,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227"
}
],
"type": {
@@ -20090,10 +21003,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 177,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 228,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228"
}
],
"type": {
@@ -20112,10 +21025,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 175,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226"
}
]
}
@@ -20137,10 +21050,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 109,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 149,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
],
"signatures": [
@@ -20154,10 +21067,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves the details of all Analytics Storage buckets within an existing project\nOnly returns buckets of type 'ANALYTICS'"
+ "text": "Retrieves the details of all Analytics Storage buckets within an existing project\nOnly returns buckets of type 'ANALYTICS'\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -20169,10 +21091,19 @@
},
{
"tag": "@example",
+ "name": "List analytics buckets",
"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```"
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .analytics\n .listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc'\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [\n {\n \"id\": \"analytics-data\",\n \"name\": \"analytics-data\",\n \"type\": \"ANALYTICS\",\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n }\n ],\n \"error\": null\n}\n```"
}
]
}
@@ -20180,10 +21111,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 109,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 149,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
],
"parameters": [
@@ -20230,10 +21161,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 110,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 150,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L150"
}
],
"type": {
@@ -20259,10 +21190,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 111,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 151,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151"
}
],
"type": {
@@ -20288,10 +21219,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 114,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 154,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L154"
}
],
"type": {
@@ -20317,10 +21248,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 112,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 152,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152"
}
],
"type": {
@@ -20363,10 +21294,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 113,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 153,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153"
}
],
"type": {
@@ -20392,10 +21323,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 109,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 149,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
]
}
@@ -20429,10 +21360,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 117,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 157,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L157"
}
],
"type": {
@@ -20453,10 +21384,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 118,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158"
}
],
"type": {
@@ -20473,10 +21404,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 116,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 156,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L156"
}
]
}
@@ -20498,10 +21429,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 121,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 161,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161"
}
],
"type": {
@@ -20517,10 +21448,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 122,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 162,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162"
}
],
"type": {
@@ -20539,10 +21470,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 120,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 160,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160"
}
]
}
@@ -20566,10 +21497,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 35,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 47,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47"
}
],
"signatures": [
@@ -20583,10 +21514,19 @@
"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 }"
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -20600,10 +21540,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 35,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 47,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47"
}
],
"type": {
@@ -20624,12 +21564,18 @@
"children": [79, 103, 88, 77]
}
],
+ "categories": [
+ {
+ "title": "Analytics Buckets",
+ "children": [48, 79, 103, 88, 77]
+ }
+ ],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L11"
}
]
}
@@ -20642,10 +21588,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1"
}
]
},
@@ -20674,7 +21620,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
}
],
"signatures": [
@@ -20689,7 +21635,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
}
],
"parameters": [
@@ -20723,7 +21669,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
}
],
"indexSignatures": [
@@ -20738,7 +21684,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 16,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
}
],
"parameters": [
@@ -21020,9 +21966,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"signatures": [
@@ -21040,12 +21986,39 @@
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
{
"kind": "text",
- "text": "newly created bucket id"
+ "text": "Promise with newly created bucket id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .createBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"name\": \"avatars\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -21054,9 +22027,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"parameters": [
@@ -21113,9 +22086,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 125,
+ "line": 206,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206"
}
],
"type": {
@@ -21154,9 +22127,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 124,
+ "line": 205,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205"
}
],
"type": {
@@ -21194,9 +22167,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 123,
+ "line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204"
}
],
"type": {
@@ -21235,9 +22208,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 126,
+ "line": 207,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207"
}
],
"type": {
@@ -21257,9 +22230,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 122,
+ "line": 203,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203"
}
]
}
@@ -21295,9 +22268,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 132,
+ "line": 213,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213"
}
],
"type": {
@@ -21331,9 +22304,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 133,
+ "line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214"
}
],
"type": {
@@ -21351,9 +22324,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 131,
+ "line": 212,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212"
}
]
}
@@ -21376,9 +22349,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 136,
+ "line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217"
}
],
"type": {
@@ -21395,9 +22368,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 137,
+ "line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218"
}
],
"type": {
@@ -21417,9 +22390,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 135,
+ "line": 216,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216"
}
]
}
@@ -21442,9 +22415,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"signatures": [
@@ -21468,14 +22441,52 @@
"kind": "text",
"text": " the bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Delete bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .deleteBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully deleted\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"parameters": [
@@ -21527,9 +22538,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -21550,9 +22561,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -21570,9 +22581,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
]
}
@@ -21587,9 +22598,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 266,
+ "line": 408,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408"
}
],
"type": {
@@ -21607,9 +22618,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 264,
+ "line": 406,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406"
}
]
}
@@ -21632,9 +22643,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 269,
+ "line": 411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411"
}
],
"type": {
@@ -21651,9 +22662,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 270,
+ "line": 412,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412"
}
],
"type": {
@@ -21673,9 +22684,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 268,
+ "line": 410,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410"
}
]
}
@@ -21698,9 +22709,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"signatures": [
@@ -21716,14 +22727,52 @@
"kind": "text",
"text": "Removes all objects inside a single bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Empty bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .emptyBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully emptied\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"parameters": [
@@ -21775,9 +22824,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -21798,9 +22847,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -21818,9 +22867,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
]
}
@@ -21835,9 +22884,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 230,
+ "line": 353,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353"
}
],
"type": {
@@ -21855,9 +22904,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 228,
+ "line": 351,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351"
}
]
}
@@ -21880,9 +22929,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 233,
+ "line": 356,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356"
}
],
"type": {
@@ -21899,9 +22948,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 234,
+ "line": 357,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357"
}
],
"type": {
@@ -21921,9 +22970,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 232,
+ "line": 355,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355"
}
]
}
@@ -21946,9 +22995,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"signatures": [
@@ -21964,14 +23013,52 @@
"kind": "text",
"text": "Retrieves the details of an existing Storage bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with bucket details or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Get bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .getBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"id\": \"avatars\",\n \"name\": \"avatars\",\n \"owner\": \"\",\n \"public\": false,\n \"file_size_limit\": 1024,\n \"allowed_mime_types\": [\n \"image/png\"\n ],\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"parameters": [
@@ -22023,9 +23110,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 82,
+ "line": 141,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141"
}
],
"type": {
@@ -22044,9 +23131,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 83,
+ "line": 142,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142"
}
],
"type": {
@@ -22064,9 +23151,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 81,
+ "line": 140,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140"
}
]
}
@@ -22089,9 +23176,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 86,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145"
}
],
"type": {
@@ -22108,9 +23195,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 87,
+ "line": 146,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146"
}
],
"type": {
@@ -22130,9 +23217,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 85,
+ "line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144"
}
]
}
@@ -22155,9 +23242,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"signatures": [
@@ -22173,14 +23260,54 @@
"kind": "text",
"text": "Retrieves the details of all Storage buckets within an existing project."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of buckets or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets()\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets with options",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'prod'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"parameters": [
@@ -22192,11 +23319,51 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Query parameters for listing buckets"
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 625,
"name": "ListBucketOptions",
- "package": "@supabase/storage-js"
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "limit": [
+ {
+ "kind": "text",
+ "text": "Maximum number of buckets to return"
+ }
+ ],
+ "offset": [
+ {
+ "kind": "text",
+ "text": "Number of buckets to skip"
+ }
+ ],
+ "sortColumn": [
+ {
+ "kind": "text",
+ "text": "Column to sort by ('id', 'name', 'created_at', 'updated_at')"
+ }
+ ],
+ "sortOrder": [
+ {
+ "kind": "text",
+ "text": "Sort order ('asc' or 'desc')"
+ }
+ ],
+ "search": [
+ {
+ "kind": "text",
+ "text": "Search term to filter bucket names"
+ }
+ ]
+ }
}
}
],
@@ -22228,9 +23395,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 49,
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
}
],
"type": {
@@ -22252,9 +23419,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 50,
+ "line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
}
],
"type": {
@@ -22272,9 +23439,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 48,
+ "line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79"
}
]
}
@@ -22297,9 +23464,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 53,
+ "line": 84,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84"
}
],
"type": {
@@ -22316,9 +23483,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 54,
+ "line": 85,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
}
],
"type": {
@@ -22338,9 +23505,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 52,
+ "line": 83,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
}
]
}
@@ -22365,9 +23532,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"signatures": [
@@ -22383,14 +23550,25 @@
"kind": "text",
"text": "Enable throwing errors instead of returning them."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"type": {
@@ -22409,9 +23587,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"signatures": [
@@ -22427,14 +23605,52 @@
"kind": "text",
"text": "Updates a Storage bucket"
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .updateBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully updated\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"parameters": [
@@ -22491,9 +23707,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 184,
+ "line": 288,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288"
}
],
"type": {
@@ -22532,9 +23748,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 183,
+ "line": 287,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287"
}
],
"type": {
@@ -22572,9 +23788,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 182,
+ "line": 286,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286"
}
],
"type": {
@@ -22592,9 +23808,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 181,
+ "line": 285,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285"
}
]
}
@@ -22629,9 +23845,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -22652,9 +23868,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -22672,9 +23888,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
]
}
@@ -22689,9 +23905,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 189,
+ "line": 293,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293"
}
],
"type": {
@@ -22709,9 +23925,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 187,
+ "line": 291,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291"
}
]
}
@@ -22734,9 +23950,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 192,
+ "line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"type": {
@@ -22753,9 +23969,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 193,
+ "line": 297,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
],
"type": {
@@ -22775,9 +23991,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 191,
+ "line": 295,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295"
}
]
}
@@ -22802,12 +24018,22 @@
"children": [166, 208, 197, 157, 148, 146, 181]
}
],
+ "categories": [
+ {
+ "title": "File Buckets",
+ "children": [166, 208, 197, 157, 148, 146, 181]
+ },
+ {
+ "title": "Other",
+ "children": [116]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
}
],
"extendedBy": [
@@ -22830,7 +24056,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
}
]
},
@@ -22859,7 +24085,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
}
],
"signatures": [
@@ -22874,7 +24100,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
}
],
"parameters": [
@@ -22908,7 +24134,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
}
],
"indexSignatures": [
@@ -22923,7 +24149,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 54,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
}
],
"parameters": [
@@ -23203,9 +24429,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 392,
+ "line": 556,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556"
}
],
"signatures": [
@@ -23221,14 +24447,52 @@
"kind": "text",
"text": "Copies an existing file to a new path in the same bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with copied file path or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Copy file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .copy('public/avatar1.png', 'private/avatar2.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"avatars/private/avatar2.png\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 392,
+ "line": 556,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556"
}
],
"parameters": [
@@ -23338,9 +24602,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 398,
+ "line": 562,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L398"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
}
],
"type": {
@@ -23361,9 +24625,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 398,
+ "line": 562,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L398"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
}
],
"type": {
@@ -23381,9 +24645,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 398,
+ "line": 562,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L398"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
}
]
}
@@ -23398,9 +24662,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 399,
+ "line": 563,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L399"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L563"
}
],
"type": {
@@ -23418,9 +24682,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 397,
+ "line": 561,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L561"
}
]
}
@@ -23443,9 +24707,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 402,
+ "line": 566,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L402"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L566"
}
],
"type": {
@@ -23462,9 +24726,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 403,
+ "line": 567,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L567"
}
],
"type": {
@@ -23484,9 +24748,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 401,
+ "line": 565,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L401"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L565"
}
]
}
@@ -23509,9 +24773,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 256,
+ "line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342"
}
],
"signatures": [
@@ -23527,14 +24791,52 @@
"kind": "text",
"text": "Creates a signed upload URL.\nSigned upload URLs can be used to upload files to the bucket without further authentication.\nThey are valid for 2 hours."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with signed upload URL, token, and path or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create Signed Upload URL",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .createSignedUploadUrl('folder/cat.jpg')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/upload/sign/avatars/folder/cat.jpg?token=\",\n \"path\": \"folder/cat.jpg\",\n \"token\": \"\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 256,
+ "line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342"
}
],
"parameters": [
@@ -23599,9 +24901,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 258,
+ "line": 344,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344"
}
],
"type": {
@@ -23619,9 +24921,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 258,
+ "line": 344,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344"
}
]
}
@@ -23656,9 +24958,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -23679,9 +24981,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -23698,9 +25000,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -23717,9 +25019,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -23737,9 +25039,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
]
}
@@ -23754,9 +25056,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 262,
+ "line": 348,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L348"
}
],
"type": {
@@ -23774,9 +25076,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 260,
+ "line": 346,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L346"
}
]
}
@@ -23799,9 +25101,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 265,
+ "line": 351,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L351"
}
],
"type": {
@@ -23818,9 +25120,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 266,
+ "line": 352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
}
],
"type": {
@@ -23840,9 +25142,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 264,
+ "line": 350,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L350"
}
]
}
@@ -23865,9 +25167,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 439,
+ "line": 646,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646"
}
],
"signatures": [
@@ -23883,14 +25185,72 @@
"kind": "text",
"text": "Creates a signed URL. Use a signed URL to share a file for a fixed amount of time."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with signed URL or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create Signed URL",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .createSignedUrl('folder/avatar1.png', 60)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar1.png?token=\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create a signed URL for an asset with transformations",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = await supabase\n .storage\n .from('avatars')\n .createSignedUrl('folder/avatar1.png', 60, {\n transform: {\n width: 100,\n height: 100,\n }\n })\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create a signed URL which triggers the download of the asset",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = await supabase\n .storage\n .from('avatars')\n .createSignedUrl('folder/avatar1.png', 60, {\n download: true,\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 439,
+ "line": 646,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646"
}
],
"parameters": [
@@ -23984,9 +25344,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 442,
+ "line": 649,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649"
}
],
"type": {
@@ -24022,9 +25382,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 442,
+ "line": 649,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649"
}
],
"type": {
@@ -24044,9 +25404,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 442,
+ "line": 649,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649"
}
]
}
@@ -24081,9 +25441,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 445,
+ "line": 652,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652"
}
],
"type": {
@@ -24104,9 +25464,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 445,
+ "line": 652,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652"
}
],
"type": {
@@ -24124,9 +25484,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 445,
+ "line": 652,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652"
}
]
}
@@ -24141,9 +25501,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 446,
+ "line": 653,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
}
],
"type": {
@@ -24161,9 +25521,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 444,
+ "line": 651,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L651"
}
]
}
@@ -24186,9 +25546,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 449,
+ "line": 656,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -24205,9 +25565,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 450,
+ "line": 657,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L657"
}
],
"type": {
@@ -24227,9 +25587,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 448,
+ "line": 655,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L448"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L655"
}
]
}
@@ -24252,9 +25612,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 487,
+ "line": 725,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725"
}
],
"signatures": [
@@ -24270,14 +25630,52 @@
"kind": "text",
"text": "Creates multiple signed URLs. Use a signed URL to share a file for a fixed amount of time."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with array of signed URLs or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create Signed URLs",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .createSignedUrls(['folder/avatar1.png', 'folder/avatar2.png'], 60)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [\n {\n \"error\": null,\n \"path\": \"folder/avatar1.png\",\n \"signedURL\": \"/object/sign/avatars/folder/avatar1.png?token=\",\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar1.png?token=\"\n },\n {\n \"error\": null,\n \"path\": \"folder/avatar2.png\",\n \"signedURL\": \"/object/sign/avatars/folder/avatar2.png?token=\",\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar2.png?token=\"\n }\n ],\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 487,
+ "line": 725,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725"
}
],
"parameters": [
@@ -24372,9 +25770,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 490,
+ "line": 728,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728"
}
],
"type": {
@@ -24401,9 +25799,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 490,
+ "line": 728,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728"
}
]
}
@@ -24438,9 +25836,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -24463,9 +25861,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -24491,9 +25889,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -24519,9 +25917,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -24539,9 +25937,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
]
}
@@ -24557,9 +25955,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 494,
+ "line": 732,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L732"
}
],
"type": {
@@ -24577,9 +25975,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 492,
+ "line": 730,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L730"
}
]
}
@@ -24602,9 +26000,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 497,
+ "line": 735,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L497"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L735"
}
],
"type": {
@@ -24621,9 +26019,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 498,
+ "line": 736,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L498"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L736"
}
],
"type": {
@@ -24643,9 +26041,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 496,
+ "line": 734,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L734"
}
]
}
@@ -24668,9 +26066,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
],
"signatures": [
@@ -24694,14 +26092,62 @@
"kind": "text",
"text": " instead."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "BlobDownloadBuilder instance for downloading the file"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Download file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .download('folder/avatar1.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": ,\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Download file with transformations",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .download('folder/avatar1.png', {\n transform: {\n width: 100,\n height: 100,\n quality: 80\n }\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
],
"typeParameters": [
@@ -24731,9 +26177,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
],
"type": {
@@ -24753,9 +26199,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
]
}
@@ -24826,9 +26272,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 594,
+ "line": 886,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886"
}
],
"signatures": [
@@ -24844,14 +26290,44 @@
"kind": "text",
"text": "Checks the existence of a file."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with boolean indicating file existence or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Check file existence",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .exists('folder/avatar1.png')\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 594,
+ "line": 886,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886"
}
],
"parameters": [
@@ -24861,6 +26337,22 @@
"variant": "param",
"kind": 32768,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The file path, including the file name. For example "
+ },
+ {
+ "kind": "code",
+ "text": "`folder/image.png`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
"type": {
"type": "intrinsic",
"name": "string"
@@ -24895,9 +26387,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 596,
+ "line": 888,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L596"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L888"
}
],
"type": {
@@ -24914,9 +26406,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 597,
+ "line": 889,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L889"
}
],
"type": {
@@ -24934,9 +26426,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 595,
+ "line": 887,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L595"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L887"
}
]
}
@@ -24959,9 +26451,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 600,
+ "line": 892,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L600"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L892"
}
],
"type": {
@@ -24978,9 +26470,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 601,
+ "line": 893,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L893"
}
],
"type": {
@@ -25000,9 +26492,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 599,
+ "line": 891,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L599"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L891"
}
]
}
@@ -25025,9 +26517,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 636,
+ "line": 970,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970"
}
],
"signatures": [
@@ -25043,14 +26535,72 @@
"kind": "text",
"text": "A simple convenience function to get the URL for an asset in a public bucket. If you do not want to use this function, you can construct the public URL by concatenating the bucket URL with the path to the asset.\nThis function does not verify if the bucket is public. If a public URL is created for a bucket which is not public, you will not be able to download the asset."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Object with public URL"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Returns the URL for an asset in a public bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = supabase\n .storage\n .from('public-bucket')\n .getPublicUrl('folder/avatar1.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"publicUrl\": \"https://example.supabase.co/storage/v1/object/public/public-bucket/folder/avatar1.png\"\n }\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Returns the URL for an asset in a public bucket with transformations",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = supabase\n .storage\n .from('public-bucket')\n .getPublicUrl('folder/avatar1.png', {\n transform: {\n width: 100,\n height: 100,\n }\n })\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Returns the URL which triggers the download of an asset in a public bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = supabase\n .storage\n .from('public-bucket')\n .getPublicUrl('folder/avatar1.png', {\n download: true,\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 636,
+ "line": 970,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970"
}
],
"parameters": [
@@ -25117,9 +26667,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 638,
+ "line": 972,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972"
}
],
"type": {
@@ -25155,9 +26705,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 638,
+ "line": 972,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972"
}
],
"type": {
@@ -25177,9 +26727,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 638,
+ "line": 972,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972"
}
]
}
@@ -25204,9 +26754,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
],
"type": {
@@ -25227,9 +26777,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
],
"type": {
@@ -25247,9 +26797,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
]
}
@@ -25265,9 +26815,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
]
}
@@ -25284,9 +26834,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 560,
+ "line": 841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841"
}
],
"signatures": [
@@ -25302,14 +26852,44 @@
"kind": "text",
"text": "Retrieves the details of an existing file."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file metadata or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Get file info",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .info('folder/avatar1.png')\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 560,
+ "line": 841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841"
}
],
"parameters": [
@@ -25319,6 +26899,22 @@
"variant": "param",
"kind": 32768,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The file path, including the file name. For example "
+ },
+ {
+ "kind": "code",
+ "text": "`folder/image.png`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
"type": {
"type": "intrinsic",
"name": "string"
@@ -25353,9 +26949,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 562,
+ "line": 843,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L843"
}
],
"type": {
@@ -25382,9 +26978,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 563,
+ "line": 844,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L563"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L844"
}
],
"type": {
@@ -25402,9 +26998,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 561,
+ "line": 842,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L842"
}
]
}
@@ -25427,9 +27023,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 566,
+ "line": 847,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L566"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L847"
}
],
"type": {
@@ -25446,9 +27042,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 567,
+ "line": 848,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L848"
}
],
"type": {
@@ -25468,9 +27064,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 565,
+ "line": 846,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L565"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L846"
}
]
}
@@ -25493,9 +27089,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 772,
+ "line": 1178,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178"
}
],
"signatures": [
@@ -25511,14 +27107,62 @@
"kind": "text",
"text": "Lists all the files and folders within a path of the bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of files or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List files in a bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .list('folder', {\n limit: 100,\n offset: 0,\n sortBy: { column: 'name', order: 'asc' },\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [\n {\n \"name\": \"avatar1.png\",\n \"id\": \"e668cf7f-821b-4a2f-9dce-7dfa5dd1cfd2\",\n \"updated_at\": \"2024-05-22T23:06:05.580Z\",\n \"created_at\": \"2024-05-22T23:04:34.443Z\",\n \"last_accessed_at\": \"2024-05-22T23:04:34.443Z\",\n \"metadata\": {\n \"eTag\": \"\\\"c5e8c553235d9af30ef4f6e280790b92\\\"\",\n \"size\": 32175,\n \"mimetype\": \"image/png\",\n \"cacheControl\": \"max-age=3600\",\n \"lastModified\": \"2024-05-22T23:06:05.574Z\",\n \"contentLength\": 32175,\n \"httpStatusCode\": 200\n }\n }\n ],\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Search files in a bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .list('folder', {\n limit: 100,\n offset: 0,\n sortBy: { column: 'name', order: 'asc' },\n search: 'jon'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 772,
+ "line": 1178,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178"
}
],
"parameters": [
@@ -25574,6 +27218,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional fetch parameters including signal for cancellation"
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 701,
@@ -25610,9 +27262,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 778,
+ "line": 1184,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L778"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1184"
}
],
"type": {
@@ -25634,9 +27286,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 779,
+ "line": 1185,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L779"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1185"
}
],
"type": {
@@ -25654,9 +27306,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 777,
+ "line": 1183,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1183"
}
]
}
@@ -25679,9 +27331,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 782,
+ "line": 1188,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L782"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1188"
}
],
"type": {
@@ -25698,9 +27350,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 783,
+ "line": 1189,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1189"
}
],
"type": {
@@ -25720,9 +27372,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 781,
+ "line": 1187,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1187"
}
]
}
@@ -25745,9 +27397,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 813,
+ "line": 1221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L813"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221"
}
],
"signatures": [
@@ -25764,14 +27416,25 @@
"text": "this method signature might change in the future"
}
],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
+ ],
"modifierTags": ["@experimental"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 813,
+ "line": 1221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L813"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221"
}
],
"parameters": [
@@ -25842,9 +27505,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 818,
+ "line": 1226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L818"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1226"
}
],
"type": {
@@ -25863,9 +27526,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 819,
+ "line": 1227,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L819"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1227"
}
],
"type": {
@@ -25883,9 +27546,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 817,
+ "line": 1225,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1225"
}
]
}
@@ -25908,9 +27571,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 822,
+ "line": 1230,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L822"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1230"
}
],
"type": {
@@ -25927,9 +27590,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 823,
+ "line": 1231,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L823"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1231"
}
],
"type": {
@@ -25949,9 +27612,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 821,
+ "line": 1229,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L821"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1229"
}
]
}
@@ -25974,9 +27637,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 346,
+ "line": 490,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
}
],
"signatures": [
@@ -25992,14 +27655,52 @@
"kind": "text",
"text": "Moves an existing file to a new path in the same bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Move file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .move('public/avatar1.png', 'private/avatar2.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully moved\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 346,
+ "line": 490,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
}
],
"parameters": [
@@ -26109,9 +27810,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 352,
+ "line": 496,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
}
],
"type": {
@@ -26132,9 +27833,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 352,
+ "line": 496,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
}
],
"type": {
@@ -26152,9 +27853,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 352,
+ "line": 496,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
}
]
}
@@ -26169,9 +27870,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 353,
+ "line": 497,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L497"
}
],
"type": {
@@ -26189,9 +27890,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 351,
+ "line": 495,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L351"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L495"
}
]
}
@@ -26214,9 +27915,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 356,
+ "line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
}
],
"type": {
@@ -26233,9 +27934,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 357,
+ "line": 501,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L501"
}
],
"type": {
@@ -26255,9 +27956,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 355,
+ "line": 499,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L355"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L499"
}
]
}
@@ -26280,9 +27981,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 674,
+ "line": 1026,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026"
}
],
"signatures": [
@@ -26298,14 +27999,52 @@
"kind": "text",
"text": "Deletes files within the same bucket"
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of deleted files or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Delete file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .remove(['folder/avatar1.png'])\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [],\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 674,
+ "line": 1026,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026"
}
],
"parameters": [
@@ -26368,9 +28107,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 676,
+ "line": 1028,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L676"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1028"
}
],
"type": {
@@ -26392,9 +28131,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 677,
+ "line": 1029,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L677"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1029"
}
],
"type": {
@@ -26412,9 +28151,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 675,
+ "line": 1027,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L675"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1027"
}
]
}
@@ -26437,9 +28176,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 680,
+ "line": 1032,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L680"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1032"
}
],
"type": {
@@ -26456,9 +28195,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 681,
+ "line": 1033,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L681"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1033"
}
],
"type": {
@@ -26478,9 +28217,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 679,
+ "line": 1031,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L679"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1031"
}
]
}
@@ -26505,9 +28244,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 67,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69"
}
],
"signatures": [
@@ -26523,14 +28262,25 @@
"kind": "text",
"text": "Enable throwing errors instead of returning them."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 67,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69"
}
],
"type": {
@@ -26549,9 +28299,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 852,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L852"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260"
}
],
"signatures": [
@@ -26564,9 +28314,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 852,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L852"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260"
}
],
"parameters": [
@@ -26598,9 +28348,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 312,
+ "line": 436,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436"
}
],
"signatures": [
@@ -26616,14 +28366,62 @@
"kind": "text",
"text": "Replaces an existing file at the specified path with a new one."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file path and id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', avatarFile, {\n cacheControl: '3600',\n upsert: true\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"public/avatar1.png\",\n \"fullPath\": \"avatars/public/avatar1.png\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update file using `ArrayBuffer` from base64 file data",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nimport {decode} from 'base64-arraybuffer'\n\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', decode('base64FileData'), {\n contentType: 'image/png'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 312,
+ "line": 436,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436"
}
],
"parameters": [
@@ -26813,6 +28611,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional file upload options including cacheControl, contentType, upsert, and metadata."
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 664,
@@ -26849,9 +28655,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -26872,9 +28678,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -26891,9 +28697,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -26910,9 +28716,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -26930,9 +28736,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
]
}
@@ -26947,9 +28753,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 329,
+ "line": 453,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L453"
}
],
"type": {
@@ -26967,9 +28773,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 327,
+ "line": 451,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L451"
}
]
}
@@ -26992,9 +28798,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 332,
+ "line": 456,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L456"
}
],
"type": {
@@ -27011,9 +28817,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 333,
+ "line": 457,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L457"
}
],
"type": {
@@ -27033,9 +28839,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 331,
+ "line": 455,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L331"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L455"
}
]
}
@@ -27058,9 +28864,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 175,
+ "line": 215,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215"
}
],
"signatures": [
@@ -27076,14 +28882,62 @@
"kind": "text",
"text": "Uploads a file to an existing bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file path and id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Upload file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .upload('public/avatar1.png', avatarFile, {\n cacheControl: '3600',\n upsert: false\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"public/avatar1.png\",\n \"fullPath\": \"avatars/public/avatar1.png\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Upload file using `ArrayBuffer` from base64 file data",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nimport { decode } from 'base64-arraybuffer'\n\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .upload('public/avatar1.png', decode('base64FileData'), {\n contentType: 'image/png'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 175,
+ "line": 215,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215"
}
],
"parameters": [
@@ -27146,6 +29000,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional file upload options including cacheControl, contentType, upsert, and metadata."
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 664,
@@ -27182,9 +29044,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -27205,9 +29067,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -27224,9 +29086,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -27243,9 +29105,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -27263,9 +29125,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
]
}
@@ -27280,9 +29142,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 182,
+ "line": 222,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L222"
}
],
"type": {
@@ -27300,9 +29162,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 180,
+ "line": 220,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L220"
}
]
}
@@ -27325,9 +29187,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 185,
+ "line": 225,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L225"
}
],
"type": {
@@ -27344,9 +29206,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 186,
+ "line": 226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L226"
}
],
"type": {
@@ -27366,9 +29228,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 184,
+ "line": 224,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L224"
}
]
}
@@ -27391,9 +29253,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 198,
+ "line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
}
],
"signatures": [
@@ -27417,14 +29279,52 @@
"kind": "text",
"text": "."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file path and full path or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Upload to a signed URL",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .uploadToSignedUrl('folder/cat.jpg', 'token-from-createSignedUploadUrl', file)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"folder/cat.jpg\",\n \"fullPath\": \"avatars/folder/cat.jpg\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 198,
+ "line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
}
],
"parameters": [
@@ -27510,6 +29410,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional file upload options including cacheControl and contentType."
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 664,
@@ -27546,9 +29454,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
],
"type": {
@@ -27569,9 +29477,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
],
"type": {
@@ -27589,9 +29497,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
],
"type": {
@@ -27610,9 +29518,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
]
}
@@ -27628,9 +29536,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 235,
+ "line": 298,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L298"
}
],
"type": {
@@ -27649,9 +29557,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 233,
+ "line": 296,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L296"
}
]
}
@@ -27674,9 +29582,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 242,
+ "line": 305,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"type": {
@@ -27694,9 +29602,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 242,
+ "line": 305,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"type": {
@@ -27716,9 +29624,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 242,
+ "line": 305,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
]
}
@@ -27745,12 +29653,24 @@
]
}
],
+ "categories": [
+ {
+ "title": "File Buckets",
+ "children": [
+ 347, 303, 360, 376, 393, 409, 418, 400, 438, 449, 334, 429, 255, 319, 273, 288
+ ]
+ },
+ {
+ "title": "Other",
+ "children": [224, 462]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 45,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L45"
}
]
}
@@ -27766,7 +29686,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
}
]
},
@@ -27795,7 +29715,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"signatures": [
@@ -27810,7 +29730,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"parameters": [
@@ -27833,7 +29753,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"signatures": [
@@ -27848,7 +29768,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"type": {
@@ -27909,7 +29829,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -27943,7 +29863,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"typeParameters": [
@@ -28026,7 +29946,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"signatures": [
@@ -28041,7 +29961,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"parameters": [
@@ -28149,7 +30069,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -28164,7 +30084,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"parameters": [
@@ -28277,7 +30197,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 4,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
}
],
"implementedTypes": [
@@ -28323,7 +30243,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
}
]
}
@@ -28454,7 +30374,7 @@
},
{
"kind": "code",
- "text": "```js\n const { data, error } = await storageClient.listBuckets()\n ```"
+ "text": "```js\n // List all buckets\n const { data, error } = await storageClient.listBuckets()\n\n // List buckets with options (pagination, sorting, search)\n const { data, error } = await storageClient.listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'prod',\n })\n ```"
},
{
"kind": "text",
@@ -29600,39 +31520,39 @@
"qualifiedName": "default.[toStringTag]"
},
"46": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": ""
},
"47": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default"
},
"48": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.__constructor"
},
"49": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default"
},
"50": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "url"
},
"51": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "headers"
},
"52": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"53": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.__index"
},
"55": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "fetch"
},
"56": {
@@ -29664,151 +31584,151 @@
"qualifiedName": "init"
},
"77": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.throwOnError"
},
"78": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.throwOnError"
},
"79": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.createBucket"
},
"80": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.createBucket"
},
"81": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "name"
},
"82": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"83": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"84": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"85": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"86": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"87": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"88": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.listBuckets"
},
"89": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.listBuckets"
},
"90": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "options"
},
"91": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"92": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.limit"
},
"93": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.offset"
},
"94": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.sortColumn"
},
"95": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.sortOrder"
},
"96": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.search"
},
"97": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"98": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"99": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"100": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"101": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"102": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"103": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.deleteBucket"
},
"104": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.deleteBucket"
},
"105": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
- "qualifiedName": "bucketId"
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
+ "qualifiedName": "bucketName"
},
"106": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"107": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"108": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"109": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.message"
},
"110": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"111": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"112": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"113": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"114": {
@@ -31477,7 +33397,7 @@
},
"613": {
"sourceFileName": "src/index.ts",
- "qualifiedName": "StorageAnalyticsApi"
+ "qualifiedName": "StorageAnalyticsClient"
},
"614": {
"sourceFileName": "src/lib/types.ts",
@@ -31553,7 +33473,7 @@
},
"632": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AnalyticBucket.id"
+ "qualifiedName": "AnalyticBucket.name"
},
"633": {
"sourceFileName": "src/lib/types.ts",
@@ -33564,7 +35484,7 @@
"entries": {
"1": "src/index.ts",
"2": "src/packages/BlobDownloadBuilder.ts",
- "3": "src/packages/StorageAnalyticsApi.ts",
+ "3": "src/packages/StorageAnalyticsClient.ts",
"4": "src/packages/StorageBucketApi.ts",
"5": "src/packages/StorageFileApi.ts",
"6": "src/packages/StreamDownloadBuilder.ts",
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/storage_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/storage_dereferenced.json
index fc2a0381ef264..8b5a87ac18d30 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/storage_dereferenced.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/storage_dereferenced.json
@@ -46,7 +46,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 67,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L67"
}
],
"type": {
@@ -73,7 +73,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L73"
}
],
"type": {
@@ -100,7 +100,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L69"
}
],
"type": {
@@ -127,7 +127,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L75"
}
],
"type": {
@@ -154,7 +154,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L77"
}
],
"type": {
@@ -181,7 +181,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L71"
}
],
"type": {
@@ -201,7 +201,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 65,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L65"
}
]
},
@@ -223,7 +223,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18"
}
],
"signatures": [
@@ -238,7 +238,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L18"
}
],
"parameters": [
@@ -306,7 +306,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L15"
}
],
"type": {
@@ -325,7 +325,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L16"
}
],
"type": {
@@ -344,7 +344,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25"
}
],
"signatures": [
@@ -359,7 +359,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L25"
}
],
"type": {
@@ -382,7 +382,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 28,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L28"
}
],
"type": {
@@ -402,7 +402,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 27,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L27"
}
],
"type": {
@@ -422,7 +422,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 29,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L29"
}
],
"type": {
@@ -442,7 +442,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 30,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L30"
}
],
"type": {
@@ -463,7 +463,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 26,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L26"
}
]
}
@@ -491,7 +491,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 14,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L14"
}
],
"extendedTypes": [
@@ -519,9 +519,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 25,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"signatures": [
@@ -539,6 +539,15 @@
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
{
"tag": "@example",
"content": [
@@ -553,9 +562,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 25,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L26"
}
],
"parameters": [
@@ -587,9 +596,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 27,
+ "line": 28,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"indexSignatures": [
@@ -602,9 +611,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 27,
+ "line": 28,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L28"
}
],
"parameters": [
@@ -895,9 +904,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 76,
+ "line": 90,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90"
}
],
"getSignature": {
@@ -910,16 +919,25 @@
"summary": [
{
"kind": "text",
- "text": "Access analytics storage operations using Iceberg tables."
+ "text": "Access analytics storage operations using Iceberg tables.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
{
"kind": "text",
- "text": "A StorageAnalyticsApi instance configured with the current storage settings."
+ "text": "A StorageAnalyticsClient instance configured with the current storage settings."
}
]
},
@@ -937,15 +955,15 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 76,
+ "line": 90,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L90"
}
],
"type": {
"type": "reference",
"target": 47,
- "name": "StorageAnalyticsApi",
+ "name": "StorageAnalyticsClient",
"package": "@supabase/storage-js",
"qualifiedName": "default"
}
@@ -960,9 +978,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 50,
+ "line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"getSignature": {
@@ -975,10 +993,19 @@
"summary": [
{
"kind": "text",
- "text": "Access vector storage operations.\n\n**Private alpha:** This API is part of a private alpha release and may change or be removed without notice."
+ "text": "Access vector storage operations.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -988,14 +1015,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 50,
+ "line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L61"
}
],
"type": {
@@ -1017,9 +1045,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"signatures": [
@@ -1039,12 +1067,39 @@
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
{
"kind": "text",
- "text": "newly created bucket id"
+ "text": "Promise with newly created bucket id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .createBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"name\": \"avatars\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -1053,9 +1108,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"parameters": [
@@ -1112,9 +1167,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 125,
+ "line": 206,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206"
}
],
"type": {
@@ -1153,9 +1208,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 124,
+ "line": 205,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205"
}
],
"type": {
@@ -1193,9 +1248,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 123,
+ "line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204"
}
],
"type": {
@@ -1234,9 +1289,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 126,
+ "line": 207,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207"
}
],
"type": {
@@ -1256,9 +1311,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 122,
+ "line": 203,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203"
}
]
}
@@ -1294,9 +1349,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 132,
+ "line": 213,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213"
}
],
"type": {
@@ -1330,9 +1385,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 133,
+ "line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214"
}
],
"type": {
@@ -1350,9 +1405,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 131,
+ "line": 212,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212"
}
]
}
@@ -1375,9 +1430,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 136,
+ "line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217"
}
],
"type": {
@@ -1394,9 +1449,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 137,
+ "line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218"
}
],
"type": {
@@ -1416,9 +1471,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 135,
+ "line": 216,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216"
}
]
}
@@ -1453,9 +1508,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"signatures": [
@@ -1481,14 +1536,52 @@
"kind": "text",
"text": " the bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Delete bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .deleteBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully deleted\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"parameters": [
@@ -1540,9 +1633,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -1563,9 +1656,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -1583,9 +1676,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
]
}
@@ -1600,9 +1693,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 266,
+ "line": 408,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408"
}
],
"type": {
@@ -1620,9 +1713,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 264,
+ "line": 406,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406"
}
]
}
@@ -1645,9 +1738,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 269,
+ "line": 411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411"
}
],
"type": {
@@ -1664,9 +1757,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 270,
+ "line": 412,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412"
}
],
"type": {
@@ -1686,9 +1779,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 268,
+ "line": 410,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410"
}
]
}
@@ -1723,9 +1816,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"signatures": [
@@ -1743,14 +1836,52 @@
"kind": "text",
"text": "Removes all objects inside a single bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Empty bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .emptyBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully emptied\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"parameters": [
@@ -1802,9 +1933,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -1825,9 +1956,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -1845,9 +1976,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
]
}
@@ -1862,9 +1993,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 230,
+ "line": 353,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353"
}
],
"type": {
@@ -1882,9 +2013,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 228,
+ "line": 351,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351"
}
]
}
@@ -1907,9 +2038,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 233,
+ "line": 356,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356"
}
],
"type": {
@@ -1926,9 +2057,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 234,
+ "line": 357,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357"
}
],
"type": {
@@ -1948,9 +2079,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 232,
+ "line": 355,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355"
}
]
}
@@ -1983,9 +2114,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 39,
+ "line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"signatures": [
@@ -2001,14 +2132,34 @@
"kind": "text",
"text": "Perform file operation in a bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst avatars = storage.from('avatars')\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 39,
+ "line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L46"
}
],
"parameters": [
@@ -2053,9 +2204,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"signatures": [
@@ -2073,14 +2224,52 @@
"kind": "text",
"text": "Retrieves the details of an existing Storage bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with bucket details or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Get bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .getBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"id\": \"avatars\",\n \"name\": \"avatars\",\n \"owner\": \"\",\n \"public\": false,\n \"file_size_limit\": 1024,\n \"allowed_mime_types\": [\n \"image/png\"\n ],\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"parameters": [
@@ -2132,9 +2321,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 82,
+ "line": 141,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141"
}
],
"type": {
@@ -2153,9 +2342,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 83,
+ "line": 142,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142"
}
],
"type": {
@@ -2173,9 +2362,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 81,
+ "line": 140,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140"
}
]
}
@@ -2198,9 +2387,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 86,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145"
}
],
"type": {
@@ -2217,9 +2406,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 87,
+ "line": 146,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146"
}
],
"type": {
@@ -2239,9 +2428,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 85,
+ "line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144"
}
]
}
@@ -2276,9 +2465,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"signatures": [
@@ -2296,14 +2485,54 @@
"kind": "text",
"text": "Retrieves the details of all Storage buckets within an existing project."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of buckets or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets()\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets with options",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'prod'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"parameters": [
@@ -2315,11 +2544,51 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Query parameters for listing buckets"
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 625,
"name": "ListBucketOptions",
- "package": "@supabase/storage-js"
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "limit": [
+ {
+ "kind": "text",
+ "text": "Maximum number of buckets to return"
+ }
+ ],
+ "offset": [
+ {
+ "kind": "text",
+ "text": "Number of buckets to skip"
+ }
+ ],
+ "sortColumn": [
+ {
+ "kind": "text",
+ "text": "Column to sort by ('id', 'name', 'created_at', 'updated_at')"
+ }
+ ],
+ "sortOrder": [
+ {
+ "kind": "text",
+ "text": "Sort order ('asc' or 'desc')"
+ }
+ ],
+ "search": [
+ {
+ "kind": "text",
+ "text": "Search term to filter bucket names"
+ }
+ ]
+ }
}
}
],
@@ -2351,9 +2620,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 49,
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
}
],
"type": {
@@ -2375,9 +2644,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 50,
+ "line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
}
],
"type": {
@@ -2395,9 +2664,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 48,
+ "line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79"
}
]
}
@@ -2420,9 +2689,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 53,
+ "line": 84,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84"
}
],
"type": {
@@ -2439,9 +2708,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 54,
+ "line": 85,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
}
],
"type": {
@@ -2461,9 +2730,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 52,
+ "line": 83,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
}
]
}
@@ -2499,9 +2768,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"signatures": [
@@ -2519,14 +2788,25 @@
"kind": "text",
"text": "Enable throwing errors instead of returning them."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"type": {
@@ -2557,9 +2837,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"signatures": [
@@ -2577,14 +2857,52 @@
"kind": "text",
"text": "Updates a Storage bucket"
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .updateBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully updated\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"parameters": [
@@ -2641,9 +2959,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 184,
+ "line": 288,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288"
}
],
"type": {
@@ -2682,9 +3000,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 183,
+ "line": 287,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287"
}
],
"type": {
@@ -2722,9 +3040,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 182,
+ "line": 286,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286"
}
],
"type": {
@@ -2742,9 +3060,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 181,
+ "line": 285,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285"
}
]
}
@@ -2779,9 +3097,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -2802,9 +3120,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -2822,9 +3140,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
]
}
@@ -2839,9 +3157,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 189,
+ "line": 293,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293"
}
],
"type": {
@@ -2859,9 +3177,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 187,
+ "line": 291,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291"
}
]
}
@@ -2884,9 +3202,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 192,
+ "line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"type": {
@@ -2903,9 +3221,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 193,
+ "line": 297,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
],
"type": {
@@ -2925,9 +3243,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 191,
+ "line": 295,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295"
}
]
}
@@ -2966,12 +3284,26 @@
"children": [558, 600, 589, 517, 549, 540, 538, 573]
}
],
+ "categories": [
+ {
+ "title": "Analytics Buckets",
+ "children": [522]
+ },
+ {
+ "title": "File Buckets",
+ "children": [501, 558, 600, 589, 517, 549, 540, 538, 573]
+ },
+ {
+ "title": "Vector Buckets",
+ "children": [520]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 11,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L11"
}
],
"extendedTypes": [
@@ -3001,7 +3333,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 4,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4"
}
],
"signatures": [
@@ -3016,7 +3348,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 4,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L4"
}
],
"parameters": [
@@ -3063,7 +3395,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 1,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L1"
}
],
"extendedTypes": [
@@ -3108,7 +3440,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38"
}
],
"signatures": [
@@ -3123,7 +3455,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L38"
}
],
"parameters": [
@@ -3180,7 +3512,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L36"
}
],
"type": {
@@ -3204,7 +3536,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L35"
}
],
"extendedTypes": [
@@ -3242,7 +3574,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
}
],
"signatures": [
@@ -3257,7 +3589,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 30,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
}
],
"parameters": [
@@ -3325,7 +3657,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L27"
}
],
"type": {
@@ -3344,7 +3676,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L28"
}
],
"type": {
@@ -3363,7 +3695,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
}
],
"signatures": [
@@ -3378,7 +3710,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
}
],
"type": {
@@ -3401,7 +3733,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 40,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L40"
}
],
"type": {
@@ -3421,7 +3753,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 39,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L39"
}
],
"type": {
@@ -3441,7 +3773,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 41,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L41"
}
],
"type": {
@@ -3461,7 +3793,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 42,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L42"
}
],
"type": {
@@ -3482,7 +3814,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 38,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L38"
}
]
}
@@ -3510,7 +3842,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 26,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L26"
}
],
"extendedTypes": [
@@ -3532,7 +3864,7 @@
"summary": [
{
"kind": "text",
- "text": "Main client for interacting with S3 Vectors API\nProvides access to bucket, index, and vector data operations\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible.\n\n**Usage Patterns:**\n\n1. **Via StorageClient (recommended for most use cases):**\n"
+ "text": "Main client for interacting with S3 Vectors API\nProvides access to bucket, index, and vector data operations\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type.\n\n**Usage Patterns:**\n\n1. **Via StorageClient (recommended for most use cases):**\n"
},
{
"kind": "code",
@@ -3546,7 +3878,8 @@
"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```"
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -3558,9 +3891,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 98,
+ "line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112"
}
],
"signatures": [
@@ -3574,16 +3907,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a StorageVectorsClient that can manage buckets, indexes, and vectors.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a StorageVectorsClient that can manage buckets, indexes, and vectors.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new StorageVectorsClient(url, options)\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 98,
+ "line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112"
}
],
"parameters": [
@@ -3681,9 +4035,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"signatures": [
@@ -3699,10 +4053,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -3754,14 +4117,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"parameters": [
@@ -3832,9 +4196,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"signatures": [
@@ -3850,10 +4214,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -3905,14 +4278,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"parameters": [
@@ -3981,9 +4355,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 127,
+ "line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145"
}
],
"signatures": [
@@ -3997,10 +4371,19 @@
"summary": [
{
"kind": "text",
- "text": "Access operations for a specific vector bucket\nReturns a scoped client for index and vector operations within the bucket\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Access operations for a specific vector bucket\nReturns a scoped client for index and vector operations within the bucket\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -4019,14 +4402,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 127,
+ "line": 145,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L127"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L145"
}
],
"parameters": [
@@ -4070,9 +4454,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"signatures": [
@@ -4088,10 +4472,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -4135,14 +4528,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"parameters": [
@@ -4195,9 +4589,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"type": {
@@ -4217,9 +4611,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
]
}
@@ -4256,9 +4650,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"signatures": [
@@ -4274,10 +4668,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -4313,14 +4716,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"parameters": [
@@ -4417,9 +4821,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"signatures": [
@@ -4435,10 +4839,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -4457,14 +4870,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"type": {
@@ -4495,12 +4909,18 @@
"children": [776, 787, 757, 779, 784, 774]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [753, 776, 787, 757, 779, 784, 774]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 88,
+ "line": 94,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L94"
}
],
"extendedTypes": [
@@ -4538,7 +4958,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
}
],
"signatures": [
@@ -4553,7 +4973,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
}
],
"parameters": [
@@ -4600,7 +5020,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 4,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L4"
}
],
"extendedTypes": [
@@ -4653,7 +5073,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 54,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
}
],
"signatures": [
@@ -4668,7 +5088,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 54,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
}
],
"parameters": [
@@ -4725,7 +5145,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L52"
}
],
"type": {
@@ -4749,7 +5169,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 51,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L51"
}
],
"extendedTypes": [
@@ -4771,9 +5191,10 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector buckets\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "API class for managing Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector buckets\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -4785,9 +5206,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"signatures": [
@@ -4801,10 +5222,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new VectorBucketApi instance\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new VectorBucketApi instance\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@example",
"content": [
@@ -4814,14 +5244,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"parameters": [
@@ -4869,9 +5300,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"indexSignatures": [
@@ -4884,9 +5315,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 37,
+ "line": 45,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L45"
}
],
"parameters": [
@@ -5161,9 +5592,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"signatures": [
@@ -5177,10 +5608,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -5232,14 +5672,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 84,
+ "line": 100,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L100"
}
],
"parameters": [
@@ -5298,9 +5739,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"signatures": [
@@ -5314,10 +5755,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -5369,14 +5819,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 215,
+ "line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L243"
}
],
"parameters": [
@@ -5435,9 +5886,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"signatures": [
@@ -5451,10 +5902,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -5498,14 +5958,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"parameters": [
@@ -5558,9 +6019,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
],
"type": {
@@ -5580,9 +6041,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 125,
+ "line": 145,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L145"
}
]
}
@@ -5607,9 +6068,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"signatures": [
@@ -5623,10 +6084,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -5662,14 +6132,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 173,
+ "line": 197,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L197"
}
],
"parameters": [
@@ -5755,9 +6226,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"signatures": [
@@ -5771,10 +6242,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -5793,14 +6273,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 57,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L69"
}
],
"type": {
@@ -5821,12 +6302,18 @@
"children": [937, 948, 940, 945, 935]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [906, 937, 948, 940, 945, 935]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
- "line": 18,
+ "line": 21,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L21"
}
],
"extendedBy": [
@@ -5847,9 +6334,10 @@
"summary": [
{
"kind": "text",
- "text": "Scoped client for operations within a specific vector bucket\nProvides index management and access to vector operations\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Scoped client for operations within a specific vector bucket\nProvides index management and access to vector operations\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -5861,9 +6349,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 146,
+ "line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175"
}
],
"signatures": [
@@ -5877,16 +6365,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a helper that automatically scopes all index operations to the provided bucket.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a helper that automatically scopes all index operations to the provided bucket.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 146,
+ "line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175"
}
],
"parameters": [
@@ -5918,9 +6427,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 148,
+ "line": 177,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177"
}
],
"indexSignatures": [
@@ -5933,9 +6442,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 148,
+ "line": 177,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L177"
}
],
"parameters": [
@@ -6221,9 +6730,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 179,
+ "line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212"
}
],
"signatures": [
@@ -6237,10 +6746,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6259,14 +6777,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 179,
+ "line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L212"
}
],
"parameters": [
@@ -6352,9 +6871,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 243,
+ "line": 288,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288"
}
],
"signatures": [
@@ -6368,10 +6887,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes an index from this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes an index from this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6390,14 +6918,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 243,
+ "line": 288,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L288"
}
],
"parameters": [
@@ -6466,9 +6995,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 224,
+ "line": 265,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265"
}
],
"signatures": [
@@ -6482,10 +7011,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific index in this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6504,14 +7042,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 224,
+ "line": 265,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L265"
}
],
"parameters": [
@@ -6564,9 +7103,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
],
"type": {
@@ -6586,9 +7125,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
]
}
@@ -6623,9 +7162,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 274,
+ "line": 323,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323"
}
],
"signatures": [
@@ -6639,10 +7178,19 @@
"summary": [
{
"kind": "text",
- "text": "Access operations for a specific index within this bucket\nReturns a scoped client for vector data operations\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Access operations for a specific index within this bucket\nReturns a scoped client for vector data operations\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6661,14 +7209,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 274,
+ "line": 323,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L323"
}
],
"parameters": [
@@ -6710,9 +7259,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 201,
+ "line": 238,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238"
}
],
"signatures": [
@@ -6726,10 +7275,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6748,14 +7306,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 201,
+ "line": 238,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L238"
}
],
"parameters": [
@@ -6847,9 +7406,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"signatures": [
@@ -6865,10 +7424,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -6887,14 +7455,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"type": {
@@ -6925,12 +7494,18 @@
"children": [808, 819, 814, 822, 811, 839]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [791, 808, 819, 814, 822, 811, 839]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 138,
+ "line": 159,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L159"
}
],
"extendedTypes": [
@@ -6952,9 +7527,10 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Vector Data within Vector Indexes\nProvides methods for inserting, querying, listing, and deleting vector embeddings\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "API class for managing Vector Data within Vector Indexes\nProvides methods for inserting, querying, listing, and deleting vector embeddings\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -6966,9 +7542,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"signatures": [
@@ -6982,16 +7558,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a VectorDataApi bound to a Storage Vectors deployment.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a VectorDataApi bound to a Storage Vectors deployment.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorDataApi(url, headers)\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"parameters": [
@@ -7039,9 +7636,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"indexSignatures": [
@@ -7054,9 +7651,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 38,
+ "line": 50,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L50"
}
],
"parameters": [
@@ -7339,9 +7936,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 343,
+ "line": 379,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379"
}
],
"signatures": [
@@ -7355,10 +7952,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes vectors by their keys in batch\nAccepts 1-500 keys per request\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes vectors by their keys in batch\nAccepts 1-500 keys per request\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -7402,14 +8008,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 343,
+ "line": 379,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L379"
}
],
"parameters": [
@@ -7490,9 +8097,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 155,
+ "line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179"
}
],
"signatures": [
@@ -7506,10 +8113,19 @@
"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\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -7553,14 +8169,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 155,
+ "line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L179"
}
],
"parameters": [
@@ -7655,9 +8272,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 225,
+ "line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253"
}
],
"signatures": [
@@ -7671,10 +8288,19 @@
"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\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -7718,14 +8344,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 225,
+ "line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L253"
}
],
"parameters": [
@@ -7838,9 +8465,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 100,
+ "line": 120,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120"
}
],
"signatures": [
@@ -7854,10 +8481,19 @@
"summary": [
{
"kind": "text",
- "text": "Inserts or updates vectors in batch (upsert operation)\nAccepts 1-500 vectors per request. Larger batches should be split\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Inserts or updates vectors in batch (upsert operation)\nAccepts 1-500 vectors per request. Larger batches should be split\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -7909,14 +8545,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 100,
+ "line": 120,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L120"
}
],
"parameters": [
@@ -7997,9 +8634,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 298,
+ "line": 330,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330"
}
],
"signatures": [
@@ -8013,10 +8650,19 @@
"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)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "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)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -8060,14 +8706,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 298,
+ "line": 330,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L330"
}
],
"parameters": [
@@ -8176,9 +8823,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"signatures": [
@@ -8192,10 +8839,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -8214,14 +8870,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"type": {
@@ -8242,12 +8899,18 @@
"children": [1043, 1034, 1037, 1031, 1040, 1029]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [1000, 1043, 1034, 1037, 1031, 1040, 1029]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 23,
+ "line": 26,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L26"
}
],
"extendedBy": [
@@ -8268,9 +8931,10 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Vector Indexes within Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector indexes\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "API class for managing Vector Indexes within Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector indexes\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -8282,9 +8946,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"signatures": [
@@ -8298,16 +8962,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates an API client for managing vector indexes.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates an API client for managing vector indexes.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"parameters": [
@@ -8355,9 +9040,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"indexSignatures": [
@@ -8370,9 +9055,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 50,
+ "line": 65,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L65"
}
],
"parameters": [
@@ -8655,9 +9340,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 110,
+ "line": 133,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133"
}
],
"signatures": [
@@ -8671,10 +9356,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new vector index within a bucket\nDefines the schema for vectors including dimensionality, distance metric, and metadata config\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a new vector index within a bucket\nDefines the schema for vectors including dimensionality, distance metric, and metadata config\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -8734,14 +9428,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 110,
+ "line": 133,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L133"
}
],
"parameters": [
@@ -8840,9 +9535,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 249,
+ "line": 284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284"
}
],
"signatures": [
@@ -8856,10 +9551,19 @@
"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\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes a vector index and all its data\nThis operation removes the index schema and all vectors stored in the index\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -8903,14 +9607,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 249,
+ "line": 284,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L284"
}
],
"parameters": [
@@ -8988,9 +9693,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 150,
+ "line": 177,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177"
}
],
"signatures": [
@@ -9004,10 +9709,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves metadata for a specific vector index\nReturns index configuration including dimension, distance metric, and metadata settings\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves metadata for a specific vector index\nReturns index configuration including dimension, distance metric, and metadata settings\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -9051,14 +9765,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 150,
+ "line": 177,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L177"
}
],
"parameters": [
@@ -9130,9 +9845,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
],
"type": {
@@ -9152,9 +9867,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 153,
+ "line": 180,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L180"
}
]
}
@@ -9179,9 +9894,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 209,
+ "line": 240,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240"
}
],
"signatures": [
@@ -9195,10 +9910,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vector indexes within a bucket with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vector indexes within a bucket with optional filtering and pagination\nSupports prefix-based filtering and paginated results\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -9242,14 +9966,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 209,
+ "line": 240,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L240"
}
],
"parameters": [
@@ -9340,9 +10065,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"signatures": [
@@ -9356,10 +10081,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -9378,14 +10112,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 70,
+ "line": 89,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L89"
}
],
"type": {
@@ -9406,12 +10141,18 @@
"children": [983, 995, 986, 992, 981]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [952, 983, 995, 986, 992, 981]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 35,
+ "line": 41,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L41"
}
],
"extendedBy": [
@@ -9432,9 +10173,10 @@
"summary": [
{
"kind": "text",
- "text": "Scoped client for operations within a specific vector index\nProvides vector data operations (put, get, list, query, delete)\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Scoped client for operations within a specific vector index\nProvides vector data operations (put, get, list, query, delete)\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -9446,9 +10188,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 300,
+ "line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
}
],
"signatures": [
@@ -9462,16 +10204,37 @@
"summary": [
{
"kind": "text",
- "text": "Creates a helper that automatically scopes all vector operations to the provided bucket/index names.\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Creates a helper that automatically scopes all vector operations to the provided bucket/index names.\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\n```"
+ }
+ ]
+ }
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 300,
+ "line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
}
],
"parameters": [
@@ -9503,9 +10266,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 302,
+ "line": 363,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363"
}
],
"indexSignatures": [
@@ -9518,9 +10281,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 302,
+ "line": 363,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L363"
}
],
"parameters": [
@@ -9817,9 +10580,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 445,
+ "line": 526,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526"
}
],
"signatures": [
@@ -9833,10 +10596,19 @@
"summary": [
{
"kind": "text",
- "text": "Deletes vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Deletes vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -9855,14 +10627,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 445,
+ "line": 526,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L526"
}
],
"parameters": [
@@ -9957,9 +10730,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 361,
+ "line": 430,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430"
}
],
"signatures": [
@@ -9973,10 +10746,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Retrieves vectors by keys from this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -9995,14 +10777,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 361,
+ "line": 430,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L430"
}
],
"parameters": [
@@ -10099,9 +10882,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 387,
+ "line": 460,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460"
}
],
"signatures": [
@@ -10115,10 +10898,19 @@
"summary": [
{
"kind": "text",
- "text": "Lists vectors in this index with pagination\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Lists vectors in this index with pagination\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -10137,14 +10929,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 387,
+ "line": 460,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L387"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L460"
}
],
"parameters": [
@@ -10242,9 +11035,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 335,
+ "line": 400,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400"
}
],
"signatures": [
@@ -10258,10 +11051,19 @@
"summary": [
{
"kind": "text",
- "text": "Inserts or updates vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Inserts or updates vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -10280,14 +11082,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 335,
+ "line": 400,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L400"
}
],
"parameters": [
@@ -10382,9 +11185,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 418,
+ "line": 495,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495"
}
],
"signatures": [
@@ -10398,10 +11201,19 @@
"summary": [
{
"kind": "text",
- "text": "Queries for similar vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Queries for similar vectors in this index\nConvenience method that automatically includes bucket and index names\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -10420,14 +11232,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 418,
+ "line": 495,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L495"
}
],
"parameters": [
@@ -10527,9 +11340,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"signatures": [
@@ -10545,10 +11358,19 @@
"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 }\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Vector Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -10567,14 +11389,15 @@
}
]
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
- "line": 58,
+ "line": 74,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L74"
}
],
"type": {
@@ -10605,12 +11428,18 @@
"children": [873, 864, 867, 861, 870, 890]
}
],
+ "categories": [
+ {
+ "title": "Vector Buckets",
+ "children": [842, 873, 864, 867, 861, 870, 890]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 291,
+ "line": 343,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L343"
}
],
"extendedTypes": [
@@ -10656,7 +11485,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 42,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L42"
}
],
"type": {
@@ -10683,7 +11512,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L40"
}
],
"type": {
@@ -10693,7 +11522,7 @@
},
{
"id": 632,
- "name": "id",
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -10710,7 +11539,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L36"
}
],
"type": {
@@ -10737,7 +11566,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L38"
}
],
"type": {
@@ -10764,7 +11593,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 44,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -10784,7 +11613,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 34,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L34"
}
]
},
@@ -10808,7 +11637,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L16"
}
],
"type": {
@@ -10830,7 +11659,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L17"
}
],
"type": {
@@ -10851,7 +11680,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L15"
}
],
"type": {
@@ -10870,7 +11699,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L11"
}
],
"type": {
@@ -10889,7 +11718,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L13"
}
],
"type": {
@@ -10908,7 +11737,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L14"
}
],
"type": {
@@ -10927,7 +11756,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L19"
}
],
"type": {
@@ -10948,7 +11777,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L12"
}
],
"type": {
@@ -10969,7 +11798,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -10989,7 +11818,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 10,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L10"
}
]
},
@@ -11003,9 +11832,10 @@
"summary": [
{
"kind": "text",
- "text": "Options for creating a vector index\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Options for creating a vector index\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -11014,12 +11844,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 23,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26"
}
],
"type": {
@@ -11033,12 +11867,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 24,
+ "line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L27"
}
],
"type": {
@@ -11052,12 +11890,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 25,
+ "line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L28"
}
],
"type": {
@@ -11073,12 +11915,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 22,
+ "line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L25"
}
],
"type": {
@@ -11094,12 +11940,16 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 26,
+ "line": 29,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L29"
}
],
"type": {
@@ -11115,12 +11965,16 @@
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@alpha"]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 21,
+ "line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24"
}
],
"type": {
@@ -11138,9 +11992,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
- "line": 20,
+ "line": 23,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23"
}
]
},
@@ -11178,7 +12032,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 196,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L196"
}
],
"type": {
@@ -11205,7 +12059,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L197"
}
],
"type": {
@@ -11235,7 +12089,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L195"
}
],
"type": {
@@ -11255,7 +12109,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 194,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L194"
}
]
},
@@ -11279,7 +12133,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L112"
}
],
"type": {
@@ -11299,7 +12153,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 111,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L111"
}
]
},
@@ -11339,7 +12193,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L9"
}
],
"type": {
@@ -11368,7 +12222,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L10"
}
],
"type": {
@@ -11388,7 +12242,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 8,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L8"
}
]
},
@@ -11426,7 +12280,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 291,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L291"
}
],
"type": {
@@ -11453,7 +12307,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L292"
}
],
"type": {
@@ -11475,7 +12329,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 290,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L290"
}
]
},
@@ -11515,7 +12369,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
}
],
"type": {
@@ -11531,7 +12385,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
}
],
"indexSignatures": [
@@ -11546,7 +12400,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 14,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L14"
}
],
"parameters": [
@@ -11592,7 +12446,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L16"
}
],
"type": {
@@ -11612,7 +12466,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 12,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L12"
}
]
},
@@ -11644,7 +12498,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 204,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L204"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L204"
}
],
"type": {
@@ -11669,7 +12523,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 200,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L200"
}
]
},
@@ -11691,7 +12545,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 49,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L49"
}
],
"type": {
@@ -11710,7 +12564,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L57"
}
],
"type": {
@@ -11731,7 +12585,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 53,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L53"
}
],
"type": {
@@ -11750,7 +12604,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 51,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L51"
}
],
"type": {
@@ -11778,7 +12632,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L55"
}
],
"type": {
@@ -11797,7 +12651,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L56"
}
],
"type": {
@@ -11831,7 +12685,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L48"
}
],
"type": {
@@ -11850,7 +12704,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 50,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L50"
}
],
"type": {
@@ -11869,7 +12723,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L52"
}
],
"type": {
@@ -11889,7 +12743,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 47,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L47"
}
]
},
@@ -11911,7 +12765,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L64"
}
],
"type": {
@@ -11932,7 +12786,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L70"
}
],
"type": {
@@ -11953,7 +12807,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L71"
}
],
"type": {
@@ -11972,7 +12826,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L66"
}
],
"type": {
@@ -11993,7 +12847,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -12012,7 +12866,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L61"
}
],
"type": {
@@ -12040,7 +12894,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 68,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L68"
}
],
"type": {
@@ -12061,7 +12915,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L73"
}
],
"type": {
@@ -12082,7 +12936,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L74"
}
],
"type": {
@@ -12116,7 +12970,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L63"
}
],
"type": {
@@ -12137,7 +12991,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L69"
}
],
"type": {
@@ -12156,7 +13010,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 65,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L65"
}
],
"type": {
@@ -12175,7 +13029,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L62"
}
],
"type": {
@@ -12195,7 +13049,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 60,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L60"
}
]
},
@@ -12235,7 +13089,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L86"
}
],
"type": {
@@ -12312,7 +13166,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L90"
}
],
"type": {
@@ -12341,7 +13195,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -12370,7 +13224,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L108"
}
],
"type": {
@@ -12414,7 +13268,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L103"
}
],
"type": {
@@ -12458,7 +13312,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -12478,7 +13332,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 82,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L82"
}
]
},
@@ -12516,7 +13370,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 162,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L162"
}
],
"type": {
@@ -12543,7 +13397,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L163"
}
],
"type": {
@@ -12575,7 +13429,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L164"
}
],
"type": {
@@ -12604,7 +13458,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L165"
}
],
"type": {
@@ -12631,7 +13485,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L161"
}
],
"type": {
@@ -12651,7 +13505,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 160,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L160"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L160"
}
]
},
@@ -12689,7 +13543,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L173"
}
],
"type": {
@@ -12714,7 +13568,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 172,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L172"
}
]
},
@@ -12738,7 +13592,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L23"
}
],
"type": {
@@ -12759,7 +13613,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L24"
}
],
"type": {
@@ -12780,7 +13634,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L27"
}
],
"type": {
@@ -12801,7 +13655,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L25"
}
],
"type": {
@@ -12839,7 +13693,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L26"
}
],
"type": {
@@ -12868,7 +13722,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L22"
}
]
},
@@ -12908,7 +13762,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 138,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L138"
}
],
"type": {
@@ -12937,7 +13791,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L139"
}
],
"type": {
@@ -12966,7 +13820,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L137"
}
],
"type": {
@@ -12993,7 +13847,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 136,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L136"
}
],
"type": {
@@ -13013,7 +13867,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 135,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L135"
}
]
},
@@ -13051,7 +13905,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148"
}
],
"type": {
@@ -13076,7 +13930,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 148,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148"
}
],
"type": {
@@ -13096,7 +13950,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 148,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L148"
}
]
}
@@ -13124,7 +13978,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 149,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L149"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L149"
}
],
"type": {
@@ -13144,7 +13998,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 147,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L147"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L147"
}
]
},
@@ -13184,7 +14038,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L114"
}
],
"type": {
@@ -13213,7 +14067,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L115"
}
],
"type": {
@@ -13242,7 +14096,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L113"
}
],
"type": {
@@ -13262,7 +14116,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 112,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L112"
}
]
},
@@ -13302,7 +14156,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L125"
}
],
"type": {
@@ -13329,7 +14183,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 124,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
],
"type": {
@@ -13354,7 +14208,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 124,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
],
"type": {
@@ -13374,7 +14228,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 124,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
]
}
@@ -13393,7 +14247,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 123,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L123"
}
]
},
@@ -13431,7 +14285,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 214,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L214"
}
],
"type": {
@@ -13460,7 +14314,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L215"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L215"
}
],
"type": {
@@ -13489,7 +14343,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L216"
}
],
"type": {
@@ -13518,7 +14372,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 217,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L217"
}
],
"type": {
@@ -13547,7 +14401,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 218,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L218"
}
],
"type": {
@@ -13576,7 +14430,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L219"
}
],
"type": {
@@ -13605,7 +14459,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 220,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L220"
}
],
"type": {
@@ -13632,7 +14486,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 213,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L213"
}
],
"type": {
@@ -13652,7 +14506,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L212"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L212"
}
]
},
@@ -13692,7 +14546,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L230"
}
],
"type": {
@@ -13719,7 +14573,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 229,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L229"
}
],
"type": {
@@ -13744,7 +14598,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 228,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L228"
}
]
},
@@ -13766,7 +14620,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L209"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L209"
}
],
"type": {
@@ -13786,7 +14640,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 208,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L208"
}
]
},
@@ -13826,7 +14680,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L31"
}
],
"type": {
@@ -13849,7 +14703,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 30,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L30"
}
]
},
@@ -13887,7 +14741,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L184"
}
],
"type": {
@@ -13914,7 +14768,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L183"
}
],
"type": {
@@ -13941,7 +14795,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 185,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L185"
}
],
"type": {
@@ -13966,7 +14820,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 182,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L182"
}
]
},
@@ -14006,7 +14860,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L254"
}
],
"type": {
@@ -14035,7 +14889,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 251,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L251"
}
],
"type": {
@@ -14062,7 +14916,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 252,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L252"
}
],
"type": {
@@ -14093,7 +14947,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 255,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L255"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L255"
}
],
"type": {
@@ -14122,7 +14976,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 256,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L256"
}
],
"type": {
@@ -14151,7 +15005,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 253,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L253"
}
],
"type": {
@@ -14178,7 +15032,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L250"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L250"
}
],
"type": {
@@ -14198,7 +15052,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 249,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L249"
}
]
},
@@ -14236,7 +15090,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L264"
}
],
"type": {
@@ -14261,7 +15115,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 263,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L263"
}
]
},
@@ -14304,7 +15158,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L120"
}
],
"type": {
@@ -14333,7 +15187,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L125"
}
],
"type": {
@@ -14362,7 +15216,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L135"
}
],
"type": {
@@ -14391,7 +15245,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L130"
}
],
"type": {
@@ -14413,7 +15267,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 115,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L115"
}
]
},
@@ -14435,7 +15289,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L183"
}
],
"type": {
@@ -14454,7 +15308,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L179"
}
],
"type": {
@@ -14473,7 +15327,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L180"
}
],
"type": {
@@ -14501,7 +15355,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 188,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L188"
}
],
"type": {
@@ -14520,7 +15374,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L184"
}
],
"type": {
@@ -14554,7 +15408,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L181"
}
],
"type": {
@@ -14573,7 +15427,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L182"
}
],
"type": {
@@ -14593,7 +15447,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 178,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L178"
}
]
},
@@ -14625,7 +15479,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L158"
}
],
"type": {
@@ -14665,7 +15519,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L148"
}
],
"type": {
@@ -14694,7 +15548,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 153,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L153"
}
],
"type": {
@@ -14734,7 +15588,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L175"
}
],
"type": {
@@ -14792,7 +15646,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 169,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L169"
}
],
"type": {
@@ -14812,7 +15666,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 143,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L143"
}
]
},
@@ -14834,7 +15688,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 195,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L195"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L195"
}
],
"type": {
@@ -14858,7 +15712,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 194,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L194"
}
],
"type": {
@@ -14879,7 +15733,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L197"
}
],
"type": {
@@ -14898,7 +15752,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 196,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L196"
}
],
"type": {
@@ -14923,7 +15777,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 193,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L193"
}
]
},
@@ -14947,7 +15801,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -14968,7 +15822,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L79"
}
],
"type": {
@@ -14988,7 +15842,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 77,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L77"
}
]
},
@@ -15010,7 +15864,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L139"
}
],
"type": {
@@ -15044,7 +15898,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L140"
}
],
"type": {
@@ -15073,7 +15927,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 138,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L138"
}
]
},
@@ -15097,7 +15951,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L8"
}
],
"type": {
@@ -15117,7 +15971,7 @@
"fileName": "packages/core/storage-js/src/StorageClient.ts",
"line": 7,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/StorageClient.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/StorageClient.ts#L7"
}
]
},
@@ -15131,9 +15985,10 @@
"summary": [
{
"kind": "text",
- "text": "Configuration options for the Storage Vectors client\n\n**Private alpha:** Vector storage APIs are currently in private alpha and may not be accessible."
+ "text": "Configuration options for the Storage Vectors client\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"children": [
{
@@ -15150,14 +16005,15 @@
"kind": "text",
"text": "Custom fetch implementation (optional)\nUseful for testing or custom request handling"
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 28,
+ "line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L31"
}
],
"type": {
@@ -15387,14 +16243,15 @@
"kind": "text",
"text": "Custom headers to include in all requests"
}
- ]
+ ],
+ "modifierTags": ["@alpha"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 23,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26"
}
],
"type": {
@@ -15408,9 +16265,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 23,
+ "line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26"
}
],
"indexSignatures": [
@@ -15423,9 +16280,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 23,
+ "line": 26,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26"
}
],
"parameters": [
@@ -15460,9 +16317,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
- "line": 19,
+ "line": 22,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L22"
}
]
},
@@ -15500,7 +16357,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 281,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L281"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L281"
}
],
"type": {
@@ -15531,7 +16388,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 282,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L282"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L282"
}
],
"type": {
@@ -15551,7 +16408,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 280,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L280"
}
],
"typeParameters": [
@@ -15592,7 +16449,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 240,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L240"
}
],
"type": {
@@ -15621,7 +16478,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 220,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L220"
}
],
"type": {
@@ -15650,7 +16507,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 233,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L233"
}
],
"type": {
@@ -15679,7 +16536,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 227,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L227"
}
],
"type": {
@@ -15721,7 +16578,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L216"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L216"
}
],
"type": {
@@ -15741,7 +16598,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 212,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L212"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L212"
}
]
},
@@ -15781,7 +16638,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L21"
}
],
"type": {
@@ -15810,7 +16667,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L22"
}
],
"type": {
@@ -15839,7 +16696,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L20"
}
],
"type": {
@@ -15859,7 +16716,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 19,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L19"
}
]
},
@@ -15897,7 +16754,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L71"
}
],
"type": {
@@ -15920,7 +16777,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 70,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L70"
}
]
},
@@ -15960,7 +16817,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 272,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L272"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L272"
}
],
"type": {
@@ -15985,7 +16842,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 271,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L271"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L271"
}
]
},
@@ -16025,7 +16882,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L62"
}
],
"type": {
@@ -16052,7 +16909,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L58"
}
],
"type": {
@@ -16079,7 +16936,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 59,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L59"
}
],
"type": {
@@ -16106,7 +16963,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L60"
}
],
"type": {
@@ -16135,7 +16992,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L56"
}
],
"type": {
@@ -16164,7 +17021,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L61"
}
],
"type": {
@@ -16193,7 +17050,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L57"
}
],
"type": {
@@ -16213,7 +17070,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 55,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L55"
}
]
},
@@ -16253,7 +17110,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L101"
}
],
"type": {
@@ -16284,7 +17141,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L103"
}
],
"type": {
@@ -16311,7 +17168,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L100"
}
],
"type": {
@@ -16340,7 +17197,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L102"
}
],
"type": {
@@ -16362,7 +17219,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 99,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L99"
}
]
},
@@ -16400,7 +17257,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L88"
}
],
"type": {
@@ -16429,7 +17286,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 87,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L87"
}
],
"type": {
@@ -16458,7 +17315,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L89"
}
],
"type": {
@@ -16480,7 +17337,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 86,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L86"
}
]
},
@@ -16503,7 +17360,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 299,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L299"
}
],
"typeParameters": [
@@ -16561,7 +17418,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 8,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L8"
}
],
"type": {
@@ -16589,7 +17446,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 247,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L247"
}
],
"typeParameters": [
@@ -16692,7 +17549,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 43,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L43"
}
],
"type": {
@@ -16724,7 +17581,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 251,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L251"
}
],
"typeParameters": [
@@ -16759,7 +17616,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 253,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L253"
}
],
"type": {
@@ -16781,7 +17638,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 254,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L254"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L254"
}
],
"type": {
@@ -16801,7 +17658,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 252,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L252"
}
]
}
@@ -16826,7 +17683,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 257,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L257"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L257"
}
],
"type": {
@@ -16845,7 +17702,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 258,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L258"
}
],
"type": {
@@ -16867,7 +17724,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 256,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L256"
}
]
}
@@ -16886,7 +17743,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 5,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L5"
}
],
"type": {
@@ -16918,7 +17775,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
"line": 22,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/fetch.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/fetch.ts#L22"
}
],
"type": {
@@ -16954,7 +17811,7 @@
"fileName": "packages/core/storage-js/src/lib/types.ts",
"line": 191,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/types.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/types.ts#L191"
}
],
"type": {
@@ -17011,7 +17868,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 38,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L38"
}
],
"type": {
@@ -17038,7 +17895,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 237,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L237"
}
],
"type": {
@@ -17080,7 +17937,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 78,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/types.ts#L78"
}
],
"type": {
@@ -17133,7 +17990,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
}
],
"signatures": [
@@ -17162,7 +18019,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 35,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L35"
}
],
"parameters": [
@@ -17204,7 +18061,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 10,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10"
}
],
"signatures": [
@@ -17219,7 +18076,7 @@
"fileName": "packages/core/storage-js/src/lib/errors.ts",
"line": 10,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/errors.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/errors.ts#L10"
}
],
"parameters": [
@@ -17260,7 +18117,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 18,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
}
],
"signatures": [
@@ -17294,7 +18151,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
"line": 18,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
}
],
"parameters": [
@@ -17351,7 +18208,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 57,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
}
],
"signatures": [
@@ -17380,7 +18237,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 57,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L57"
}
],
"parameters": [
@@ -17436,7 +18293,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 10,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
}
],
"signatures": [
@@ -17465,7 +18322,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 10,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L10"
}
],
"parameters": [
@@ -17933,7 +18790,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 23,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
}
],
"signatures": [
@@ -17962,7 +18819,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 23,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L23"
}
],
"type": {
@@ -18087,7 +18944,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 70,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
}
],
"signatures": [
@@ -18102,7 +18959,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 70,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L70"
}
],
"parameters": [
@@ -18140,7 +18997,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 71,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
}
],
"type": {
@@ -18163,7 +19020,7 @@
"fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
"line": 71,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
}
]
}
@@ -18200,7 +19057,7 @@
},
{
"id": 613,
- "name": "StorageAnalyticsApi",
+ "name": "StorageAnalyticsClient",
"variant": "reference",
"kind": 4194304,
"flags": {},
@@ -18209,7 +19066,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 3,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/index.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L3"
}
],
"target": 47
@@ -18250,7 +19107,7 @@
"fileName": "packages/core/storage-js/src/index.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/index.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/index.ts#L1"
}
]
},
@@ -18279,7 +19136,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"signatures": [
@@ -18294,7 +19151,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
"parameters": [
@@ -18317,7 +19174,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -18332,7 +19189,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 10,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
}
],
"type": {
@@ -18395,7 +19252,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
}
],
"type": {
@@ -18420,7 +19277,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -18435,7 +19292,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"type": {
@@ -18459,7 +19316,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"signatures": [
@@ -18493,7 +19350,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
"typeParameters": [
@@ -18546,7 +19403,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"signatures": [
@@ -18561,7 +19418,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
}
],
"parameters": [
@@ -18679,7 +19536,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -18713,7 +19570,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"parameters": [
@@ -18753,7 +19610,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"signatures": [
@@ -18768,7 +19625,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 31,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
"type": {
@@ -18835,7 +19692,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"signatures": [
@@ -18869,7 +19726,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
"typeParameters": [
@@ -18946,7 +19803,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"signatures": [
@@ -18961,7 +19818,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 19,
"character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
}
],
"parameters": [
@@ -19063,7 +19920,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"signatures": [
@@ -19078,7 +19935,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 20,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
}
],
"parameters": [
@@ -19195,7 +20052,7 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 5,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
}
],
"implementedTypes": [
@@ -19241,13 +20098,13 @@
"fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
}
]
},
{
"id": 46,
- "name": "packages/StorageAnalyticsApi",
+ "name": "packages/StorageAnalyticsClient",
"variant": "declaration",
"kind": 2,
"flags": {},
@@ -19262,7 +20119,7 @@
"summary": [
{
"kind": "text",
- "text": "API class for managing Analytics Buckets using Iceberg tables\nProvides methods for creating, listing, and deleting analytics buckets"
+ "text": "Client class for managing Analytics Buckets using Iceberg tables\nProvides methods for creating, listing, and deleting analytics buckets"
}
]
},
@@ -19275,10 +20132,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"signatures": [
@@ -19292,16 +20149,36 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new StorageAnalyticsApi instance"
+ "text": "Creates a new StorageAnalyticsClient instance\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new StorageAnalyticsClient(url, headers)\n```"
+ }
+ ]
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"parameters": [
@@ -19348,10 +20225,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"indexSignatures": [
@@ -19363,10 +20240,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 23,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 32,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L32"
}
],
"parameters": [
@@ -19625,7 +20502,7 @@
"type": {
"type": "reference",
"target": 47,
- "name": "StorageAnalyticsApi",
+ "name": "StorageAnalyticsClient",
"package": "@supabase/storage-js",
"qualifiedName": "default"
}
@@ -19640,10 +20517,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 57,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
}
],
"signatures": [
@@ -19657,10 +20534,19 @@
"summary": [
{
"kind": "text",
- "text": "Creates a new analytics bucket using Iceberg tables\nAnalytics buckets are optimized for analytical queries and data processing"
+ "text": "Creates a new analytics bucket using Iceberg tables\nAnalytics buckets are optimized for analytical queries and data processing\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -19672,10 +20558,19 @@
},
{
"tag": "@example",
+ "name": "Create analytics bucket",
"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```"
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .analytics\n .createBucket('analytics-data')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"name\": \"analytics-data\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -19683,10 +20578,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 57,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L80"
}
],
"parameters": [
@@ -19737,10 +20632,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 59,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 82,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L82"
}
],
"type": {
@@ -19758,10 +20653,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 60,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 83,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L83"
}
],
"type": {
@@ -19778,10 +20673,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 58,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 81,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L81"
}
]
}
@@ -19803,10 +20698,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 63,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 86,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L86"
}
],
"type": {
@@ -19822,10 +20717,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 64,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 87,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L87"
}
],
"type": {
@@ -19844,10 +20739,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 62,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 85,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L85"
}
]
}
@@ -19869,10 +20764,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 170,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221"
}
],
"signatures": [
@@ -19886,10 +20781,19 @@
"summary": [
{
"kind": "text",
- "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"
+ "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\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -19901,10 +20805,19 @@
},
{
"tag": "@example",
+ "name": "Delete analytics bucket",
"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```"
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .analytics\n .deleteBucket('analytics-data')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully deleted\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -19912,16 +20825,16 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 170,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L170"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L221"
}
],
"parameters": [
{
"id": 105,
- "name": "bucketId",
+ "name": "bucketName",
"variant": "param",
"kind": 32768,
"flags": {},
@@ -19966,10 +20879,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 172,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 223,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223"
}
],
"type": {
@@ -19989,10 +20902,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 172,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 223,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223"
}
],
"type": {
@@ -20009,10 +20922,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 172,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 223,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L223"
}
]
}
@@ -20026,10 +20939,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 173,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 224,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L224"
}
],
"type": {
@@ -20046,10 +20959,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 171,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 222,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L222"
}
]
}
@@ -20071,10 +20984,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 176,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 227,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L227"
}
],
"type": {
@@ -20090,10 +21003,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 177,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 228,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L228"
}
],
"type": {
@@ -20112,10 +21025,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 175,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L226"
}
]
}
@@ -20137,10 +21050,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 109,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 149,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
],
"signatures": [
@@ -20154,10 +21067,19 @@
"summary": [
{
"kind": "text",
- "text": "Retrieves the details of all Analytics Storage buckets within an existing project\nOnly returns buckets of type 'ANALYTICS'"
+ "text": "Retrieves the details of all Analytics Storage buckets within an existing project\nOnly returns buckets of type 'ANALYTICS'\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -20169,10 +21091,19 @@
},
{
"tag": "@example",
+ "name": "List analytics buckets",
"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```"
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .analytics\n .listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc'\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [\n {\n \"id\": \"analytics-data\",\n \"name\": \"analytics-data\",\n \"type\": \"ANALYTICS\",\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n }\n ],\n \"error\": null\n}\n```"
}
]
}
@@ -20180,10 +21111,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 109,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 149,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
],
"parameters": [
@@ -20230,10 +21161,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 110,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 150,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L150"
}
],
"type": {
@@ -20259,10 +21190,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 111,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 151,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L151"
}
],
"type": {
@@ -20288,10 +21219,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 114,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 154,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L154"
}
],
"type": {
@@ -20317,10 +21248,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 112,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 152,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L152"
}
],
"type": {
@@ -20363,10 +21294,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 113,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 153,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L153"
}
],
"type": {
@@ -20392,10 +21323,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 109,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 149,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L149"
}
]
}
@@ -20429,10 +21360,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 117,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 157,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L157"
}
],
"type": {
@@ -20453,10 +21384,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 118,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 158,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L158"
}
],
"type": {
@@ -20473,10 +21404,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 116,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 156,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L156"
}
]
}
@@ -20498,10 +21429,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 121,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 161,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L161"
}
],
"type": {
@@ -20517,10 +21448,10 @@
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 122,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 162,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L162"
}
],
"type": {
@@ -20539,10 +21470,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 120,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 160,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L160"
}
]
}
@@ -20566,10 +21497,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 35,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 47,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47"
}
],
"signatures": [
@@ -20583,10 +21514,19 @@
"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 }"
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }\n\n**Public alpha:** This API is part of a public alpha release and may not be available to your account type."
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Analytics Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
@@ -20600,10 +21540,10 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
- "line": 35,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
+ "line": 47,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L47"
}
],
"type": {
@@ -20624,12 +21564,18 @@
"children": [79, 103, 88, 77]
}
],
+ "categories": [
+ {
+ "title": "Analytics Buckets",
+ "children": [48, 79, 103, 88, 77]
+ }
+ ],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L11"
}
]
}
@@ -20642,10 +21588,10 @@
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsClient.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageAnalyticsClient.ts#L1"
}
]
},
@@ -20674,7 +21620,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
}
],
"signatures": [
@@ -20689,7 +21635,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
}
],
"parameters": [
@@ -20723,7 +21669,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
}
],
"indexSignatures": [
@@ -20738,7 +21684,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 16,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
}
],
"parameters": [
@@ -21020,9 +21966,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"signatures": [
@@ -21040,12 +21986,39 @@
}
],
"blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
{
"tag": "@returns",
"content": [
{
"kind": "text",
- "text": "newly created bucket id"
+ "text": "Promise with newly created bucket id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .createBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"name\": \"avatars\"\n },\n \"error\": null\n}\n```"
}
]
}
@@ -21054,9 +22027,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L201"
}
],
"parameters": [
@@ -21113,9 +22086,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 125,
+ "line": 206,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L125"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L206"
}
],
"type": {
@@ -21154,9 +22127,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 124,
+ "line": 205,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L205"
}
],
"type": {
@@ -21194,9 +22167,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 123,
+ "line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L204"
}
],
"type": {
@@ -21235,9 +22208,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 126,
+ "line": 207,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L126"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L207"
}
],
"type": {
@@ -21257,9 +22230,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 122,
+ "line": 203,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L203"
}
]
}
@@ -21295,9 +22268,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 132,
+ "line": 213,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L213"
}
],
"type": {
@@ -21331,9 +22304,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 133,
+ "line": 214,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L214"
}
],
"type": {
@@ -21351,9 +22324,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 131,
+ "line": 212,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L212"
}
]
}
@@ -21376,9 +22349,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 136,
+ "line": 217,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L217"
}
],
"type": {
@@ -21395,9 +22368,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 137,
+ "line": 218,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L218"
}
],
"type": {
@@ -21417,9 +22390,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 135,
+ "line": 216,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L216"
}
]
}
@@ -21442,9 +22415,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"signatures": [
@@ -21468,14 +22441,52 @@
"kind": "text",
"text": " the bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Delete bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .deleteBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully deleted\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 405,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L405"
}
],
"parameters": [
@@ -21527,9 +22538,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -21550,9 +22561,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
],
"type": {
@@ -21570,9 +22581,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 407,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L407"
}
]
}
@@ -21587,9 +22598,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 266,
+ "line": 408,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L408"
}
],
"type": {
@@ -21607,9 +22618,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 264,
+ "line": 406,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L406"
}
]
}
@@ -21632,9 +22643,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 269,
+ "line": 411,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L411"
}
],
"type": {
@@ -21651,9 +22662,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 270,
+ "line": 412,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L412"
}
],
"type": {
@@ -21673,9 +22684,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 268,
+ "line": 410,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L410"
}
]
}
@@ -21698,9 +22709,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"signatures": [
@@ -21716,14 +22727,52 @@
"kind": "text",
"text": "Removes all objects inside a single bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Empty bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .emptyBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully emptied\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L350"
}
],
"parameters": [
@@ -21775,9 +22824,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -21798,9 +22847,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
],
"type": {
@@ -21818,9 +22867,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 352,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L352"
}
]
}
@@ -21835,9 +22884,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 230,
+ "line": 353,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L353"
}
],
"type": {
@@ -21855,9 +22904,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 228,
+ "line": 351,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L351"
}
]
}
@@ -21880,9 +22929,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 233,
+ "line": 356,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L356"
}
],
"type": {
@@ -21899,9 +22948,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 234,
+ "line": 357,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L357"
}
],
"type": {
@@ -21921,9 +22970,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 232,
+ "line": 355,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L232"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L355"
}
]
}
@@ -21946,9 +22995,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"signatures": [
@@ -21964,14 +23013,52 @@
"kind": "text",
"text": "Retrieves the details of an existing Storage bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with bucket details or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Get bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .getBucket('avatars')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"id\": \"avatars\",\n \"name\": \"avatars\",\n \"owner\": \"\",\n \"public\": false,\n \"file_size_limit\": 1024,\n \"allowed_mime_types\": [\n \"image/png\"\n ],\n \"created_at\": \"2024-05-22T22:26:05.100Z\",\n \"updated_at\": \"2024-05-22T22:26:05.100Z\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 139,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L139"
}
],
"parameters": [
@@ -22023,9 +23110,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 82,
+ "line": 141,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L141"
}
],
"type": {
@@ -22044,9 +23131,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 83,
+ "line": 142,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L142"
}
],
"type": {
@@ -22064,9 +23151,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 81,
+ "line": 140,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L140"
}
]
}
@@ -22089,9 +23176,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 86,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L145"
}
],
"type": {
@@ -22108,9 +23195,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 87,
+ "line": 146,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L146"
}
],
"type": {
@@ -22130,9 +23217,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 85,
+ "line": 144,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L144"
}
]
}
@@ -22155,9 +23242,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"signatures": [
@@ -22173,14 +23260,54 @@
"kind": "text",
"text": "Retrieves the details of all Storage buckets within an existing project."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of buckets or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets()\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List buckets with options",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'prod'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
+ "line": 78,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
}
],
"parameters": [
@@ -22192,11 +23319,51 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Query parameters for listing buckets"
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 625,
"name": "ListBucketOptions",
- "package": "@supabase/storage-js"
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "limit": [
+ {
+ "kind": "text",
+ "text": "Maximum number of buckets to return"
+ }
+ ],
+ "offset": [
+ {
+ "kind": "text",
+ "text": "Number of buckets to skip"
+ }
+ ],
+ "sortColumn": [
+ {
+ "kind": "text",
+ "text": "Column to sort by ('id', 'name', 'created_at', 'updated_at')"
+ }
+ ],
+ "sortOrder": [
+ {
+ "kind": "text",
+ "text": "Sort order ('asc' or 'desc')"
+ }
+ ],
+ "search": [
+ {
+ "kind": "text",
+ "text": "Search term to filter bucket names"
+ }
+ ]
+ }
}
}
],
@@ -22228,9 +23395,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 49,
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
}
],
"type": {
@@ -22252,9 +23419,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 50,
+ "line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
}
],
"type": {
@@ -22272,9 +23439,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 48,
+ "line": 79,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79"
}
]
}
@@ -22297,9 +23464,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 53,
+ "line": 84,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84"
}
],
"type": {
@@ -22316,9 +23483,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 54,
+ "line": 85,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
}
],
"type": {
@@ -22338,9 +23505,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 52,
+ "line": 83,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
}
]
}
@@ -22365,9 +23532,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"signatures": [
@@ -22383,14 +23550,25 @@
"kind": "text",
"text": "Enable throwing errors instead of returning them."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
+ "line": 41,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L41"
}
],
"type": {
@@ -22409,9 +23587,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"signatures": [
@@ -22427,14 +23605,52 @@
"kind": "text",
"text": "Updates a Storage bucket"
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .updateBucket('avatars', {\n public: false,\n allowedMimeTypes: ['image/png'],\n fileSizeLimit: 1024\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully updated\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 283,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L283"
}
],
"parameters": [
@@ -22491,9 +23707,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 184,
+ "line": 288,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L288"
}
],
"type": {
@@ -22532,9 +23748,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 183,
+ "line": 287,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L287"
}
],
"type": {
@@ -22572,9 +23788,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 182,
+ "line": 286,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L286"
}
],
"type": {
@@ -22592,9 +23808,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 181,
+ "line": 285,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L285"
}
]
}
@@ -22629,9 +23845,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -22652,9 +23868,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
],
"type": {
@@ -22672,9 +23888,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 292,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L292"
}
]
}
@@ -22689,9 +23905,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 189,
+ "line": 293,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L293"
}
],
"type": {
@@ -22709,9 +23925,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 187,
+ "line": 291,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L291"
}
]
}
@@ -22734,9 +23950,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 192,
+ "line": 296,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L296"
}
],
"type": {
@@ -22753,9 +23969,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 193,
+ "line": 297,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L297"
}
],
"type": {
@@ -22775,9 +23991,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 191,
+ "line": 295,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L295"
}
]
}
@@ -22802,12 +24018,22 @@
"children": [166, 208, 197, 157, 148, 146, 181]
}
],
+ "categories": [
+ {
+ "title": "File Buckets",
+ "children": [166, 208, 197, 157, 148, 146, 181]
+ },
+ {
+ "title": "Other",
+ "children": [116]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
}
],
"extendedBy": [
@@ -22830,7 +24056,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
}
]
},
@@ -22859,7 +24085,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
}
],
"signatures": [
@@ -22874,7 +24100,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
}
],
"parameters": [
@@ -22908,7 +24134,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
}
],
"indexSignatures": [
@@ -22923,7 +24149,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 54,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
}
],
"parameters": [
@@ -23203,9 +24429,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 392,
+ "line": 556,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556"
}
],
"signatures": [
@@ -23221,14 +24447,52 @@
"kind": "text",
"text": "Copies an existing file to a new path in the same bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with copied file path or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Copy file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .copy('public/avatar1.png', 'private/avatar2.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"avatars/private/avatar2.png\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 392,
+ "line": 556,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L392"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L556"
}
],
"parameters": [
@@ -23338,9 +24602,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 398,
+ "line": 562,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L398"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
}
],
"type": {
@@ -23361,9 +24625,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 398,
+ "line": 562,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L398"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
}
],
"type": {
@@ -23381,9 +24645,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 398,
+ "line": 562,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L398"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
}
]
}
@@ -23398,9 +24662,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 399,
+ "line": 563,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L399"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L563"
}
],
"type": {
@@ -23418,9 +24682,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 397,
+ "line": 561,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L561"
}
]
}
@@ -23443,9 +24707,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 402,
+ "line": 566,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L402"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L566"
}
],
"type": {
@@ -23462,9 +24726,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 403,
+ "line": 567,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L403"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L567"
}
],
"type": {
@@ -23484,9 +24748,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 401,
+ "line": 565,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L401"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L565"
}
]
}
@@ -23509,9 +24773,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 256,
+ "line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342"
}
],
"signatures": [
@@ -23527,14 +24791,52 @@
"kind": "text",
"text": "Creates a signed upload URL.\nSigned upload URLs can be used to upload files to the bucket without further authentication.\nThey are valid for 2 hours."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with signed upload URL, token, and path or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create Signed Upload URL",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .createSignedUploadUrl('folder/cat.jpg')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/upload/sign/avatars/folder/cat.jpg?token=\",\n \"path\": \"folder/cat.jpg\",\n \"token\": \"\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 256,
+ "line": 342,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L256"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L342"
}
],
"parameters": [
@@ -23599,9 +24901,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 258,
+ "line": 344,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344"
}
],
"type": {
@@ -23619,9 +24921,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 258,
+ "line": 344,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L344"
}
]
}
@@ -23656,9 +24958,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -23679,9 +24981,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -23698,9 +25000,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -23717,9 +25019,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
],
"type": {
@@ -23737,9 +25039,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 261,
+ "line": 347,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L347"
}
]
}
@@ -23754,9 +25056,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 262,
+ "line": 348,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L348"
}
],
"type": {
@@ -23774,9 +25076,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 260,
+ "line": 346,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L346"
}
]
}
@@ -23799,9 +25101,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 265,
+ "line": 351,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L351"
}
],
"type": {
@@ -23818,9 +25120,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 266,
+ "line": 352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
}
],
"type": {
@@ -23840,9 +25142,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 264,
+ "line": 350,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L264"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L350"
}
]
}
@@ -23865,9 +25167,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 439,
+ "line": 646,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646"
}
],
"signatures": [
@@ -23883,14 +25185,72 @@
"kind": "text",
"text": "Creates a signed URL. Use a signed URL to share a file for a fixed amount of time."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with signed URL or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create Signed URL",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .createSignedUrl('folder/avatar1.png', 60)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar1.png?token=\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create a signed URL for an asset with transformations",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = await supabase\n .storage\n .from('avatars')\n .createSignedUrl('folder/avatar1.png', 60, {\n transform: {\n width: 100,\n height: 100,\n }\n })\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create a signed URL which triggers the download of the asset",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = await supabase\n .storage\n .from('avatars')\n .createSignedUrl('folder/avatar1.png', 60, {\n download: true,\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 439,
+ "line": 646,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L646"
}
],
"parameters": [
@@ -23984,9 +25344,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 442,
+ "line": 649,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649"
}
],
"type": {
@@ -24022,9 +25382,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 442,
+ "line": 649,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649"
}
],
"type": {
@@ -24044,9 +25404,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 442,
+ "line": 649,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L442"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L649"
}
]
}
@@ -24081,9 +25441,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 445,
+ "line": 652,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652"
}
],
"type": {
@@ -24104,9 +25464,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 445,
+ "line": 652,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652"
}
],
"type": {
@@ -24124,9 +25484,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 445,
+ "line": 652,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L652"
}
]
}
@@ -24141,9 +25501,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 446,
+ "line": 653,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L446"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L653"
}
],
"type": {
@@ -24161,9 +25521,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 444,
+ "line": 651,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L444"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L651"
}
]
}
@@ -24186,9 +25546,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 449,
+ "line": 656,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L656"
}
],
"type": {
@@ -24205,9 +25565,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 450,
+ "line": 657,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L657"
}
],
"type": {
@@ -24227,9 +25587,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 448,
+ "line": 655,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L448"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L655"
}
]
}
@@ -24252,9 +25612,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 487,
+ "line": 725,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725"
}
],
"signatures": [
@@ -24270,14 +25630,52 @@
"kind": "text",
"text": "Creates multiple signed URLs. Use a signed URL to share a file for a fixed amount of time."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with array of signed URLs or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Create Signed URLs",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .createSignedUrls(['folder/avatar1.png', 'folder/avatar2.png'], 60)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [\n {\n \"error\": null,\n \"path\": \"folder/avatar1.png\",\n \"signedURL\": \"/object/sign/avatars/folder/avatar1.png?token=\",\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar1.png?token=\"\n },\n {\n \"error\": null,\n \"path\": \"folder/avatar2.png\",\n \"signedURL\": \"/object/sign/avatars/folder/avatar2.png?token=\",\n \"signedUrl\": \"https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar2.png?token=\"\n }\n ],\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 487,
+ "line": 725,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L487"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L725"
}
],
"parameters": [
@@ -24372,9 +25770,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 490,
+ "line": 728,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728"
}
],
"type": {
@@ -24401,9 +25799,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 490,
+ "line": 728,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L728"
}
]
}
@@ -24438,9 +25836,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -24463,9 +25861,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -24491,9 +25889,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -24519,9 +25917,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
],
"type": {
@@ -24539,9 +25937,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 493,
+ "line": 731,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L493"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L731"
}
]
}
@@ -24557,9 +25955,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 494,
+ "line": 732,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L494"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L732"
}
],
"type": {
@@ -24577,9 +25975,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 492,
+ "line": 730,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L730"
}
]
}
@@ -24602,9 +26000,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 497,
+ "line": 735,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L497"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L735"
}
],
"type": {
@@ -24621,9 +26019,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 498,
+ "line": 736,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L498"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L736"
}
],
"type": {
@@ -24643,9 +26041,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 496,
+ "line": 734,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L734"
}
]
}
@@ -24668,9 +26066,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
],
"signatures": [
@@ -24694,14 +26092,62 @@
"kind": "text",
"text": " instead."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "BlobDownloadBuilder instance for downloading the file"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Download file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .download('folder/avatar1.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": ,\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Download file with transformations",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .download('folder/avatar1.png', {\n transform: {\n width: 100,\n height: 100,\n quality: 80\n }\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
],
"typeParameters": [
@@ -24731,9 +26177,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
],
"type": {
@@ -24753,9 +26199,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 539,
+ "line": 809,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L539"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
]
}
@@ -24826,9 +26272,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 594,
+ "line": 886,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886"
}
],
"signatures": [
@@ -24844,14 +26290,44 @@
"kind": "text",
"text": "Checks the existence of a file."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with boolean indicating file existence or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Check file existence",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .exists('folder/avatar1.png')\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 594,
+ "line": 886,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L594"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L886"
}
],
"parameters": [
@@ -24861,6 +26337,22 @@
"variant": "param",
"kind": 32768,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The file path, including the file name. For example "
+ },
+ {
+ "kind": "code",
+ "text": "`folder/image.png`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
"type": {
"type": "intrinsic",
"name": "string"
@@ -24895,9 +26387,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 596,
+ "line": 888,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L596"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L888"
}
],
"type": {
@@ -24914,9 +26406,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 597,
+ "line": 889,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L889"
}
],
"type": {
@@ -24934,9 +26426,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 595,
+ "line": 887,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L595"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L887"
}
]
}
@@ -24959,9 +26451,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 600,
+ "line": 892,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L600"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L892"
}
],
"type": {
@@ -24978,9 +26470,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 601,
+ "line": 893,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L893"
}
],
"type": {
@@ -25000,9 +26492,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 599,
+ "line": 891,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L599"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L891"
}
]
}
@@ -25025,9 +26517,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 636,
+ "line": 970,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970"
}
],
"signatures": [
@@ -25043,14 +26535,72 @@
"kind": "text",
"text": "A simple convenience function to get the URL for an asset in a public bucket. If you do not want to use this function, you can construct the public URL by concatenating the bucket URL with the path to the asset.\nThis function does not verify if the bucket is public. If a public URL is created for a bucket which is not public, you will not be able to download the asset."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Object with public URL"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Returns the URL for an asset in a public bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = supabase\n .storage\n .from('public-bucket')\n .getPublicUrl('folder/avatar1.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"publicUrl\": \"https://example.supabase.co/storage/v1/object/public/public-bucket/folder/avatar1.png\"\n }\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Returns the URL for an asset in a public bucket with transformations",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = supabase\n .storage\n .from('public-bucket')\n .getPublicUrl('folder/avatar1.png', {\n transform: {\n width: 100,\n height: 100,\n }\n })\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Returns the URL which triggers the download of an asset in a public bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data } = supabase\n .storage\n .from('public-bucket')\n .getPublicUrl('folder/avatar1.png', {\n download: true,\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 636,
+ "line": 970,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L636"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L970"
}
],
"parameters": [
@@ -25117,9 +26667,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 638,
+ "line": 972,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972"
}
],
"type": {
@@ -25155,9 +26705,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 638,
+ "line": 972,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972"
}
],
"type": {
@@ -25177,9 +26727,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 638,
+ "line": 972,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L638"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L972"
}
]
}
@@ -25204,9 +26754,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
],
"type": {
@@ -25227,9 +26777,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
],
"type": {
@@ -25247,9 +26797,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
]
}
@@ -25265,9 +26815,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 639,
+ "line": 973,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L639"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L973"
}
]
}
@@ -25284,9 +26834,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 560,
+ "line": 841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841"
}
],
"signatures": [
@@ -25302,14 +26852,44 @@
"kind": "text",
"text": "Retrieves the details of an existing file."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file metadata or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Get file info",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .info('folder/avatar1.png')\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 560,
+ "line": 841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L841"
}
],
"parameters": [
@@ -25319,6 +26899,22 @@
"variant": "param",
"kind": 32768,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The file path, including the file name. For example "
+ },
+ {
+ "kind": "code",
+ "text": "`folder/image.png`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
"type": {
"type": "intrinsic",
"name": "string"
@@ -25353,9 +26949,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 562,
+ "line": 843,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L843"
}
],
"type": {
@@ -25382,9 +26978,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 563,
+ "line": 844,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L563"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L844"
}
],
"type": {
@@ -25402,9 +26998,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 561,
+ "line": 842,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L561"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L842"
}
]
}
@@ -25427,9 +27023,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 566,
+ "line": 847,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L566"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L847"
}
],
"type": {
@@ -25446,9 +27042,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 567,
+ "line": 848,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L567"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L848"
}
],
"type": {
@@ -25468,9 +27064,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 565,
+ "line": 846,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L565"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L846"
}
]
}
@@ -25493,9 +27089,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 772,
+ "line": 1178,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178"
}
],
"signatures": [
@@ -25511,14 +27107,62 @@
"kind": "text",
"text": "Lists all the files and folders within a path of the bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of files or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "List files in a bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .list('folder', {\n limit: 100,\n offset: 0,\n sortBy: { column: 'name', order: 'asc' },\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [\n {\n \"name\": \"avatar1.png\",\n \"id\": \"e668cf7f-821b-4a2f-9dce-7dfa5dd1cfd2\",\n \"updated_at\": \"2024-05-22T23:06:05.580Z\",\n \"created_at\": \"2024-05-22T23:04:34.443Z\",\n \"last_accessed_at\": \"2024-05-22T23:04:34.443Z\",\n \"metadata\": {\n \"eTag\": \"\\\"c5e8c553235d9af30ef4f6e280790b92\\\"\",\n \"size\": 32175,\n \"mimetype\": \"image/png\",\n \"cacheControl\": \"max-age=3600\",\n \"lastModified\": \"2024-05-22T23:06:05.574Z\",\n \"contentLength\": 32175,\n \"httpStatusCode\": 200\n }\n }\n ],\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Search files in a bucket",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .list('folder', {\n limit: 100,\n offset: 0,\n sortBy: { column: 'name', order: 'asc' },\n search: 'jon'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 772,
+ "line": 1178,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1178"
}
],
"parameters": [
@@ -25574,6 +27218,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional fetch parameters including signal for cancellation"
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 701,
@@ -25610,9 +27262,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 778,
+ "line": 1184,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L778"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1184"
}
],
"type": {
@@ -25634,9 +27286,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 779,
+ "line": 1185,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L779"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1185"
}
],
"type": {
@@ -25654,9 +27306,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 777,
+ "line": 1183,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L777"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1183"
}
]
}
@@ -25679,9 +27331,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 782,
+ "line": 1188,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L782"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1188"
}
],
"type": {
@@ -25698,9 +27350,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 783,
+ "line": 1189,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1189"
}
],
"type": {
@@ -25720,9 +27372,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 781,
+ "line": 1187,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1187"
}
]
}
@@ -25745,9 +27397,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 813,
+ "line": 1221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L813"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221"
}
],
"signatures": [
@@ -25764,14 +27416,25 @@
"text": "this method signature might change in the future"
}
],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
+ ],
"modifierTags": ["@experimental"]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 813,
+ "line": 1221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L813"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1221"
}
],
"parameters": [
@@ -25842,9 +27505,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 818,
+ "line": 1226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L818"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1226"
}
],
"type": {
@@ -25863,9 +27526,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 819,
+ "line": 1227,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L819"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1227"
}
],
"type": {
@@ -25883,9 +27546,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 817,
+ "line": 1225,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L817"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1225"
}
]
}
@@ -25908,9 +27571,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 822,
+ "line": 1230,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L822"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1230"
}
],
"type": {
@@ -25927,9 +27590,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 823,
+ "line": 1231,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L823"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1231"
}
],
"type": {
@@ -25949,9 +27612,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 821,
+ "line": 1229,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L821"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1229"
}
]
}
@@ -25974,9 +27637,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 346,
+ "line": 490,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
}
],
"signatures": [
@@ -25992,14 +27655,52 @@
"kind": "text",
"text": "Moves an existing file to a new path in the same bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Move file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .move('public/avatar1.png', 'private/avatar2.png')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"message\": \"Successfully moved\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 346,
+ "line": 490,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L490"
}
],
"parameters": [
@@ -26109,9 +27810,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 352,
+ "line": 496,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
}
],
"type": {
@@ -26132,9 +27833,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 352,
+ "line": 496,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
}
],
"type": {
@@ -26152,9 +27853,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 352,
+ "line": 496,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L352"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L496"
}
]
}
@@ -26169,9 +27870,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 353,
+ "line": 497,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L497"
}
],
"type": {
@@ -26189,9 +27890,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 351,
+ "line": 495,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L351"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L495"
}
]
}
@@ -26214,9 +27915,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 356,
+ "line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L356"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L500"
}
],
"type": {
@@ -26233,9 +27934,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 357,
+ "line": 501,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L501"
}
],
"type": {
@@ -26255,9 +27956,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 355,
+ "line": 499,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L355"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L499"
}
]
}
@@ -26280,9 +27981,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 674,
+ "line": 1026,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026"
}
],
"signatures": [
@@ -26298,14 +27999,52 @@
"kind": "text",
"text": "Deletes files within the same bucket"
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of deleted files or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Delete file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .remove(['folder/avatar1.png'])\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": [],\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 674,
+ "line": 1026,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L674"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1026"
}
],
"parameters": [
@@ -26368,9 +28107,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 676,
+ "line": 1028,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L676"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1028"
}
],
"type": {
@@ -26392,9 +28131,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 677,
+ "line": 1029,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L677"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1029"
}
],
"type": {
@@ -26412,9 +28151,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 675,
+ "line": 1027,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L675"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1027"
}
]
}
@@ -26437,9 +28176,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 680,
+ "line": 1032,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L680"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1032"
}
],
"type": {
@@ -26456,9 +28195,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 681,
+ "line": 1033,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L681"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1033"
}
],
"type": {
@@ -26478,9 +28217,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 679,
+ "line": 1031,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L679"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1031"
}
]
}
@@ -26505,9 +28244,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 67,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69"
}
],
"signatures": [
@@ -26523,14 +28262,25 @@
"kind": "text",
"text": "Enable throwing errors instead of returning them."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 67,
+ "line": 69,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L69"
}
],
"type": {
@@ -26549,9 +28299,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 852,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L852"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260"
}
],
"signatures": [
@@ -26564,9 +28314,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 852,
+ "line": 1260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L852"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1260"
}
],
"parameters": [
@@ -26598,9 +28348,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 312,
+ "line": 436,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436"
}
],
"signatures": [
@@ -26616,14 +28366,62 @@
"kind": "text",
"text": "Replaces an existing file at the specified path with a new one."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file path and id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', avatarFile, {\n cacheControl: '3600',\n upsert: true\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"public/avatar1.png\",\n \"fullPath\": \"avatars/public/avatar1.png\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Update file using `ArrayBuffer` from base64 file data",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nimport {decode} from 'base64-arraybuffer'\n\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .update('public/avatar1.png', decode('base64FileData'), {\n contentType: 'image/png'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 312,
+ "line": 436,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L436"
}
],
"parameters": [
@@ -26813,6 +28611,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional file upload options including cacheControl, contentType, upsert, and metadata."
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 664,
@@ -26849,9 +28655,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -26872,9 +28678,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -26891,9 +28697,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -26910,9 +28716,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
],
"type": {
@@ -26930,9 +28736,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 328,
+ "line": 452,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L452"
}
]
}
@@ -26947,9 +28753,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 329,
+ "line": 453,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L453"
}
],
"type": {
@@ -26967,9 +28773,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 327,
+ "line": 451,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L451"
}
]
}
@@ -26992,9 +28798,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 332,
+ "line": 456,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L456"
}
],
"type": {
@@ -27011,9 +28817,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 333,
+ "line": 457,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L457"
}
],
"type": {
@@ -27033,9 +28839,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 331,
+ "line": 455,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L331"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L455"
}
]
}
@@ -27058,9 +28864,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 175,
+ "line": 215,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215"
}
],
"signatures": [
@@ -27076,14 +28882,62 @@
"kind": "text",
"text": "Uploads a file to an existing bucket."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file path and id or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Upload file",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst avatarFile = event.target.files[0]\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .upload('public/avatar1.png', avatarFile, {\n cacheControl: '3600',\n upsert: false\n })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"public/avatar1.png\",\n \"fullPath\": \"avatars/public/avatar1.png\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Upload file using `ArrayBuffer` from base64 file data",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nimport { decode } from 'base64-arraybuffer'\n\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .upload('public/avatar1.png', decode('base64FileData'), {\n contentType: 'image/png'\n })\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 175,
+ "line": 215,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L215"
}
],
"parameters": [
@@ -27146,6 +29000,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional file upload options including cacheControl, contentType, upsert, and metadata."
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 664,
@@ -27182,9 +29044,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -27205,9 +29067,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -27224,9 +29086,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -27243,9 +29105,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -27263,9 +29125,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 181,
+ "line": 221,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
]
}
@@ -27280,9 +29142,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 182,
+ "line": 222,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L182"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L222"
}
],
"type": {
@@ -27300,9 +29162,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 180,
+ "line": 220,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L220"
}
]
}
@@ -27325,9 +29187,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 185,
+ "line": 225,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L225"
}
],
"type": {
@@ -27344,9 +29206,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 186,
+ "line": 226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L226"
}
],
"type": {
@@ -27366,9 +29228,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 184,
+ "line": 224,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L224"
}
]
}
@@ -27391,9 +29253,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 198,
+ "line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
}
],
"signatures": [
@@ -27417,14 +29279,52 @@
"kind": "text",
"text": "."
}
+ ],
+ "blockTags": [
+ {
+ "tag": "@category",
+ "content": [
+ {
+ "kind": "text",
+ "text": "File Buckets"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with file path and full path or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "name": "Upload to a signed URL",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```js\nconst { data, error } = await supabase\n .storage\n .from('avatars')\n .uploadToSignedUrl('folder/cat.jpg', 'token-from-createSignedUploadUrl', file)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nResponse:\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"data\": {\n \"path\": \"folder/cat.jpg\",\n \"fullPath\": \"avatars/folder/cat.jpg\"\n },\n \"error\": null\n}\n```"
+ }
+ ]
+ }
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 198,
+ "line": 261,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L261"
}
],
"parameters": [
@@ -27510,6 +29410,14 @@
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional file upload options including cacheControl and contentType."
+ }
+ ]
+ },
"type": {
"type": "reference",
"target": 664,
@@ -27546,9 +29454,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
],
"type": {
@@ -27569,9 +29477,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
],
"type": {
@@ -27589,9 +29497,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
],
"type": {
@@ -27610,9 +29518,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 234,
+ "line": 297,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L297"
}
]
}
@@ -27628,9 +29536,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 235,
+ "line": 298,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L235"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L298"
}
],
"type": {
@@ -27649,9 +29557,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 233,
+ "line": 296,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L233"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L296"
}
]
}
@@ -27674,9 +29582,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 242,
+ "line": 305,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"type": {
@@ -27694,9 +29602,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 242,
+ "line": 305,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
],
"type": {
@@ -27716,9 +29624,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
- "line": 242,
+ "line": 305,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L305"
}
]
}
@@ -27745,12 +29653,24 @@
]
}
],
+ "categories": [
+ {
+ "title": "File Buckets",
+ "children": [
+ 347, 303, 360, 376, 393, 409, 418, 400, 438, 449, 334, 429, 255, 319, 273, 288
+ ]
+ },
+ {
+ "title": "Other",
+ "children": [224, 462]
+ }
+ ],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 45,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L45"
}
]
}
@@ -27766,7 +29686,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
}
]
},
@@ -27795,7 +29715,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"signatures": [
@@ -27810,7 +29730,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"parameters": [
@@ -27833,7 +29753,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"signatures": [
@@ -27848,7 +29768,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"type": {
@@ -27909,7 +29829,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"signatures": [
@@ -27943,7 +29863,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"typeParameters": [
@@ -28026,7 +29946,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"signatures": [
@@ -28041,7 +29961,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"parameters": [
@@ -28149,7 +30069,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"signatures": [
@@ -28164,7 +30084,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"parameters": [
@@ -28277,7 +30197,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 4,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
}
],
"implementedTypes": [
@@ -28323,7 +30243,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
}
]
}
@@ -28454,7 +30374,7 @@
},
{
"kind": "code",
- "text": "```js\n const { data, error } = await storageClient.listBuckets()\n ```"
+ "text": "```js\n // List all buckets\n const { data, error } = await storageClient.listBuckets()\n\n // List buckets with options (pagination, sorting, search)\n const { data, error } = await storageClient.listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'prod',\n })\n ```"
},
{
"kind": "text",
@@ -29600,39 +31520,39 @@
"qualifiedName": "default.[toStringTag]"
},
"46": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": ""
},
"47": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default"
},
"48": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.__constructor"
},
"49": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default"
},
"50": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "url"
},
"51": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "headers"
},
"52": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"53": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.__index"
},
"55": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "fetch"
},
"56": {
@@ -29664,151 +31584,151 @@
"qualifiedName": "init"
},
"77": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.throwOnError"
},
"78": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.throwOnError"
},
"79": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.createBucket"
},
"80": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.createBucket"
},
"81": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "name"
},
"82": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"83": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"84": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"85": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"86": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"87": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"88": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.listBuckets"
},
"89": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.listBuckets"
},
"90": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "options"
},
"91": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"92": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.limit"
},
"93": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.offset"
},
"94": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.sortColumn"
},
"95": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.sortOrder"
},
"96": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.search"
},
"97": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"98": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"99": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"100": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"101": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"102": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"103": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.deleteBucket"
},
"104": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "default.deleteBucket"
},
"105": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
- "qualifiedName": "bucketId"
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
+ "qualifiedName": "bucketName"
},
"106": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"107": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"108": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"109": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.message"
},
"110": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"111": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type"
},
"112": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.data"
},
"113": {
- "sourceFileName": "src/packages/StorageAnalyticsApi.ts",
+ "sourceFileName": "src/packages/StorageAnalyticsClient.ts",
"qualifiedName": "__type.error"
},
"114": {
@@ -31477,7 +33397,7 @@
},
"613": {
"sourceFileName": "src/index.ts",
- "qualifiedName": "StorageAnalyticsApi"
+ "qualifiedName": "StorageAnalyticsClient"
},
"614": {
"sourceFileName": "src/lib/types.ts",
@@ -31553,7 +33473,7 @@
},
"632": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "AnalyticBucket.id"
+ "qualifiedName": "AnalyticBucket.name"
},
"633": {
"sourceFileName": "src/lib/types.ts",
@@ -33564,7 +35484,7 @@
"entries": {
"1": "src/index.ts",
"2": "src/packages/BlobDownloadBuilder.ts",
- "3": "src/packages/StorageAnalyticsApi.ts",
+ "3": "src/packages/StorageAnalyticsClient.ts",
"4": "src/packages/StorageBucketApi.ts",
"5": "src/packages/StorageFileApi.ts",
"6": "src/packages/StreamDownloadBuilder.ts",
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/supabase.json b/apps/docs/spec/enrichments/tsdoc_v2/supabase.json
index 738adf1123d64..b05fcba5d7e54 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/supabase.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/supabase.json
@@ -298,14 +298,14 @@
]
},
{
- "id": 2147,
+ "id": 2164,
"name": "REALTIME_LISTEN_TYPES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2148,
+ "id": 2165,
"name": "BROADCAST",
"variant": "declaration",
"kind": 16,
@@ -323,7 +323,7 @@
}
},
{
- "id": 2150,
+ "id": 2167,
"name": "POSTGRES_CHANGES",
"variant": "declaration",
"kind": 16,
@@ -341,7 +341,7 @@
}
},
{
- "id": 2149,
+ "id": 2166,
"name": "PRESENCE",
"variant": "declaration",
"kind": 16,
@@ -359,7 +359,7 @@
}
},
{
- "id": 2151,
+ "id": 2168,
"name": "SYSTEM",
"variant": "declaration",
"kind": 16,
@@ -380,7 +380,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2148, 2150, 2149, 2151]
+ "children": [2165, 2167, 2166, 2168]
}
],
"sources": [
@@ -392,14 +392,14 @@
]
},
{
- "id": 2152,
+ "id": 2169,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2153,
+ "id": 2170,
"name": "ALL",
"variant": "declaration",
"kind": 16,
@@ -417,7 +417,7 @@
}
},
{
- "id": 2156,
+ "id": 2173,
"name": "DELETE",
"variant": "declaration",
"kind": 16,
@@ -435,7 +435,7 @@
}
},
{
- "id": 2154,
+ "id": 2171,
"name": "INSERT",
"variant": "declaration",
"kind": 16,
@@ -453,7 +453,7 @@
}
},
{
- "id": 2155,
+ "id": 2172,
"name": "UPDATE",
"variant": "declaration",
"kind": 16,
@@ -474,7 +474,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2153, 2156, 2154, 2155]
+ "children": [2170, 2173, 2171, 2172]
}
],
"sources": [
@@ -486,14 +486,14 @@
]
},
{
- "id": 2157,
+ "id": 2174,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2159,
+ "id": 2176,
"name": "JOIN",
"variant": "declaration",
"kind": 16,
@@ -511,7 +511,7 @@
}
},
{
- "id": 2160,
+ "id": 2177,
"name": "LEAVE",
"variant": "declaration",
"kind": 16,
@@ -529,7 +529,7 @@
}
},
{
- "id": 2158,
+ "id": 2175,
"name": "SYNC",
"variant": "declaration",
"kind": 16,
@@ -550,7 +550,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2159, 2160, 2158]
+ "children": [2176, 2177, 2175]
}
],
"sources": [
@@ -562,14 +562,14 @@
]
},
{
- "id": 2161,
+ "id": 2178,
"name": "REALTIME_SUBSCRIBE_STATES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2165,
+ "id": 2182,
"name": "CHANNEL_ERROR",
"variant": "declaration",
"kind": 16,
@@ -587,7 +587,7 @@
}
},
{
- "id": 2164,
+ "id": 2181,
"name": "CLOSED",
"variant": "declaration",
"kind": 16,
@@ -605,7 +605,7 @@
}
},
{
- "id": 2162,
+ "id": 2179,
"name": "SUBSCRIBED",
"variant": "declaration",
"kind": 16,
@@ -623,7 +623,7 @@
}
},
{
- "id": 2163,
+ "id": 2180,
"name": "TIMED_OUT",
"variant": "declaration",
"kind": 16,
@@ -644,7 +644,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2165, 2164, 2162, 2163]
+ "children": [2182, 2181, 2179, 2180]
}
],
"sources": [
@@ -656,7 +656,7 @@
]
},
{
- "id": 1461,
+ "id": 1478,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -682,7 +682,7 @@
},
"children": [
{
- "id": 1462,
+ "id": 1479,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -696,7 +696,7 @@
],
"signatures": [
{
- "id": 1463,
+ "id": 1480,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -710,7 +710,7 @@
],
"parameters": [
{
- "id": 1464,
+ "id": 1481,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -721,7 +721,7 @@
}
},
{
- "id": 1465,
+ "id": 1482,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -732,7 +732,7 @@
}
},
{
- "id": 1466,
+ "id": 1483,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -754,25 +754,25 @@
],
"type": {
"type": "reference",
- "target": 1461,
+ "target": 1478,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1453,
+ "target": 1470,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1452,
+ "target": 1469,
"name": "AuthError.constructor"
}
},
{
- "id": 1470,
+ "id": 1487,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -793,12 +793,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1460,
+ "target": 1477,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1468,
+ "id": 1485,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -855,7 +855,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1469,
+ "id": 1486,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -868,12 +868,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1457,
+ "target": 1474,
"name": "AuthError.code"
}
},
{
- "id": 1467,
+ "id": 1484,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -899,7 +899,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1459,
+ "target": 1476,
"name": "AuthError.status"
}
}
@@ -907,11 +907,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1462]
+ "children": [1479]
},
{
"title": "Properties",
- "children": [1470, 1468, 1467]
+ "children": [1487, 1485, 1484]
}
],
"sources": [
@@ -924,14 +924,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1451,
+ "id": 1468,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -957,7 +957,7 @@
},
"children": [
{
- "id": 1452,
+ "id": 1469,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -971,7 +971,7 @@
],
"signatures": [
{
- "id": 1453,
+ "id": 1470,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -985,7 +985,7 @@
],
"parameters": [
{
- "id": 1454,
+ "id": 1471,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -996,7 +996,7 @@
}
},
{
- "id": 1455,
+ "id": 1472,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -1009,7 +1009,7 @@
}
},
{
- "id": 1456,
+ "id": 1473,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -1024,7 +1024,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -1042,7 +1042,7 @@
}
},
{
- "id": 1460,
+ "id": 1477,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1062,7 +1062,7 @@
}
},
{
- "id": 1457,
+ "id": 1474,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1117,7 +1117,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1458,
+ "id": 1475,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1130,7 +1130,7 @@
}
},
{
- "id": 1459,
+ "id": 1476,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1168,11 +1168,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1452]
+ "children": [1469]
},
{
"title": "Properties",
- "children": [1460, 1457, 1459]
+ "children": [1477, 1474, 1476]
}
],
"sources": [
@@ -1196,23 +1196,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1461,
+ "target": 1478,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1471,
+ "target": 1488,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError"
}
]
},
{
- "id": 1518,
+ "id": 1535,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -1238,7 +1238,7 @@
},
"children": [
{
- "id": 1519,
+ "id": 1536,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1252,7 +1252,7 @@
],
"signatures": [
{
- "id": 1520,
+ "id": 1537,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -1266,7 +1266,7 @@
],
"parameters": [
{
- "id": 1521,
+ "id": 1538,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1277,7 +1277,7 @@
}
},
{
- "id": 1522,
+ "id": 1539,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -1294,14 +1294,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1523,
+ "id": 1540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1525,
+ "id": 1542,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1319,7 +1319,7 @@
}
},
{
- "id": 1524,
+ "id": 1541,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1340,7 +1340,7 @@
"groups": [
{
"title": "Properties",
- "children": [1525, 1524]
+ "children": [1542, 1541]
}
],
"sources": [
@@ -1358,25 +1358,25 @@
],
"type": {
"type": "reference",
- "target": 1518,
+ "target": 1535,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1544,
+ "id": 1561,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1397,12 +1397,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1542,
+ "id": 1559,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1459,7 +1459,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1543,
+ "id": 1560,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1472,12 +1472,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1526,
+ "id": 1543,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1499,14 +1499,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1527,
+ "id": 1544,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1529,
+ "id": 1546,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1524,7 +1524,7 @@
}
},
{
- "id": 1528,
+ "id": 1545,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1545,7 +1545,7 @@
"groups": [
{
"title": "Properties",
- "children": [1529, 1528]
+ "children": [1546, 1545]
}
],
"sources": [
@@ -1561,7 +1561,7 @@
}
},
{
- "id": 1540,
+ "id": 1557,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1581,12 +1581,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1541,
+ "id": 1558,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1614,12 +1614,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
},
{
- "id": 1530,
+ "id": 1547,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -1633,7 +1633,7 @@
],
"signatures": [
{
- "id": 1531,
+ "id": 1548,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -1648,14 +1648,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1532,
+ "id": 1549,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1536,
+ "id": 1553,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1677,14 +1677,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1537,
+ "id": 1554,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1539,
+ "id": 1556,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1702,7 +1702,7 @@
}
},
{
- "id": 1538,
+ "id": 1555,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1723,7 +1723,7 @@
"groups": [
{
"title": "Properties",
- "children": [1539, 1538]
+ "children": [1556, 1555]
}
],
"sources": [
@@ -1739,7 +1739,7 @@
}
},
{
- "id": 1534,
+ "id": 1551,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -1757,7 +1757,7 @@
}
},
{
- "id": 1533,
+ "id": 1550,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1775,7 +1775,7 @@
}
},
{
- "id": 1535,
+ "id": 1552,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1796,7 +1796,7 @@
"groups": [
{
"title": "Properties",
- "children": [1536, 1534, 1533, 1535]
+ "children": [1553, 1551, 1550, 1552]
}
],
"sources": [
@@ -1815,15 +1815,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1519]
+ "children": [1536]
},
{
"title": "Properties",
- "children": [1544, 1542, 1526, 1540, 1541]
+ "children": [1561, 1559, 1543, 1557, 1558]
},
{
"title": "Methods",
- "children": [1530]
+ "children": [1547]
}
],
"sources": [
@@ -1836,14 +1836,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1509,
+ "id": 1526,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -1869,7 +1869,7 @@
},
"children": [
{
- "id": 1510,
+ "id": 1527,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1883,7 +1883,7 @@
],
"signatures": [
{
- "id": 1511,
+ "id": 1528,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -1897,7 +1897,7 @@
],
"parameters": [
{
- "id": 1512,
+ "id": 1529,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1910,25 +1910,25 @@
],
"type": {
"type": "reference",
- "target": 1509,
+ "target": 1526,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1517,
+ "id": 1534,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1949,12 +1949,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1515,
+ "id": 1532,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2011,7 +2011,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1516,
+ "id": 1533,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2024,12 +2024,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1513,
+ "id": 1530,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2049,12 +2049,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1514,
+ "id": 1531,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2082,7 +2082,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -2090,11 +2090,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1510]
+ "children": [1527]
},
{
"title": "Properties",
- "children": [1517, 1515, 1513, 1514]
+ "children": [1534, 1532, 1530, 1531]
}
],
"sources": [
@@ -2107,14 +2107,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1594,
+ "id": 1611,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -2140,7 +2140,7 @@
},
"children": [
{
- "id": 1595,
+ "id": 1612,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2154,7 +2154,7 @@
],
"signatures": [
{
- "id": 1596,
+ "id": 1613,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -2168,7 +2168,7 @@
],
"parameters": [
{
- "id": 1597,
+ "id": 1614,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2181,25 +2181,25 @@
],
"type": {
"type": "reference",
- "target": 1594,
+ "target": 1611,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1602,
+ "id": 1619,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2220,12 +2220,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1600,
+ "id": 1617,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2282,7 +2282,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1601,
+ "id": 1618,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2295,12 +2295,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1598,
+ "id": 1615,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2320,12 +2320,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1599,
+ "id": 1616,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2353,7 +2353,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -2361,11 +2361,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1595]
+ "children": [1612]
},
{
"title": "Properties",
- "children": [1602, 1600, 1598, 1599]
+ "children": [1619, 1617, 1615, 1616]
}
],
"sources": [
@@ -2378,14 +2378,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1501,
+ "id": 1518,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -2411,7 +2411,7 @@
},
"children": [
{
- "id": 1502,
+ "id": 1519,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2425,7 +2425,7 @@
],
"signatures": [
{
- "id": 1503,
+ "id": 1520,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -2439,25 +2439,25 @@
],
"type": {
"type": "reference",
- "target": 1501,
+ "target": 1518,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1508,
+ "id": 1525,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2478,12 +2478,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1506,
+ "id": 1523,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2540,7 +2540,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1507,
+ "id": 1524,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2553,12 +2553,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1504,
+ "id": 1521,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2578,12 +2578,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1505,
+ "id": 1522,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2611,7 +2611,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -2619,11 +2619,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1502]
+ "children": [1519]
},
{
"title": "Properties",
- "children": [1508, 1506, 1504, 1505]
+ "children": [1525, 1523, 1521, 1522]
}
],
"sources": [
@@ -2636,14 +2636,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1545,
+ "id": 1562,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -2669,7 +2669,7 @@
},
"children": [
{
- "id": 1546,
+ "id": 1563,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2683,7 +2683,7 @@
],
"signatures": [
{
- "id": 1547,
+ "id": 1564,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -2697,7 +2697,7 @@
],
"parameters": [
{
- "id": 1548,
+ "id": 1565,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2708,7 +2708,7 @@
}
},
{
- "id": 1549,
+ "id": 1566,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -2725,14 +2725,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1550,
+ "id": 1567,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1552,
+ "id": 1569,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2750,7 +2750,7 @@
}
},
{
- "id": 1551,
+ "id": 1568,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2771,7 +2771,7 @@
"groups": [
{
"title": "Properties",
- "children": [1552, 1551]
+ "children": [1569, 1568]
}
],
"sources": [
@@ -2789,25 +2789,25 @@
],
"type": {
"type": "reference",
- "target": 1545,
+ "target": 1562,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1571,
+ "id": 1588,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2828,12 +2828,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1569,
+ "id": 1586,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2890,7 +2890,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1570,
+ "id": 1587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2903,12 +2903,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1553,
+ "id": 1570,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2930,14 +2930,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1554,
+ "id": 1571,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1556,
+ "id": 1573,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2955,7 +2955,7 @@
}
},
{
- "id": 1555,
+ "id": 1572,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2976,7 +2976,7 @@
"groups": [
{
"title": "Properties",
- "children": [1556, 1555]
+ "children": [1573, 1572]
}
],
"sources": [
@@ -2992,7 +2992,7 @@
}
},
{
- "id": 1567,
+ "id": 1584,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3012,12 +3012,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1568,
+ "id": 1585,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3045,12 +3045,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
},
{
- "id": 1557,
+ "id": 1574,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -3064,7 +3064,7 @@
],
"signatures": [
{
- "id": 1558,
+ "id": 1575,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -3079,14 +3079,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1559,
+ "id": 1576,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1563,
+ "id": 1580,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -3108,14 +3108,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1564,
+ "id": 1581,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1566,
+ "id": 1583,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3133,7 +3133,7 @@
}
},
{
- "id": 1565,
+ "id": 1582,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3154,7 +3154,7 @@
"groups": [
{
"title": "Properties",
- "children": [1566, 1565]
+ "children": [1583, 1582]
}
],
"sources": [
@@ -3170,7 +3170,7 @@
}
},
{
- "id": 1561,
+ "id": 1578,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -3188,7 +3188,7 @@
}
},
{
- "id": 1560,
+ "id": 1577,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3206,7 +3206,7 @@
}
},
{
- "id": 1562,
+ "id": 1579,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3227,7 +3227,7 @@
"groups": [
{
"title": "Properties",
- "children": [1563, 1561, 1560, 1562]
+ "children": [1580, 1578, 1577, 1579]
}
],
"sources": [
@@ -3246,15 +3246,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1546]
+ "children": [1563]
},
{
"title": "Properties",
- "children": [1571, 1569, 1553, 1567, 1568]
+ "children": [1588, 1586, 1570, 1584, 1585]
},
{
"title": "Methods",
- "children": [1557]
+ "children": [1574]
}
],
"sources": [
@@ -3267,14 +3267,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1572,
+ "id": 1589,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -3300,7 +3300,7 @@
},
"children": [
{
- "id": 1573,
+ "id": 1590,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3314,7 +3314,7 @@
],
"signatures": [
{
- "id": 1574,
+ "id": 1591,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -3328,7 +3328,7 @@
],
"parameters": [
{
- "id": 1575,
+ "id": 1592,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3339,7 +3339,7 @@
}
},
{
- "id": 1576,
+ "id": 1593,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3352,25 +3352,25 @@
],
"type": {
"type": "reference",
- "target": 1572,
+ "target": 1589,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1581,
+ "id": 1598,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3391,12 +3391,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1579,
+ "id": 1596,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3453,7 +3453,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1580,
+ "id": 1597,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3466,12 +3466,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1577,
+ "id": 1594,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3491,12 +3491,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1578,
+ "id": 1595,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3524,7 +3524,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -3532,11 +3532,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1573]
+ "children": [1590]
},
{
"title": "Properties",
- "children": [1581, 1579, 1577, 1578]
+ "children": [1598, 1596, 1594, 1595]
}
],
"sources": [
@@ -3549,14 +3549,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1493,
+ "id": 1510,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -3582,7 +3582,7 @@
},
"children": [
{
- "id": 1494,
+ "id": 1511,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3596,7 +3596,7 @@
],
"signatures": [
{
- "id": 1495,
+ "id": 1512,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -3610,25 +3610,25 @@
],
"type": {
"type": "reference",
- "target": 1493,
+ "target": 1510,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1500,
+ "id": 1517,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3649,12 +3649,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1498,
+ "id": 1515,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3711,7 +3711,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1499,
+ "id": 1516,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3724,12 +3724,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1496,
+ "id": 1513,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3749,12 +3749,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1497,
+ "id": 1514,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3782,7 +3782,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -3790,11 +3790,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1494]
+ "children": [1511]
},
{
"title": "Properties",
- "children": [1500, 1498, 1496, 1497]
+ "children": [1517, 1515, 1513, 1514]
}
],
"sources": [
@@ -3807,14 +3807,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1471,
+ "id": 1488,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -3840,7 +3840,7 @@
},
"children": [
{
- "id": 1472,
+ "id": 1489,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3854,7 +3854,7 @@
],
"signatures": [
{
- "id": 1473,
+ "id": 1490,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -3868,7 +3868,7 @@
],
"parameters": [
{
- "id": 1474,
+ "id": 1491,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3879,7 +3879,7 @@
}
},
{
- "id": 1475,
+ "id": 1492,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -3892,25 +3892,25 @@
],
"type": {
"type": "reference",
- "target": 1471,
+ "target": 1488,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1453,
+ "target": 1470,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1452,
+ "target": 1469,
"name": "AuthError.constructor"
}
},
{
- "id": 1480,
+ "id": 1497,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3931,12 +3931,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1460,
+ "target": 1477,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1477,
+ "id": 1494,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3993,7 +3993,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1478,
+ "id": 1495,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4006,12 +4006,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1457,
+ "target": 1474,
"name": "AuthError.code"
}
},
{
- "id": 1476,
+ "id": 1493,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -4029,7 +4029,7 @@
}
},
{
- "id": 1479,
+ "id": 1496,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4066,7 +4066,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1459,
+ "target": 1476,
"name": "AuthError.status"
}
}
@@ -4074,11 +4074,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1472]
+ "children": [1489]
},
{
"title": "Properties",
- "children": [1480, 1477, 1476, 1479]
+ "children": [1497, 1494, 1493, 1496]
}
],
"sources": [
@@ -4091,14 +4091,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1582,
+ "id": 1599,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -4124,7 +4124,7 @@
},
"children": [
{
- "id": 1583,
+ "id": 1600,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4138,7 +4138,7 @@
],
"signatures": [
{
- "id": 1584,
+ "id": 1601,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -4152,7 +4152,7 @@
],
"parameters": [
{
- "id": 1585,
+ "id": 1602,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4163,7 +4163,7 @@
}
},
{
- "id": 1586,
+ "id": 1603,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4174,7 +4174,7 @@
}
},
{
- "id": 1587,
+ "id": 1604,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -4203,25 +4203,25 @@
],
"type": {
"type": "reference",
- "target": 1582,
+ "target": 1599,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1593,
+ "id": 1610,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4242,12 +4242,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1591,
+ "id": 1608,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4304,7 +4304,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1592,
+ "id": 1609,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4317,12 +4317,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1589,
+ "id": 1606,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4342,12 +4342,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1588,
+ "id": 1605,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -4389,7 +4389,7 @@
}
},
{
- "id": 1590,
+ "id": 1607,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4417,7 +4417,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -4425,11 +4425,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1583]
+ "children": [1600]
},
{
"title": "Properties",
- "children": [1593, 1591, 1589, 1588, 1590]
+ "children": [1610, 1608, 1606, 1605, 1607]
}
],
"sources": [
@@ -4442,14 +4442,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1481,
+ "id": 1498,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -4475,7 +4475,7 @@
},
"children": [
{
- "id": 1482,
+ "id": 1499,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4489,7 +4489,7 @@
],
"signatures": [
{
- "id": 1483,
+ "id": 1500,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -4503,7 +4503,7 @@
],
"parameters": [
{
- "id": 1484,
+ "id": 1501,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4514,7 +4514,7 @@
}
},
{
- "id": 1485,
+ "id": 1502,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -4525,7 +4525,7 @@
}
},
{
- "id": 1486,
+ "id": 1503,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4536,7 +4536,7 @@
}
},
{
- "id": 1487,
+ "id": 1504,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -4558,25 +4558,25 @@
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1453,
+ "target": 1470,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1452,
+ "target": 1469,
"name": "AuthError.constructor"
}
},
{
- "id": 1492,
+ "id": 1509,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4597,12 +4597,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1460,
+ "target": 1477,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1490,
+ "id": 1507,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4659,7 +4659,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1491,
+ "id": 1508,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4672,12 +4672,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1457,
+ "target": 1474,
"name": "AuthError.code"
}
},
{
- "id": 1488,
+ "id": 1505,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4700,7 +4700,7 @@
}
},
{
- "id": 1489,
+ "id": 1506,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4726,7 +4726,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1459,
+ "target": 1476,
"name": "AuthError.status"
}
}
@@ -4734,11 +4734,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1482]
+ "children": [1499]
},
{
"title": "Properties",
- "children": [1492, 1490, 1488, 1489]
+ "children": [1509, 1507, 1505, 1506]
}
],
"sources": [
@@ -4751,7 +4751,7 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -4759,42 +4759,42 @@
"extendedBy": [
{
"type": "reference",
- "target": 1493,
+ "target": 1510,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1501,
+ "target": 1518,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1509,
+ "target": 1526,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1518,
+ "target": 1535,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1545,
+ "target": 1562,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1572,
+ "target": 1589,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1582,
+ "target": 1599,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1594,
+ "target": 1611,
"name": "AuthInvalidJwtError"
}
]
@@ -6112,7 +6112,7 @@
],
"type": {
"type": "reference",
- "target": 1248,
+ "target": 1250,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -6140,7 +6140,7 @@
],
"type": {
"type": "reference",
- "target": 1374,
+ "target": 1376,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -6217,7 +6217,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 848,
+ "target": 850,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -6232,7 +6232,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6345,7 +6345,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6400,7 +6400,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1058,
+ "target": 1060,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -6415,7 +6415,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1059,
+ "target": 1061,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -6499,7 +6499,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6681,7 +6681,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6770,7 +6770,7 @@
},
"type": {
"type": "reference",
- "target": 1269,
+ "target": 1271,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -6879,7 +6879,7 @@
},
{
"type": "reference",
- "target": 1262,
+ "target": 1264,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -7000,7 +7000,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7176,7 +7176,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7277,7 +7277,7 @@
},
"type": {
"type": "reference",
- "target": 848,
+ "target": 850,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -7292,7 +7292,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7388,7 +7388,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 712,
+ "target": 714,
"name": "GoTrueClientOptions",
"package": "@supabase/auth-js"
}
@@ -7795,7 +7795,7 @@
],
"type": {
"type": "reference",
- "target": 907,
+ "target": 909,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -7933,7 +7933,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1258,
+ "target": 1260,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -7961,7 +7961,7 @@
],
"type": {
"type": "reference",
- "target": 703,
+ "target": 705,
"name": "LockFunc",
"package": "@supabase/auth-js"
}
@@ -8186,7 +8186,7 @@
],
"type": {
"type": "reference",
- "target": 1118,
+ "target": 1120,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -8214,7 +8214,7 @@
],
"type": {
"type": "reference",
- "target": 1417,
+ "target": 1427,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -8304,7 +8304,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1261,
+ "target": 1263,
"name": "CallRefreshTokenResult",
"package": "@supabase/auth-js"
}
@@ -8352,7 +8352,7 @@
},
{
"type": "reference",
- "target": 861,
+ "target": 863,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -8378,7 +8378,7 @@
],
"type": {
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -8499,7 +8499,7 @@
},
{
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -8646,7 +8646,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -8715,7 +8715,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -8907,7 +8907,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9026,7 +9026,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9077,7 +9077,7 @@
},
"type": {
"type": "reference",
- "target": 1273,
+ "target": 1275,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -9121,7 +9121,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9189,7 +9189,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 842,
+ "target": 844,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -9258,7 +9258,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -9326,7 +9326,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 776,
+ "target": 778,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -9338,7 +9338,7 @@
]
},
{
- "id": 651,
+ "id": 653,
"name": "getClaims",
"variant": "declaration",
"kind": 2048,
@@ -9346,13 +9346,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 572,
+ "line": 582,
"character": 4
}
],
"signatures": [
{
- "id": 652,
+ "id": 654,
"name": "getClaims",
"variant": "signature",
"kind": 4096,
@@ -9394,13 +9394,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 572,
+ "line": 582,
"character": 4
}
],
"parameters": [
{
- "id": 653,
+ "id": 655,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -9430,7 +9430,7 @@
}
},
{
- "id": 654,
+ "id": 656,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -9448,14 +9448,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 655,
+ "id": 657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 657,
+ "id": 659,
"name": "allowExpired",
"variant": "declaration",
"kind": 1024,
@@ -9489,7 +9489,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 578,
+ "line": 588,
"character": 8
}
],
@@ -9499,7 +9499,7 @@
}
},
{
- "id": 658,
+ "id": 660,
"name": "jwks",
"variant": "declaration",
"kind": 1024,
@@ -9517,21 +9517,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 580,
+ "line": 590,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 659,
+ "id": 661,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 660,
+ "id": 662,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -9539,7 +9539,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 581,
+ "line": 591,
"character": 12
}
],
@@ -9547,7 +9547,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9557,13 +9557,13 @@
"groups": [
{
"title": "Properties",
- "children": [660]
+ "children": [662]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 580,
+ "line": 590,
"character": 15
}
]
@@ -9571,7 +9571,7 @@
}
},
{
- "id": 656,
+ "id": 658,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -9595,7 +9595,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 576,
+ "line": 586,
"character": 8
}
],
@@ -9603,7 +9603,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9613,13 +9613,13 @@
"groups": [
{
"title": "Properties",
- "children": [657, 658, 656]
+ "children": [659, 660, 658]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 572,
+ "line": 582,
"character": 38
}
]
@@ -9640,14 +9640,14 @@
{
"type": "reflection",
"declaration": {
- "id": 661,
+ "id": 663,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 662,
+ "id": 664,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -9655,21 +9655,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 584,
+ "line": 594,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 663,
+ "id": 665,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 664,
+ "id": 666,
"name": "claims",
"variant": "declaration",
"kind": 1024,
@@ -9677,19 +9677,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 585,
+ "line": 595,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 1297,
+ "target": 1299,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
},
{
- "id": 665,
+ "id": 667,
"name": "header",
"variant": "declaration",
"kind": 1024,
@@ -9697,19 +9697,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 586,
+ "line": 596,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 1282,
+ "target": 1284,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
},
{
- "id": 666,
+ "id": 668,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -9717,7 +9717,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 587,
+ "line": 597,
"character": 12
}
],
@@ -9735,13 +9735,13 @@
"groups": [
{
"title": "Properties",
- "children": [664, 665, 666]
+ "children": [666, 667, 668]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 584,
+ "line": 594,
"character": 14
}
]
@@ -9749,7 +9749,7 @@
}
},
{
- "id": 667,
+ "id": 669,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -9757,7 +9757,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 589,
+ "line": 599,
"character": 8
}
],
@@ -9770,13 +9770,13 @@
"groups": [
{
"title": "Properties",
- "children": [662, 667]
+ "children": [664, 669]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 583,
+ "line": 593,
"character": 16
}
]
@@ -9785,14 +9785,14 @@
{
"type": "reflection",
"declaration": {
- "id": 668,
+ "id": 670,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 669,
+ "id": 671,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -9800,7 +9800,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 591,
+ "line": 601,
"character": 8
}
],
@@ -9810,7 +9810,7 @@
}
},
{
- "id": 670,
+ "id": 672,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -9818,13 +9818,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 592,
+ "line": 602,
"character": 8
}
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9833,13 +9833,13 @@
"groups": [
{
"title": "Properties",
- "children": [669, 670]
+ "children": [671, 672]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 590,
+ "line": 600,
"character": 8
}
]
@@ -9848,14 +9848,14 @@
{
"type": "reflection",
"declaration": {
- "id": 671,
+ "id": 673,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 672,
+ "id": 674,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -9863,7 +9863,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 594,
+ "line": 604,
"character": 8
}
],
@@ -9873,7 +9873,7 @@
}
},
{
- "id": 673,
+ "id": 675,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -9881,7 +9881,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 595,
+ "line": 605,
"character": 8
}
],
@@ -9894,13 +9894,13 @@
"groups": [
{
"title": "Properties",
- "children": [672, 673]
+ "children": [674, 675]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 593,
+ "line": 603,
"character": 8
}
]
@@ -10152,7 +10152,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10349,7 +10349,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10453,7 +10453,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 810,
+ "target": 812,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -10552,7 +10552,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10626,7 +10626,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1258,
+ "target": 1260,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -10728,7 +10728,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 908,
+ "target": 910,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -10743,7 +10743,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 785,
+ "target": 787,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -10782,7 +10782,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 920,
+ "target": 922,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -10797,7 +10797,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 776,
+ "target": 778,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -10901,7 +10901,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 702,
+ "target": 704,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -10985,7 +10985,7 @@
],
"type": {
"type": "reference",
- "target": 861,
+ "target": 863,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11117,7 +11117,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 702,
+ "target": 704,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -11212,7 +11212,7 @@
],
"type": {
"type": "reference",
- "target": 861,
+ "target": 863,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11297,7 +11297,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -11414,7 +11414,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -11469,7 +11469,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1004,
+ "target": 1006,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -11484,7 +11484,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 771,
+ "target": 773,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -11760,7 +11760,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11912,7 +11912,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -11980,7 +11980,7 @@
},
"type": {
"type": "reference",
- "target": 871,
+ "target": 873,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -11995,7 +11995,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12050,7 +12050,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 920,
+ "target": 922,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -12065,7 +12065,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 776,
+ "target": 778,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -12120,7 +12120,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 908,
+ "target": 910,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -12135,7 +12135,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 785,
+ "target": 787,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -12206,7 +12206,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 890,
+ "target": 892,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -12221,7 +12221,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 771,
+ "target": 773,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -12276,7 +12276,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 885,
+ "target": 887,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -12291,7 +12291,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 780,
+ "target": 782,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -12346,7 +12346,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1018,
+ "target": 1020,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -12361,7 +12361,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 800,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -12427,7 +12427,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 981,
+ "target": 983,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -12664,7 +12664,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12780,7 +12780,7 @@
},
"type": {
"type": "reference",
- "target": 1273,
+ "target": 1275,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -12824,7 +12824,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12918,7 +12918,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 877,
+ "target": 879,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -12933,7 +12933,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12974,7 +12974,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueClientOptions#autoRefreshToken",
- "target": 721
+ "target": 723
},
{
"kind": "text",
@@ -13118,7 +13118,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 810,
+ "target": 812,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -13243,7 +13243,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13317,7 +13317,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 842,
+ "target": 844,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -13386,7 +13386,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -13441,7 +13441,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 982,
+ "target": 984,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -13456,7 +13456,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -13487,7 +13487,7 @@
{
"title": "Methods",
"children": [
- 540, 529, 553, 517, 448, 651, 487, 507, 594, 433, 428, 604, 558, 481, 535, 484, 580,
+ 540, 529, 553, 517, 448, 653, 487, 507, 594, 433, 428, 604, 558, 481, 535, 484, 580,
523, 436, 469, 445, 472, 442, 478, 451, 548, 439, 632, 634, 611, 511, 475
]
}
@@ -13501,7 +13501,7 @@
]
},
{
- "id": 684,
+ "id": 686,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "declaration",
"kind": 128,
@@ -13527,7 +13527,7 @@
},
"children": [
{
- "id": 685,
+ "id": 687,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -13541,7 +13541,7 @@
],
"signatures": [
{
- "id": 686,
+ "id": 688,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "signature",
"kind": 16384,
@@ -13555,7 +13555,7 @@
],
"parameters": [
{
- "id": 687,
+ "id": 689,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -13568,7 +13568,7 @@
],
"type": {
"type": "reference",
- "target": 684,
+ "target": 686,
"name": "NavigatorLockAcquireTimeoutError",
"package": "@supabase/auth-js"
},
@@ -13586,7 +13586,7 @@
}
},
{
- "id": 688,
+ "id": 690,
"name": "isAcquireTimeout",
"variant": "declaration",
"kind": 1024,
@@ -13616,11 +13616,11 @@
"groups": [
{
"title": "Constructors",
- "children": [685]
+ "children": [687]
},
{
"title": "Properties",
- "children": [688]
+ "children": [690]
}
],
"sources": [
@@ -13915,7 +13915,7 @@
]
},
{
- "id": 1620,
+ "id": 1637,
"name": "RealtimeChannel",
"variant": "declaration",
"kind": 128,
@@ -13930,7 +13930,7 @@
},
"children": [
{
- "id": 1621,
+ "id": 1638,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -13944,7 +13944,7 @@
],
"signatures": [
{
- "id": 1622,
+ "id": 1639,
"name": "RealtimeChannel",
"variant": "signature",
"kind": 16384,
@@ -13977,7 +13977,7 @@
],
"parameters": [
{
- "id": 1623,
+ "id": 1640,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -13996,7 +13996,7 @@
}
},
{
- "id": 1624,
+ "id": 1641,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14010,7 +14010,7 @@
},
{
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -14018,14 +14018,14 @@
}
},
{
- "id": 1625,
+ "id": 1642,
"name": "socket",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14034,7 +14034,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14043,7 +14043,7 @@
]
},
{
- "id": 1629,
+ "id": 1646,
"name": "bindings",
"variant": "declaration",
"kind": 1024,
@@ -14058,7 +14058,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1630,
+ "id": 1647,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14072,7 +14072,7 @@
],
"indexSignatures": [
{
- "id": 1631,
+ "id": 1648,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14086,7 +14086,7 @@
],
"parameters": [
{
- "id": 1632,
+ "id": 1649,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14102,14 +14102,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 1633,
+ "id": 1650,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1639,
+ "id": 1656,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -14132,7 +14132,7 @@
}
},
{
- "id": 1635,
+ "id": 1652,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -14147,7 +14147,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1636,
+ "id": 1653,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14161,7 +14161,7 @@
],
"indexSignatures": [
{
- "id": 1637,
+ "id": 1654,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14175,7 +14175,7 @@
],
"parameters": [
{
- "id": 1638,
+ "id": 1655,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14196,7 +14196,7 @@
}
},
{
- "id": 1640,
+ "id": 1657,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -14216,7 +14216,7 @@
}
},
{
- "id": 1634,
+ "id": 1651,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -14237,7 +14237,7 @@
"groups": [
{
"title": "Properties",
- "children": [1639, 1635, 1640, 1634]
+ "children": [1656, 1652, 1657, 1651]
}
],
"sources": [
@@ -14256,7 +14256,7 @@
}
},
{
- "id": 1648,
+ "id": 1665,
"name": "broadcastEndpointURL",
"variant": "declaration",
"kind": 1024,
@@ -14274,7 +14274,7 @@
}
},
{
- "id": 1643,
+ "id": 1660,
"name": "joinedOnce",
"variant": "declaration",
"kind": 1024,
@@ -14292,7 +14292,7 @@
}
},
{
- "id": 1644,
+ "id": 1661,
"name": "joinPush",
"variant": "declaration",
"kind": 1024,
@@ -14316,7 +14316,7 @@
}
},
{
- "id": 1627,
+ "id": 1644,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -14330,13 +14330,13 @@
],
"type": {
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1647,
+ "id": 1664,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -14350,14 +14350,14 @@
],
"type": {
"type": "reference",
- "target": 1603,
+ "target": 1620,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1650,
+ "id": 1667,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -14375,7 +14375,7 @@
}
},
{
- "id": 1646,
+ "id": 1663,
"name": "pushBuffer",
"variant": "declaration",
"kind": 1024,
@@ -14402,7 +14402,7 @@
}
},
{
- "id": 1645,
+ "id": 1662,
"name": "rejoinTimer",
"variant": "declaration",
"kind": 1024,
@@ -14426,7 +14426,7 @@
}
},
{
- "id": 1628,
+ "id": 1645,
"name": "socket",
"variant": "declaration",
"kind": 1024,
@@ -14440,14 +14440,14 @@
],
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1642,
+ "id": 1659,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -14470,7 +14470,7 @@
}
},
{
- "id": 1649,
+ "id": 1666,
"name": "subTopic",
"variant": "declaration",
"kind": 1024,
@@ -14488,7 +14488,7 @@
}
},
{
- "id": 1641,
+ "id": 1658,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -14506,7 +14506,7 @@
}
},
{
- "id": 1626,
+ "id": 1643,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -14532,7 +14532,7 @@
}
},
{
- "id": 1877,
+ "id": 1894,
"name": "httpSend",
"variant": "declaration",
"kind": 2048,
@@ -14546,7 +14546,7 @@
],
"signatures": [
{
- "id": 1878,
+ "id": 1895,
"name": "httpSend",
"variant": "signature",
"kind": 4096,
@@ -14579,7 +14579,7 @@
],
"parameters": [
{
- "id": 1879,
+ "id": 1896,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -14598,7 +14598,7 @@
}
},
{
- "id": 1880,
+ "id": 1897,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -14617,7 +14617,7 @@
}
},
{
- "id": 1881,
+ "id": 1898,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -14635,14 +14635,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1882,
+ "id": 1899,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1883,
+ "id": 1900,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -14665,7 +14665,7 @@
"groups": [
{
"title": "Properties",
- "children": [1883]
+ "children": [1900]
}
],
"sources": [
@@ -14692,14 +14692,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1884,
+ "id": 1901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1885,
+ "id": 1902,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -14720,7 +14720,7 @@
"groups": [
{
"title": "Properties",
- "children": [1885]
+ "children": [1902]
}
],
"sources": [
@@ -14735,14 +14735,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1886,
+ "id": 1903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1889,
+ "id": 1906,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -14760,7 +14760,7 @@
}
},
{
- "id": 1888,
+ "id": 1905,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -14778,7 +14778,7 @@
}
},
{
- "id": 1887,
+ "id": 1904,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -14799,7 +14799,7 @@
"groups": [
{
"title": "Properties",
- "children": [1889, 1888, 1887]
+ "children": [1906, 1905, 1904]
}
],
"sources": [
@@ -14821,7 +14821,7 @@
]
},
{
- "id": 1682,
+ "id": 1699,
"name": "on",
"variant": "declaration",
"kind": 2048,
@@ -14900,7 +14900,7 @@
],
"signatures": [
{
- "id": 1683,
+ "id": 1700,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -14922,7 +14922,7 @@
],
"parameters": [
{
- "id": 1684,
+ "id": 1701,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -14933,7 +14933,7 @@
}
},
{
- "id": 1685,
+ "id": 1702,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -14941,14 +14941,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1686,
+ "id": 1703,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1687,
+ "id": 1704,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -14969,7 +14969,7 @@
"groups": [
{
"title": "Properties",
- "children": [1687]
+ "children": [1704]
}
],
"sources": [
@@ -14983,7 +14983,7 @@
}
},
{
- "id": 1688,
+ "id": 1705,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -14991,7 +14991,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1689,
+ "id": 1706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15005,7 +15005,7 @@
],
"signatures": [
{
- "id": 1690,
+ "id": 1707,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15029,14 +15029,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1691,
+ "id": 1708,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15058,7 +15058,7 @@
],
"typeParameters": [
{
- "id": 1692,
+ "id": 1709,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15066,7 +15066,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1693,
+ "id": 1710,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15080,7 +15080,7 @@
],
"indexSignatures": [
{
- "id": 1694,
+ "id": 1711,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15094,7 +15094,7 @@
],
"parameters": [
{
- "id": 1695,
+ "id": 1712,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15117,7 +15117,7 @@
],
"parameters": [
{
- "id": 1696,
+ "id": 1713,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15128,7 +15128,7 @@
}
},
{
- "id": 1697,
+ "id": 1714,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15136,14 +15136,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1698,
+ "id": 1715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1699,
+ "id": 1716,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15164,7 +15164,7 @@
"groups": [
{
"title": "Properties",
- "children": [1699]
+ "children": [1716]
}
],
"sources": [
@@ -15178,7 +15178,7 @@
}
},
{
- "id": 1700,
+ "id": 1717,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15186,7 +15186,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1701,
+ "id": 1718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15200,7 +15200,7 @@
],
"signatures": [
{
- "id": 1702,
+ "id": 1719,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15214,18 +15214,18 @@
],
"parameters": [
{
- "id": 1703,
+ "id": 1720,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2117,
+ "target": 2134,
"typeArguments": [
{
"type": "reference",
- "target": 1692,
+ "target": 1709,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15248,14 +15248,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1704,
+ "id": 1721,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15277,7 +15277,7 @@
],
"typeParameters": [
{
- "id": 1705,
+ "id": 1722,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15285,7 +15285,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1706,
+ "id": 1723,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15299,7 +15299,7 @@
],
"indexSignatures": [
{
- "id": 1707,
+ "id": 1724,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15313,7 +15313,7 @@
],
"parameters": [
{
- "id": 1708,
+ "id": 1725,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15336,7 +15336,7 @@
],
"parameters": [
{
- "id": 1709,
+ "id": 1726,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15347,7 +15347,7 @@
}
},
{
- "id": 1710,
+ "id": 1727,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15355,14 +15355,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1711,
+ "id": 1728,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1712,
+ "id": 1729,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15383,7 +15383,7 @@
"groups": [
{
"title": "Properties",
- "children": [1712]
+ "children": [1729]
}
],
"sources": [
@@ -15397,7 +15397,7 @@
}
},
{
- "id": 1713,
+ "id": 1730,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15405,7 +15405,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1714,
+ "id": 1731,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15419,7 +15419,7 @@
],
"signatures": [
{
- "id": 1715,
+ "id": 1732,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15433,18 +15433,18 @@
],
"parameters": [
{
- "id": 1716,
+ "id": 1733,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2127,
+ "target": 2144,
"typeArguments": [
{
"type": "reference",
- "target": 1705,
+ "target": 1722,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15467,14 +15467,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1717,
+ "id": 1734,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15496,7 +15496,7 @@
],
"typeParameters": [
{
- "id": 1718,
+ "id": 1735,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15504,7 +15504,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1719,
+ "id": 1736,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15518,7 +15518,7 @@
],
"indexSignatures": [
{
- "id": 1720,
+ "id": 1737,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15532,7 +15532,7 @@
],
"parameters": [
{
- "id": 1721,
+ "id": 1738,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15555,7 +15555,7 @@
],
"parameters": [
{
- "id": 1722,
+ "id": 1739,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15566,14 +15566,14 @@
}
},
{
- "id": 1723,
+ "id": 1740,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -15585,7 +15585,7 @@
}
},
{
- "id": 1724,
+ "id": 1741,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15593,7 +15593,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1725,
+ "id": 1742,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15607,7 +15607,7 @@
],
"signatures": [
{
- "id": 1726,
+ "id": 1743,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15621,18 +15621,18 @@
],
"parameters": [
{
- "id": 1727,
+ "id": 1744,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2083,
+ "target": 2100,
"typeArguments": [
{
"type": "reference",
- "target": 1718,
+ "target": 1735,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15655,14 +15655,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1728,
+ "id": 1745,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15684,7 +15684,7 @@
],
"typeParameters": [
{
- "id": 1729,
+ "id": 1746,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15692,7 +15692,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1730,
+ "id": 1747,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15706,7 +15706,7 @@
],
"indexSignatures": [
{
- "id": 1731,
+ "id": 1748,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15720,7 +15720,7 @@
],
"parameters": [
{
- "id": 1732,
+ "id": 1749,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15743,7 +15743,7 @@
],
"parameters": [
{
- "id": 1733,
+ "id": 1750,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15754,14 +15754,14 @@
}
},
{
- "id": 1734,
+ "id": 1751,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -15773,7 +15773,7 @@
}
},
{
- "id": 1735,
+ "id": 1752,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15781,7 +15781,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1736,
+ "id": 1753,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15795,7 +15795,7 @@
],
"signatures": [
{
- "id": 1737,
+ "id": 1754,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15809,18 +15809,18 @@
],
"parameters": [
{
- "id": 1738,
+ "id": 1755,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2088,
+ "target": 2105,
"typeArguments": [
{
"type": "reference",
- "target": 1729,
+ "target": 1746,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15843,14 +15843,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1739,
+ "id": 1756,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15872,7 +15872,7 @@
],
"typeParameters": [
{
- "id": 1740,
+ "id": 1757,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15880,7 +15880,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1741,
+ "id": 1758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15894,7 +15894,7 @@
],
"indexSignatures": [
{
- "id": 1742,
+ "id": 1759,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15908,7 +15908,7 @@
],
"parameters": [
{
- "id": 1743,
+ "id": 1760,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15931,7 +15931,7 @@
],
"parameters": [
{
- "id": 1744,
+ "id": 1761,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15942,14 +15942,14 @@
}
},
{
- "id": 1745,
+ "id": 1762,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -15961,7 +15961,7 @@
}
},
{
- "id": 1746,
+ "id": 1763,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15969,7 +15969,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1747,
+ "id": 1764,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15983,7 +15983,7 @@
],
"signatures": [
{
- "id": 1748,
+ "id": 1765,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15997,18 +15997,18 @@
],
"parameters": [
{
- "id": 1749,
+ "id": 1766,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2098,
+ "target": 2115,
"typeArguments": [
{
"type": "reference",
- "target": 1740,
+ "target": 1757,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16031,14 +16031,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1750,
+ "id": 1767,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16060,7 +16060,7 @@
],
"typeParameters": [
{
- "id": 1751,
+ "id": 1768,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16068,7 +16068,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1752,
+ "id": 1769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16082,7 +16082,7 @@
],
"indexSignatures": [
{
- "id": 1753,
+ "id": 1770,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16096,7 +16096,7 @@
],
"parameters": [
{
- "id": 1754,
+ "id": 1771,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16119,7 +16119,7 @@
],
"parameters": [
{
- "id": 1755,
+ "id": 1772,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16130,14 +16130,14 @@
}
},
{
- "id": 1756,
+ "id": 1773,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -16149,7 +16149,7 @@
}
},
{
- "id": 1757,
+ "id": 1774,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16157,7 +16157,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1758,
+ "id": 1775,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16171,7 +16171,7 @@
],
"signatures": [
{
- "id": 1759,
+ "id": 1776,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16185,18 +16185,18 @@
],
"parameters": [
{
- "id": 1760,
+ "id": 1777,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2107,
+ "target": 2124,
"typeArguments": [
{
"type": "reference",
- "target": 1751,
+ "target": 1768,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16219,14 +16219,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1761,
+ "id": 1778,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16248,7 +16248,7 @@
],
"parameters": [
{
- "id": 1762,
+ "id": 1779,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16267,7 +16267,7 @@
}
},
{
- "id": 1763,
+ "id": 1780,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -16283,14 +16283,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1764,
+ "id": 1781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1765,
+ "id": 1782,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16311,7 +16311,7 @@
"groups": [
{
"title": "Properties",
- "children": [1765]
+ "children": [1782]
}
],
"sources": [
@@ -16325,7 +16325,7 @@
}
},
{
- "id": 1766,
+ "id": 1783,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16341,7 +16341,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1767,
+ "id": 1784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16355,7 +16355,7 @@
],
"signatures": [
{
- "id": 1768,
+ "id": 1785,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16369,7 +16369,7 @@
],
"parameters": [
{
- "id": 1769,
+ "id": 1786,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -16377,14 +16377,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1770,
+ "id": 1787,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1772,
+ "id": 1789,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16402,7 +16402,7 @@
}
},
{
- "id": 1773,
+ "id": 1790,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -16419,14 +16419,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1774,
+ "id": 1791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1776,
+ "id": 1793,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16444,7 +16444,7 @@
}
},
{
- "id": 1775,
+ "id": 1792,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -16467,7 +16467,7 @@
"groups": [
{
"title": "Properties",
- "children": [1776, 1775]
+ "children": [1793, 1792]
}
],
"sources": [
@@ -16481,7 +16481,7 @@
}
},
{
- "id": 1771,
+ "id": 1788,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -16502,7 +16502,7 @@
"groups": [
{
"title": "Properties",
- "children": [1772, 1773, 1771]
+ "children": [1789, 1790, 1788]
}
],
"sources": [
@@ -16514,7 +16514,7 @@
],
"indexSignatures": [
{
- "id": 1777,
+ "id": 1794,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16528,7 +16528,7 @@
],
"parameters": [
{
- "id": 1778,
+ "id": 1795,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16561,14 +16561,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1779,
+ "id": 1796,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16590,7 +16590,7 @@
],
"typeParameters": [
{
- "id": 1780,
+ "id": 1797,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16598,7 +16598,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1781,
+ "id": 1798,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16612,7 +16612,7 @@
],
"indexSignatures": [
{
- "id": 1782,
+ "id": 1799,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16626,7 +16626,7 @@
],
"parameters": [
{
- "id": 1783,
+ "id": 1800,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16649,7 +16649,7 @@
],
"parameters": [
{
- "id": 1784,
+ "id": 1801,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16660,7 +16660,7 @@
}
},
{
- "id": 1785,
+ "id": 1802,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -16668,14 +16668,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1786,
+ "id": 1803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1787,
+ "id": 1804,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16696,7 +16696,7 @@
"groups": [
{
"title": "Properties",
- "children": [1787]
+ "children": [1804]
}
],
"sources": [
@@ -16710,7 +16710,7 @@
}
},
{
- "id": 1788,
+ "id": 1805,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16718,7 +16718,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1789,
+ "id": 1806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16732,7 +16732,7 @@
],
"signatures": [
{
- "id": 1790,
+ "id": 1807,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16746,7 +16746,7 @@
],
"parameters": [
{
- "id": 1791,
+ "id": 1808,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -16754,14 +16754,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1792,
+ "id": 1809,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1794,
+ "id": 1811,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16779,7 +16779,7 @@
}
},
{
- "id": 1795,
+ "id": 1812,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -16796,14 +16796,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1796,
+ "id": 1813,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1798,
+ "id": 1815,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16821,7 +16821,7 @@
}
},
{
- "id": 1797,
+ "id": 1814,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -16844,7 +16844,7 @@
"groups": [
{
"title": "Properties",
- "children": [1798, 1797]
+ "children": [1815, 1814]
}
],
"sources": [
@@ -16858,7 +16858,7 @@
}
},
{
- "id": 1799,
+ "id": 1816,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -16872,14 +16872,14 @@
],
"type": {
"type": "reference",
- "target": 1780,
+ "target": 1797,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 1793,
+ "id": 1810,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -16900,7 +16900,7 @@
"groups": [
{
"title": "Properties",
- "children": [1794, 1795, 1799, 1793]
+ "children": [1811, 1812, 1816, 1810]
}
],
"sources": [
@@ -16926,14 +16926,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1800,
+ "id": 1817,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16955,7 +16955,7 @@
],
"typeParameters": [
{
- "id": 1801,
+ "id": 1818,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16983,7 +16983,7 @@
],
"parameters": [
{
- "id": 1802,
+ "id": 1819,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16994,7 +16994,7 @@
}
},
{
- "id": 1803,
+ "id": 1820,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17002,14 +17002,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1804,
+ "id": 1821,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1805,
+ "id": 1822,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17023,7 +17023,7 @@
],
"type": {
"type": "reference",
- "target": 2153,
+ "target": 2170,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
@@ -17033,7 +17033,7 @@
"groups": [
{
"title": "Properties",
- "children": [1805]
+ "children": [1822]
}
],
"sources": [
@@ -17047,7 +17047,7 @@
}
},
{
- "id": 1806,
+ "id": 1823,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17055,7 +17055,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1807,
+ "id": 1824,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17069,7 +17069,7 @@
],
"signatures": [
{
- "id": 1808,
+ "id": 1825,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17083,7 +17083,7 @@
],
"parameters": [
{
- "id": 1809,
+ "id": 1826,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17091,14 +17091,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1810,
+ "id": 1827,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1812,
+ "id": 1829,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17112,14 +17112,14 @@
],
"type": {
"type": "reference",
- "target": 2153,
+ "target": 2170,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
}
},
{
- "id": 1813,
+ "id": 1830,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17140,7 +17140,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1801,
+ "target": 1818,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17151,7 +17151,7 @@
}
},
{
- "id": 1811,
+ "id": 1828,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17172,7 +17172,7 @@
"groups": [
{
"title": "Properties",
- "children": [1812, 1813, 1811]
+ "children": [1829, 1830, 1828]
}
],
"sources": [
@@ -17198,14 +17198,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1814,
+ "id": 1831,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17227,7 +17227,7 @@
],
"typeParameters": [
{
- "id": 1815,
+ "id": 1832,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17235,7 +17235,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1816,
+ "id": 1833,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17249,7 +17249,7 @@
],
"indexSignatures": [
{
- "id": 1817,
+ "id": 1834,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17263,7 +17263,7 @@
],
"parameters": [
{
- "id": 1818,
+ "id": 1835,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17286,7 +17286,7 @@
],
"parameters": [
{
- "id": 1819,
+ "id": 1836,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17297,7 +17297,7 @@
}
},
{
- "id": 1820,
+ "id": 1837,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17305,14 +17305,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1821,
+ "id": 1838,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1822,
+ "id": 1839,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17326,7 +17326,7 @@
],
"type": {
"type": "reference",
- "target": 2154,
+ "target": 2171,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
@@ -17336,7 +17336,7 @@
"groups": [
{
"title": "Properties",
- "children": [1822]
+ "children": [1839]
}
],
"sources": [
@@ -17350,7 +17350,7 @@
}
},
{
- "id": 1823,
+ "id": 1840,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17358,7 +17358,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1824,
+ "id": 1841,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17372,7 +17372,7 @@
],
"signatures": [
{
- "id": 1825,
+ "id": 1842,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17386,7 +17386,7 @@
],
"parameters": [
{
- "id": 1826,
+ "id": 1843,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17394,14 +17394,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1827,
+ "id": 1844,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1829,
+ "id": 1846,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17415,14 +17415,14 @@
],
"type": {
"type": "reference",
- "target": 2154,
+ "target": 2171,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
}
},
{
- "id": 1830,
+ "id": 1847,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17443,7 +17443,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1815,
+ "target": 1832,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17454,7 +17454,7 @@
}
},
{
- "id": 1828,
+ "id": 1845,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17475,7 +17475,7 @@
"groups": [
{
"title": "Properties",
- "children": [1829, 1830, 1828]
+ "children": [1846, 1847, 1845]
}
],
"sources": [
@@ -17501,14 +17501,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1831,
+ "id": 1848,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17530,7 +17530,7 @@
],
"typeParameters": [
{
- "id": 1832,
+ "id": 1849,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17538,7 +17538,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1833,
+ "id": 1850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17552,7 +17552,7 @@
],
"indexSignatures": [
{
- "id": 1834,
+ "id": 1851,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17566,7 +17566,7 @@
],
"parameters": [
{
- "id": 1835,
+ "id": 1852,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17589,7 +17589,7 @@
],
"parameters": [
{
- "id": 1836,
+ "id": 1853,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17600,7 +17600,7 @@
}
},
{
- "id": 1837,
+ "id": 1854,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17608,14 +17608,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1838,
+ "id": 1855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1839,
+ "id": 1856,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17629,7 +17629,7 @@
],
"type": {
"type": "reference",
- "target": 2155,
+ "target": 2172,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
@@ -17639,7 +17639,7 @@
"groups": [
{
"title": "Properties",
- "children": [1839]
+ "children": [1856]
}
],
"sources": [
@@ -17653,7 +17653,7 @@
}
},
{
- "id": 1840,
+ "id": 1857,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17661,7 +17661,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1841,
+ "id": 1858,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17675,7 +17675,7 @@
],
"signatures": [
{
- "id": 1842,
+ "id": 1859,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17689,7 +17689,7 @@
],
"parameters": [
{
- "id": 1843,
+ "id": 1860,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17697,14 +17697,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1844,
+ "id": 1861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1846,
+ "id": 1863,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17718,14 +17718,14 @@
],
"type": {
"type": "reference",
- "target": 2155,
+ "target": 2172,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
}
},
{
- "id": 1847,
+ "id": 1864,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17746,7 +17746,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1832,
+ "target": 1849,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17757,7 +17757,7 @@
}
},
{
- "id": 1845,
+ "id": 1862,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17778,7 +17778,7 @@
"groups": [
{
"title": "Properties",
- "children": [1846, 1847, 1845]
+ "children": [1863, 1864, 1862]
}
],
"sources": [
@@ -17804,14 +17804,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1848,
+ "id": 1865,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17833,7 +17833,7 @@
],
"typeParameters": [
{
- "id": 1849,
+ "id": 1866,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17841,7 +17841,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1850,
+ "id": 1867,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17855,7 +17855,7 @@
],
"indexSignatures": [
{
- "id": 1851,
+ "id": 1868,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17869,7 +17869,7 @@
],
"parameters": [
{
- "id": 1852,
+ "id": 1869,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17892,7 +17892,7 @@
],
"parameters": [
{
- "id": 1853,
+ "id": 1870,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17903,7 +17903,7 @@
}
},
{
- "id": 1854,
+ "id": 1871,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17911,14 +17911,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1855,
+ "id": 1872,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1856,
+ "id": 1873,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17932,7 +17932,7 @@
],
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2173,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
@@ -17942,7 +17942,7 @@
"groups": [
{
"title": "Properties",
- "children": [1856]
+ "children": [1873]
}
],
"sources": [
@@ -17956,7 +17956,7 @@
}
},
{
- "id": 1857,
+ "id": 1874,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17964,7 +17964,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1858,
+ "id": 1875,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17978,7 +17978,7 @@
],
"signatures": [
{
- "id": 1859,
+ "id": 1876,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17992,7 +17992,7 @@
],
"parameters": [
{
- "id": 1860,
+ "id": 1877,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18000,14 +18000,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1861,
+ "id": 1878,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1863,
+ "id": 1880,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18021,14 +18021,14 @@
],
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2173,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
}
},
{
- "id": 1864,
+ "id": 1881,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18049,7 +18049,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1849,
+ "target": 1866,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18060,7 +18060,7 @@
}
},
{
- "id": 1862,
+ "id": 1879,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18081,7 +18081,7 @@
"groups": [
{
"title": "Properties",
- "children": [1863, 1864, 1862]
+ "children": [1880, 1881, 1879]
}
],
"sources": [
@@ -18107,14 +18107,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1865,
+ "id": 1882,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18136,7 +18136,7 @@
],
"typeParameters": [
{
- "id": 1866,
+ "id": 1883,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18144,7 +18144,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1867,
+ "id": 1884,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18158,7 +18158,7 @@
],
"indexSignatures": [
{
- "id": 1868,
+ "id": 1885,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18172,7 +18172,7 @@
],
"parameters": [
{
- "id": 1869,
+ "id": 1886,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18195,7 +18195,7 @@
],
"parameters": [
{
- "id": 1870,
+ "id": 1887,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18206,7 +18206,7 @@
}
},
{
- "id": 1871,
+ "id": 1888,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18214,7 +18214,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1872,
+ "id": 1889,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18223,7 +18223,7 @@
}
},
{
- "id": 1873,
+ "id": 1890,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18231,7 +18231,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1874,
+ "id": 1891,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18245,7 +18245,7 @@
],
"signatures": [
{
- "id": 1875,
+ "id": 1892,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18259,7 +18259,7 @@
],
"parameters": [
{
- "id": 1876,
+ "id": 1893,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18282,7 +18282,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -18291,7 +18291,7 @@
]
},
{
- "id": 1659,
+ "id": 1676,
"name": "presenceState",
"variant": "declaration",
"kind": 2048,
@@ -18305,7 +18305,7 @@
],
"signatures": [
{
- "id": 1660,
+ "id": 1677,
"name": "presenceState",
"variant": "signature",
"kind": 4096,
@@ -18327,7 +18327,7 @@
],
"typeParameters": [
{
- "id": 1661,
+ "id": 1678,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18335,7 +18335,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1662,
+ "id": 1679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18349,7 +18349,7 @@
],
"indexSignatures": [
{
- "id": 1663,
+ "id": 1680,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18363,7 +18363,7 @@
],
"parameters": [
{
- "id": 1664,
+ "id": 1681,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18385,7 +18385,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 1665,
+ "id": 1682,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18396,11 +18396,11 @@
],
"type": {
"type": "reference",
- "target": 2137,
+ "target": 2154,
"typeArguments": [
{
"type": "reference",
- "target": 1661,
+ "target": 1678,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18413,7 +18413,7 @@
]
},
{
- "id": 1890,
+ "id": 1907,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -18427,7 +18427,7 @@
],
"signatures": [
{
- "id": 1891,
+ "id": 1908,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -18449,7 +18449,7 @@
],
"parameters": [
{
- "id": 1892,
+ "id": 1909,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -18465,14 +18465,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1893,
+ "id": 1910,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1895,
+ "id": 1912,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18498,7 +18498,7 @@
}
},
{
- "id": 1896,
+ "id": 1913,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18526,7 +18526,7 @@
}
},
{
- "id": 1894,
+ "id": 1911,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18568,7 +18568,7 @@
"groups": [
{
"title": "Properties",
- "children": [1895, 1896, 1894]
+ "children": [1912, 1913, 1911]
}
],
"sources": [
@@ -18580,7 +18580,7 @@
],
"indexSignatures": [
{
- "id": 1897,
+ "id": 1914,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18594,7 +18594,7 @@
],
"parameters": [
{
- "id": 1898,
+ "id": 1915,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18615,7 +18615,7 @@
}
},
{
- "id": 1899,
+ "id": 1916,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -18633,7 +18633,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1900,
+ "id": 1917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18647,7 +18647,7 @@
],
"indexSignatures": [
{
- "id": 1901,
+ "id": 1918,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18661,7 +18661,7 @@
],
"parameters": [
{
- "id": 1902,
+ "id": 1919,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18691,7 +18691,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1928,
+ "target": 1945,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -18703,7 +18703,7 @@
]
},
{
- "id": 1651,
+ "id": 1668,
"name": "subscribe",
"variant": "declaration",
"kind": 2048,
@@ -18717,7 +18717,7 @@
],
"signatures": [
{
- "id": 1652,
+ "id": 1669,
"name": "subscribe",
"variant": "signature",
"kind": 4096,
@@ -18739,7 +18739,7 @@
],
"parameters": [
{
- "id": 1653,
+ "id": 1670,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18749,7 +18749,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1654,
+ "id": 1671,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18763,7 +18763,7 @@
],
"signatures": [
{
- "id": 1655,
+ "id": 1672,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18777,20 +18777,20 @@
],
"parameters": [
{
- "id": 1656,
+ "id": 1673,
"name": "status",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2161,
+ "target": 2178,
"name": "REALTIME_SUBSCRIBE_STATES",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1657,
+ "id": 1674,
"name": "err",
"variant": "param",
"kind": 32768,
@@ -18818,7 +18818,7 @@
}
},
{
- "id": 1658,
+ "id": 1675,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -18833,7 +18833,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -18842,7 +18842,7 @@
]
},
{
- "id": 1912,
+ "id": 1929,
"name": "teardown",
"variant": "declaration",
"kind": 2048,
@@ -18856,7 +18856,7 @@
],
"signatures": [
{
- "id": 1913,
+ "id": 1930,
"name": "teardown",
"variant": "signature",
"kind": 4096,
@@ -18884,7 +18884,7 @@
]
},
{
- "id": 1666,
+ "id": 1683,
"name": "track",
"variant": "declaration",
"kind": 2048,
@@ -18898,7 +18898,7 @@
],
"signatures": [
{
- "id": 1667,
+ "id": 1684,
"name": "track",
"variant": "signature",
"kind": 4096,
@@ -18928,7 +18928,7 @@
],
"parameters": [
{
- "id": 1668,
+ "id": 1685,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18936,7 +18936,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1669,
+ "id": 1686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18950,7 +18950,7 @@
],
"indexSignatures": [
{
- "id": 1670,
+ "id": 1687,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18964,7 +18964,7 @@
],
"parameters": [
{
- "id": 1671,
+ "id": 1688,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18985,7 +18985,7 @@
}
},
{
- "id": 1672,
+ "id": 1689,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -18995,7 +18995,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1673,
+ "id": 1690,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19009,7 +19009,7 @@
],
"indexSignatures": [
{
- "id": 1674,
+ "id": 1691,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19023,7 +19023,7 @@
],
"parameters": [
{
- "id": 1675,
+ "id": 1692,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19053,7 +19053,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1928,
+ "target": 1945,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19065,7 +19065,7 @@
]
},
{
- "id": 1909,
+ "id": 1926,
"name": "unsubscribe",
"variant": "declaration",
"kind": 2048,
@@ -19079,7 +19079,7 @@
],
"signatures": [
{
- "id": 1910,
+ "id": 1927,
"name": "unsubscribe",
"variant": "signature",
"kind": 4096,
@@ -19109,7 +19109,7 @@
],
"parameters": [
{
- "id": 1911,
+ "id": 1928,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -19154,7 +19154,7 @@
]
},
{
- "id": 1676,
+ "id": 1693,
"name": "untrack",
"variant": "declaration",
"kind": 2048,
@@ -19168,7 +19168,7 @@
],
"signatures": [
{
- "id": 1677,
+ "id": 1694,
"name": "untrack",
"variant": "signature",
"kind": 4096,
@@ -19190,7 +19190,7 @@
],
"parameters": [
{
- "id": 1678,
+ "id": 1695,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -19200,7 +19200,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1679,
+ "id": 1696,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19214,7 +19214,7 @@
],
"indexSignatures": [
{
- "id": 1680,
+ "id": 1697,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19228,7 +19228,7 @@
],
"parameters": [
{
- "id": 1681,
+ "id": 1698,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19258,7 +19258,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1928,
+ "target": 1945,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19270,7 +19270,7 @@
]
},
{
- "id": 1903,
+ "id": 1920,
"name": "updateJoinPayload",
"variant": "declaration",
"kind": 2048,
@@ -19284,7 +19284,7 @@
],
"signatures": [
{
- "id": 1904,
+ "id": 1921,
"name": "updateJoinPayload",
"variant": "signature",
"kind": 4096,
@@ -19306,7 +19306,7 @@
],
"parameters": [
{
- "id": 1905,
+ "id": 1922,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -19314,7 +19314,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1906,
+ "id": 1923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19328,7 +19328,7 @@
],
"indexSignatures": [
{
- "id": 1907,
+ "id": 1924,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19342,7 +19342,7 @@
],
"parameters": [
{
- "id": 1908,
+ "id": 1925,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19374,17 +19374,17 @@
"groups": [
{
"title": "Constructors",
- "children": [1621]
+ "children": [1638]
},
{
"title": "Properties",
"children": [
- 1629, 1648, 1643, 1644, 1627, 1647, 1650, 1646, 1645, 1628, 1642, 1649, 1641, 1626
+ 1646, 1665, 1660, 1661, 1644, 1664, 1667, 1663, 1662, 1645, 1659, 1666, 1658, 1643
]
},
{
"title": "Methods",
- "children": [1877, 1682, 1659, 1890, 1651, 1912, 1666, 1909, 1676, 1903]
+ "children": [1894, 1699, 1676, 1907, 1668, 1929, 1683, 1926, 1693, 1920]
}
],
"sources": [
@@ -19396,14 +19396,14 @@
]
},
{
- "id": 1929,
+ "id": 1946,
"name": "RealtimeClient",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1930,
+ "id": 1947,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -19417,7 +19417,7 @@
],
"signatures": [
{
- "id": 1931,
+ "id": 1948,
"name": "RealtimeClient",
"variant": "signature",
"kind": 16384,
@@ -19450,7 +19450,7 @@
],
"parameters": [
{
- "id": 1932,
+ "id": 1949,
"name": "endPoint",
"variant": "param",
"kind": 32768,
@@ -19469,7 +19469,7 @@
}
},
{
- "id": 1933,
+ "id": 1950,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -19478,7 +19478,7 @@
},
"type": {
"type": "reference",
- "target": 2039,
+ "target": 2056,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js",
"highlightedProperties": {
@@ -19574,7 +19574,7 @@
],
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19583,7 +19583,7 @@
]
},
{
- "id": 1981,
+ "id": 1998,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -19605,7 +19605,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1982,
+ "id": 1999,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19619,7 +19619,7 @@
],
"signatures": [
{
- "id": 1983,
+ "id": 2000,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19663,7 +19663,7 @@
}
},
{
- "id": 1934,
+ "id": 1951,
"name": "accessTokenValue",
"variant": "declaration",
"kind": 1024,
@@ -19690,7 +19690,7 @@
}
},
{
- "id": 1935,
+ "id": 1952,
"name": "apiKey",
"variant": "declaration",
"kind": 1024,
@@ -19717,7 +19717,7 @@
}
},
{
- "id": 1936,
+ "id": 1953,
"name": "channels",
"variant": "declaration",
"kind": 1024,
@@ -19733,7 +19733,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19741,7 +19741,7 @@
}
},
{
- "id": 1964,
+ "id": 1981,
"name": "conn",
"variant": "declaration",
"kind": 1024,
@@ -19762,7 +19762,7 @@
},
{
"type": "reference",
- "target": 2183,
+ "target": 2200,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -19770,7 +19770,7 @@
}
},
{
- "id": 1962,
+ "id": 1979,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -19793,7 +19793,7 @@
}
},
{
- "id": 1961,
+ "id": 1978,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -19816,7 +19816,7 @@
}
},
{
- "id": 1937,
+ "id": 1954,
"name": "endPoint",
"variant": "declaration",
"kind": 1024,
@@ -19834,7 +19834,7 @@
}
},
{
- "id": 1973,
+ "id": 1990,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -19849,7 +19849,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1974,
+ "id": 1991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19868,7 +19868,7 @@
],
"signatures": [
{
- "id": 1975,
+ "id": 1992,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19890,7 +19890,7 @@
],
"parameters": [
{
- "id": 1976,
+ "id": 1993,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -19920,7 +19920,7 @@
}
},
{
- "id": 1977,
+ "id": 1994,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -19960,7 +19960,7 @@
}
},
{
- "id": 1978,
+ "id": 1995,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19982,7 +19982,7 @@
],
"parameters": [
{
- "id": 1979,
+ "id": 1996,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -20016,7 +20016,7 @@
}
},
{
- "id": 1980,
+ "id": 1997,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -20060,7 +20060,7 @@
}
},
{
- "id": 1939,
+ "id": 1956,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -20091,7 +20091,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1940,
+ "id": 1957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20105,7 +20105,7 @@
],
"indexSignatures": [
{
- "id": 1941,
+ "id": 1958,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20119,7 +20119,7 @@
],
"parameters": [
{
- "id": 1942,
+ "id": 1959,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20140,7 +20140,7 @@
}
},
{
- "id": 1952,
+ "id": 1969,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -20155,7 +20155,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1953,
+ "id": 1970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20169,7 +20169,7 @@
],
"signatures": [
{
- "id": 1954,
+ "id": 1971,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20183,7 +20183,7 @@
],
"parameters": [
{
- "id": 1955,
+ "id": 1972,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -20209,7 +20209,7 @@
}
},
{
- "id": 1949,
+ "id": 1966,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -20227,7 +20227,7 @@
}
},
{
- "id": 1950,
+ "id": 1967,
"name": "heartbeatTimer",
"variant": "declaration",
"kind": 1024,
@@ -20260,7 +20260,7 @@
}
},
{
- "id": 1938,
+ "id": 1955,
"name": "httpEndpoint",
"variant": "declaration",
"kind": 1024,
@@ -20278,7 +20278,7 @@
}
},
{
- "id": 1959,
+ "id": 1976,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -20301,7 +20301,7 @@
}
},
{
- "id": 1960,
+ "id": 1977,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -20326,7 +20326,7 @@
}
},
{
- "id": 1943,
+ "id": 1960,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -20343,7 +20343,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1944,
+ "id": 1961,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20357,7 +20357,7 @@
],
"indexSignatures": [
{
- "id": 1945,
+ "id": 1962,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20371,7 +20371,7 @@
],
"parameters": [
{
- "id": 1946,
+ "id": 1963,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20392,7 +20392,7 @@
}
},
{
- "id": 1951,
+ "id": 1968,
"name": "pendingHeartbeatRef",
"variant": "declaration",
"kind": 1024,
@@ -20419,7 +20419,7 @@
}
},
{
- "id": 1963,
+ "id": 1980,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -20442,7 +20442,7 @@
}
},
{
- "id": 1957,
+ "id": 1974,
"name": "reconnectTimer",
"variant": "declaration",
"kind": 1024,
@@ -20475,7 +20475,7 @@
}
},
{
- "id": 1956,
+ "id": 1973,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -20493,7 +20493,7 @@
}
},
{
- "id": 1965,
+ "id": 1982,
"name": "sendBuffer",
"variant": "declaration",
"kind": 1024,
@@ -20519,7 +20519,7 @@
}
},
{
- "id": 1966,
+ "id": 1983,
"name": "serializer",
"variant": "declaration",
"kind": 1024,
@@ -20543,7 +20543,7 @@
}
},
{
- "id": 1967,
+ "id": 1984,
"name": "stateChangeCallbacks",
"variant": "declaration",
"kind": 1024,
@@ -20558,14 +20558,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1968,
+ "id": 1985,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1970,
+ "id": 1987,
"name": "close",
"variant": "declaration",
"kind": 1024,
@@ -20591,7 +20591,7 @@
}
},
{
- "id": 1971,
+ "id": 1988,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -20617,7 +20617,7 @@
}
},
{
- "id": 1972,
+ "id": 1989,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -20643,7 +20643,7 @@
}
},
{
- "id": 1969,
+ "id": 1986,
"name": "open",
"variant": "declaration",
"kind": 1024,
@@ -20672,7 +20672,7 @@
"groups": [
{
"title": "Properties",
- "children": [1970, 1971, 1972, 1969]
+ "children": [1987, 1988, 1989, 1986]
}
],
"sources": [
@@ -20686,7 +20686,7 @@
}
},
{
- "id": 1947,
+ "id": 1964,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -20704,7 +20704,7 @@
}
},
{
- "id": 1948,
+ "id": 1965,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -20725,7 +20725,7 @@
},
{
"type": "reference",
- "target": 2233,
+ "target": 2250,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
@@ -20733,7 +20733,7 @@
}
},
{
- "id": 1958,
+ "id": 1975,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -20751,7 +20751,7 @@
}
},
{
- "id": 1984,
+ "id": 2001,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -20771,7 +20771,7 @@
}
},
{
- "id": 1986,
+ "id": 2003,
"name": "workerRef",
"variant": "declaration",
"kind": 1024,
@@ -20796,7 +20796,7 @@
}
},
{
- "id": 1985,
+ "id": 2002,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -20816,7 +20816,7 @@
}
},
{
- "id": 2018,
+ "id": 2035,
"name": "channel",
"variant": "declaration",
"kind": 2048,
@@ -20830,7 +20830,7 @@
],
"signatures": [
{
- "id": 2019,
+ "id": 2036,
"name": "channel",
"variant": "signature",
"kind": 4096,
@@ -20845,7 +20845,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "RealtimeChannel",
- "target": 1620
+ "target": 1637
},
{
"kind": "text",
@@ -20870,7 +20870,7 @@
],
"parameters": [
{
- "id": 2020,
+ "id": 2037,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -20881,7 +20881,7 @@
}
},
{
- "id": 2021,
+ "id": 2038,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -20890,7 +20890,7 @@
},
"type": {
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -20898,7 +20898,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -20907,7 +20907,7 @@
]
},
{
- "id": 1990,
+ "id": 2007,
"name": "connect",
"variant": "declaration",
"kind": 2048,
@@ -20921,7 +20921,7 @@
],
"signatures": [
{
- "id": 1991,
+ "id": 2008,
"name": "connect",
"variant": "signature",
"kind": 4096,
@@ -20949,7 +20949,7 @@
]
},
{
- "id": 2010,
+ "id": 2027,
"name": "connectionState",
"variant": "declaration",
"kind": 2048,
@@ -20963,7 +20963,7 @@
],
"signatures": [
{
- "id": 2011,
+ "id": 2028,
"name": "connectionState",
"variant": "signature",
"kind": 4096,
@@ -20996,7 +20996,7 @@
]
},
{
- "id": 1994,
+ "id": 2011,
"name": "disconnect",
"variant": "declaration",
"kind": 2048,
@@ -21010,7 +21010,7 @@
],
"signatures": [
{
- "id": 1995,
+ "id": 2012,
"name": "disconnect",
"variant": "signature",
"kind": 4096,
@@ -21032,7 +21032,7 @@
],
"parameters": [
{
- "id": 1996,
+ "id": 2013,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -21053,7 +21053,7 @@
}
},
{
- "id": 1997,
+ "id": 2014,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -21082,7 +21082,7 @@
]
},
{
- "id": 1992,
+ "id": 2009,
"name": "endpointURL",
"variant": "declaration",
"kind": 2048,
@@ -21096,7 +21096,7 @@
],
"signatures": [
{
- "id": 1993,
+ "id": 2010,
"name": "endpointURL",
"variant": "signature",
"kind": 4096,
@@ -21135,7 +21135,7 @@
]
},
{
- "id": 2036,
+ "id": 2053,
"name": "flushSendBuffer",
"variant": "declaration",
"kind": 2048,
@@ -21149,7 +21149,7 @@
],
"signatures": [
{
- "id": 2037,
+ "id": 2054,
"name": "flushSendBuffer",
"variant": "signature",
"kind": 4096,
@@ -21177,7 +21177,7 @@
]
},
{
- "id": 1998,
+ "id": 2015,
"name": "getChannels",
"variant": "declaration",
"kind": 2048,
@@ -21191,7 +21191,7 @@
],
"signatures": [
{
- "id": 1999,
+ "id": 2016,
"name": "getChannels",
"variant": "signature",
"kind": 4096,
@@ -21215,7 +21215,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -21225,7 +21225,7 @@
]
},
{
- "id": 2012,
+ "id": 2029,
"name": "isConnected",
"variant": "declaration",
"kind": 2048,
@@ -21239,7 +21239,7 @@
],
"signatures": [
{
- "id": 2013,
+ "id": 2030,
"name": "isConnected",
"variant": "signature",
"kind": 4096,
@@ -21275,7 +21275,7 @@
]
},
{
- "id": 2014,
+ "id": 2031,
"name": "isConnecting",
"variant": "declaration",
"kind": 2048,
@@ -21289,7 +21289,7 @@
],
"signatures": [
{
- "id": 2015,
+ "id": 2032,
"name": "isConnecting",
"variant": "signature",
"kind": 4096,
@@ -21325,7 +21325,7 @@
]
},
{
- "id": 2016,
+ "id": 2033,
"name": "isDisconnecting",
"variant": "declaration",
"kind": 2048,
@@ -21339,7 +21339,7 @@
],
"signatures": [
{
- "id": 2017,
+ "id": 2034,
"name": "isDisconnecting",
"variant": "signature",
"kind": 4096,
@@ -21375,7 +21375,7 @@
]
},
{
- "id": 2005,
+ "id": 2022,
"name": "log",
"variant": "declaration",
"kind": 2048,
@@ -21389,7 +21389,7 @@
],
"signatures": [
{
- "id": 2006,
+ "id": 2023,
"name": "log",
"variant": "signature",
"kind": 4096,
@@ -21419,7 +21419,7 @@
],
"parameters": [
{
- "id": 2007,
+ "id": 2024,
"name": "kind",
"variant": "param",
"kind": 32768,
@@ -21430,7 +21430,7 @@
}
},
{
- "id": 2008,
+ "id": 2025,
"name": "msg",
"variant": "param",
"kind": 32768,
@@ -21441,7 +21441,7 @@
}
},
{
- "id": 2009,
+ "id": 2026,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -21462,7 +21462,7 @@
]
},
{
- "id": 2030,
+ "id": 2047,
"name": "onHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -21476,7 +21476,7 @@
],
"signatures": [
{
- "id": 2031,
+ "id": 2048,
"name": "onHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -21498,7 +21498,7 @@
],
"parameters": [
{
- "id": 2032,
+ "id": 2049,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -21506,7 +21506,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2033,
+ "id": 2050,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21520,7 +21520,7 @@
],
"signatures": [
{
- "id": 2034,
+ "id": 2051,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -21534,7 +21534,7 @@
],
"parameters": [
{
- "id": 2035,
+ "id": 2052,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -21568,7 +21568,7 @@
]
},
{
- "id": 2022,
+ "id": 2039,
"name": "push",
"variant": "declaration",
"kind": 2048,
@@ -21582,7 +21582,7 @@
],
"signatures": [
{
- "id": 2023,
+ "id": 2040,
"name": "push",
"variant": "signature",
"kind": 4096,
@@ -21604,14 +21604,14 @@
],
"parameters": [
{
- "id": 2024,
+ "id": 2041,
"name": "data",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2069,
+ "target": 2086,
"name": "RealtimeMessage",
"package": "@supabase/realtime-js"
}
@@ -21625,7 +21625,7 @@
]
},
{
- "id": 2003,
+ "id": 2020,
"name": "removeAllChannels",
"variant": "declaration",
"kind": 2048,
@@ -21639,7 +21639,7 @@
],
"signatures": [
{
- "id": 2004,
+ "id": 2021,
"name": "removeAllChannels",
"variant": "signature",
"kind": 4096,
@@ -21670,7 +21670,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 2146,
+ "target": 2163,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -21683,7 +21683,7 @@
]
},
{
- "id": 2000,
+ "id": 2017,
"name": "removeChannel",
"variant": "declaration",
"kind": 2048,
@@ -21697,7 +21697,7 @@
],
"signatures": [
{
- "id": 2001,
+ "id": 2018,
"name": "removeChannel",
"variant": "signature",
"kind": 4096,
@@ -21719,7 +21719,7 @@
],
"parameters": [
{
- "id": 2002,
+ "id": 2019,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -21734,7 +21734,7 @@
},
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -21750,7 +21750,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2146,
+ "target": 2163,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -21762,7 +21762,7 @@
]
},
{
- "id": 2028,
+ "id": 2045,
"name": "sendHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -21776,7 +21776,7 @@
],
"signatures": [
{
- "id": 2029,
+ "id": 2046,
"name": "sendHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -21815,7 +21815,7 @@
]
},
{
- "id": 2025,
+ "id": 2042,
"name": "setAuth",
"variant": "declaration",
"kind": 2048,
@@ -21829,7 +21829,7 @@
],
"signatures": [
{
- "id": 2026,
+ "id": 2043,
"name": "setAuth",
"variant": "signature",
"kind": 4096,
@@ -21859,7 +21859,7 @@
],
"parameters": [
{
- "id": 2027,
+ "id": 2044,
"name": "token",
"variant": "param",
"kind": 32768,
@@ -21911,21 +21911,21 @@
"groups": [
{
"title": "Constructors",
- "children": [1930]
+ "children": [1947]
},
{
"title": "Properties",
"children": [
- 1981, 1934, 1935, 1936, 1964, 1962, 1961, 1937, 1973, 1939, 1952, 1949, 1950, 1938,
- 1959, 1960, 1943, 1951, 1963, 1957, 1956, 1965, 1966, 1967, 1947, 1948, 1958, 1984,
- 1986, 1985
+ 1998, 1951, 1952, 1953, 1981, 1979, 1978, 1954, 1990, 1956, 1969, 1966, 1967, 1955,
+ 1976, 1977, 1960, 1968, 1980, 1974, 1973, 1982, 1983, 1984, 1964, 1965, 1975, 2001,
+ 2003, 2002
]
},
{
"title": "Methods",
"children": [
- 2018, 1990, 2010, 1994, 1992, 2036, 1998, 2012, 2014, 2016, 2005, 2030, 2022, 2003,
- 2000, 2028, 2025
+ 2035, 2007, 2027, 2011, 2009, 2053, 2015, 2029, 2031, 2033, 2022, 2047, 2039, 2020,
+ 2017, 2045, 2042
]
}
],
@@ -21938,14 +21938,14 @@
]
},
{
- "id": 1603,
+ "id": 1620,
"name": "RealtimePresence",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1604,
+ "id": 1621,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -21959,7 +21959,7 @@
],
"signatures": [
{
- "id": 1605,
+ "id": 1622,
"name": "RealtimePresence",
"variant": "signature",
"kind": 16384,
@@ -21992,7 +21992,7 @@
],
"parameters": [
{
- "id": 1606,
+ "id": 1623,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -22007,14 +22007,14 @@
},
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1607,
+ "id": 1624,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -22050,7 +22050,7 @@
],
"type": {
"type": "reference",
- "target": 1603,
+ "target": 1620,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22059,7 +22059,7 @@
]
},
{
- "id": 1613,
+ "id": 1630,
"name": "caller",
"variant": "declaration",
"kind": 1024,
@@ -22074,14 +22074,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1614,
+ "id": 1631,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1615,
+ "id": 1632,
"name": "onJoin",
"variant": "declaration",
"kind": 1024,
@@ -22104,7 +22104,7 @@
}
},
{
- "id": 1616,
+ "id": 1633,
"name": "onLeave",
"variant": "declaration",
"kind": 1024,
@@ -22127,7 +22127,7 @@
}
},
{
- "id": 1617,
+ "id": 1634,
"name": "onSync",
"variant": "declaration",
"kind": 1024,
@@ -22142,7 +22142,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1618,
+ "id": 1635,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -22156,7 +22156,7 @@
],
"signatures": [
{
- "id": 1619,
+ "id": 1636,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -22181,7 +22181,7 @@
"groups": [
{
"title": "Properties",
- "children": [1615, 1616, 1617]
+ "children": [1632, 1633, 1634]
}
],
"sources": [
@@ -22195,7 +22195,7 @@
}
},
{
- "id": 1608,
+ "id": 1625,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -22209,14 +22209,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1612,
+ "id": 1629,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -22234,7 +22234,7 @@
}
},
{
- "id": 1611,
+ "id": 1628,
"name": "joinRef",
"variant": "declaration",
"kind": 1024,
@@ -22261,7 +22261,7 @@
}
},
{
- "id": 1610,
+ "id": 1627,
"name": "pendingDiffs",
"variant": "declaration",
"kind": 1024,
@@ -22287,7 +22287,7 @@
}
},
{
- "id": 1609,
+ "id": 1626,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -22301,7 +22301,7 @@
],
"type": {
"type": "reference",
- "target": 2137,
+ "target": 2154,
"name": "RealtimePresenceState",
"package": "@supabase/realtime-js"
}
@@ -22310,11 +22310,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1604]
+ "children": [1621]
},
{
"title": "Properties",
- "children": [1613, 1608, 1612, 1611, 1610, 1609]
+ "children": [1630, 1625, 1629, 1628, 1627, 1626]
}
],
"sources": [
@@ -22351,7 +22351,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"signatures": [
@@ -22385,7 +22385,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"typeParameters": [
@@ -22433,7 +22433,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -22453,7 +22453,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -22803,7 +22803,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -22823,7 +22823,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -22904,7 +22904,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -22927,7 +22927,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -22947,7 +22947,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -22965,7 +22965,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -23015,7 +23015,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -23035,7 +23035,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -23071,7 +23071,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -23091,7 +23091,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -23267,7 +23267,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -23283,7 +23283,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"signatures": [
@@ -23298,7 +23298,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -23349,7 +23349,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L73"
}
],
"type": {
@@ -23375,7 +23375,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 81,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L81"
}
],
"type": {
@@ -23402,7 +23402,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L87"
}
],
"type": {
@@ -23424,7 +23424,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 86,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L86"
}
],
"type": {
@@ -23653,7 +23653,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 83,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L83"
}
],
"type": {
@@ -23679,7 +23679,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 90,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L90"
}
],
"type": {
@@ -23713,12 +23713,12 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L74"
}
],
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -23737,7 +23737,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L80"
}
],
"type": {
@@ -23763,7 +23763,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L84"
}
],
"type": {
@@ -23822,7 +23822,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L78"
}
],
"type": {
@@ -23848,7 +23848,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 85,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L85"
}
],
"type": {
@@ -23869,7 +23869,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 82,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L82"
}
],
"type": {
@@ -23903,7 +23903,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 114,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L114"
}
],
"type": {
@@ -23932,7 +23932,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 113,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L113"
}
],
"type": {
@@ -23951,7 +23951,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 194,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194"
}
],
"getSignature": {
@@ -23973,7 +23973,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 194,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194"
}
],
"type": {
@@ -23998,7 +23998,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 308,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308"
}
],
"signatures": [
@@ -24021,7 +24021,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 308,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308"
}
],
"parameters": [
@@ -24060,7 +24060,7 @@
},
"type": {
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
},
@@ -24069,7 +24069,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24108,19 +24108,19 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 214,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L214"
}
],
"signatures": [
@@ -24135,7 +24135,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202"
}
],
"typeParameters": [
@@ -24237,7 +24237,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206"
}
],
"typeParameters": [
@@ -24341,7 +24341,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 315,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315"
}
],
"signatures": [
@@ -24364,14 +24364,14 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 315,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24391,7 +24391,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 332,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332"
}
],
"signatures": [
@@ -24414,7 +24414,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 332,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332"
}
],
"type": {
@@ -24462,7 +24462,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 325,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L325"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325"
}
],
"signatures": [
@@ -24485,7 +24485,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 325,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L325"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325"
}
],
"parameters": [
@@ -24505,7 +24505,7 @@
},
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24554,7 +24554,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261"
}
],
"signatures": [
@@ -24577,7 +24577,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261"
}
],
"typeParameters": [
@@ -24803,7 +24803,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 275,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L275"
}
],
"type": {
@@ -24853,7 +24853,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 274,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L274"
}
],
"type": {
@@ -24898,7 +24898,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 273,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L273"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L273"
}
],
"type": {
@@ -24918,7 +24918,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 272,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L272"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L272"
}
]
}
@@ -25028,7 +25028,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 226,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226"
}
],
"signatures": [
@@ -25051,7 +25051,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 226,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226"
}
],
"typeParameters": [
@@ -25198,7 +25198,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 37,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L37"
}
],
"typeParameters": [
@@ -25278,7 +25278,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -25298,7 +25298,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -25768,7 +25768,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -25788,7 +25788,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -25869,7 +25869,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -25892,7 +25892,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -25912,7 +25912,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -25930,7 +25930,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -25970,7 +25970,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -25990,7 +25990,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -26026,7 +26026,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -26046,7 +26046,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -26069,7 +26069,7 @@
]
},
{
- "id": 2167,
+ "id": 2184,
"name": "WebSocketFactory",
"variant": "declaration",
"kind": 128,
@@ -26084,7 +26084,7 @@
},
"children": [
{
- "id": 2175,
+ "id": 2192,
"name": "createWebSocket",
"variant": "declaration",
"kind": 2048,
@@ -26100,7 +26100,7 @@
],
"signatures": [
{
- "id": 2176,
+ "id": 2193,
"name": "createWebSocket",
"variant": "signature",
"kind": 4096,
@@ -26133,7 +26133,7 @@
],
"parameters": [
{
- "id": 2177,
+ "id": 2194,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -26158,7 +26158,7 @@
}
},
{
- "id": 2178,
+ "id": 2195,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -26185,7 +26185,7 @@
],
"type": {
"type": "reference",
- "target": 2183,
+ "target": 2200,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -26193,7 +26193,7 @@
]
},
{
- "id": 2169,
+ "id": 2186,
"name": "getWebSocketConstructor",
"variant": "declaration",
"kind": 2048,
@@ -26209,7 +26209,7 @@
],
"signatures": [
{
- "id": 2170,
+ "id": 2187,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 4096,
@@ -26243,7 +26243,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2171,
+ "id": 2188,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -26257,7 +26257,7 @@
],
"signatures": [
{
- "id": 2172,
+ "id": 2189,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 16384,
@@ -26271,7 +26271,7 @@
],
"parameters": [
{
- "id": 2173,
+ "id": 2190,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -26296,7 +26296,7 @@
}
},
{
- "id": 2174,
+ "id": 2191,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -26338,7 +26338,7 @@
]
},
{
- "id": 2179,
+ "id": 2196,
"name": "isWebSocketSupported",
"variant": "declaration",
"kind": 2048,
@@ -26354,7 +26354,7 @@
],
"signatures": [
{
- "id": 2180,
+ "id": 2197,
"name": "isWebSocketSupported",
"variant": "signature",
"kind": 4096,
@@ -26396,7 +26396,7 @@
"groups": [
{
"title": "Methods",
- "children": [2175, 2169, 2179]
+ "children": [2192, 2186, 2196]
}
],
"sources": [
@@ -26408,14 +26408,14 @@
]
},
{
- "id": 848,
+ "id": 850,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 850,
+ "id": 852,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -26459,7 +26459,7 @@
}
},
{
- "id": 853,
+ "id": 855,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -26487,7 +26487,7 @@
}
},
{
- "id": 858,
+ "id": 860,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -26521,7 +26521,7 @@
}
},
{
- "id": 851,
+ "id": 853,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -26549,7 +26549,7 @@
}
},
{
- "id": 856,
+ "id": 858,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -26593,7 +26593,7 @@
}
},
{
- "id": 857,
+ "id": 859,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -26627,7 +26627,7 @@
}
},
{
- "id": 859,
+ "id": 861,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -26661,7 +26661,7 @@
}
},
{
- "id": 855,
+ "id": 857,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -26697,7 +26697,7 @@
}
},
{
- "id": 860,
+ "id": 862,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -26731,7 +26731,7 @@
}
},
{
- "id": 852,
+ "id": 854,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -26759,7 +26759,7 @@
}
},
{
- "id": 854,
+ "id": 856,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -26819,7 +26819,7 @@
}
},
{
- "id": 849,
+ "id": 851,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -26866,7 +26866,7 @@
"groups": [
{
"title": "Properties",
- "children": [850, 853, 858, 851, 856, 857, 859, 855, 860, 852, 854, 849]
+ "children": [852, 855, 860, 853, 858, 859, 861, 857, 862, 854, 856, 851]
}
],
"sources": [
@@ -26886,7 +26886,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 842,
+ "target": 844,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -26901,7 +26901,7 @@
]
},
{
- "id": 807,
+ "id": 809,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -26921,7 +26921,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1232
+ "target": 1234
},
{
"kind": "text",
@@ -26933,7 +26933,7 @@
},
"children": [
{
- "id": 808,
+ "id": 810,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -26955,13 +26955,13 @@
],
"type": {
"type": "reference",
- "target": 805,
+ "target": 807,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 809,
+ "id": 811,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -26990,7 +26990,7 @@
"groups": [
{
"title": "Properties",
- "children": [808, 809]
+ "children": [810, 811]
}
],
"sources": [
@@ -27002,7 +27002,7 @@
]
},
{
- "id": 1417,
+ "id": 1427,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -27017,7 +27017,7 @@
},
"children": [
{
- "id": 1421,
+ "id": 1431,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -27025,13 +27025,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1409,
+ "line": 1431,
"character": 4
}
],
"signatures": [
{
- "id": 1422,
+ "id": 1432,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -27058,13 +27058,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1409,
+ "line": 1431,
"character": 4
}
],
"parameters": [
{
- "id": 1423,
+ "id": 1433,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -27083,7 +27083,7 @@
}
},
{
- "id": 1424,
+ "id": 1434,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -27101,14 +27101,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1425,
+ "id": 1435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1426,
+ "id": 1436,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -27118,7 +27118,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1410,
+ "line": 1432,
"character": 8
}
],
@@ -27131,13 +27131,13 @@
"groups": [
{
"title": "Properties",
- "children": [1426]
+ "children": [1436]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1409,
+ "line": 1431,
"character": 60
}
]
@@ -27154,7 +27154,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1414,
+ "target": 1416,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -27166,7 +27166,7 @@
]
},
{
- "id": 1427,
+ "id": 1437,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -27174,13 +27174,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1420,
+ "line": 1442,
"character": 4
}
],
"signatures": [
{
- "id": 1428,
+ "id": 1438,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -27207,13 +27207,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1420,
+ "line": 1442,
"character": 4
}
],
"parameters": [
{
- "id": 1429,
+ "id": 1439,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -27232,7 +27232,7 @@
}
},
{
- "id": 1430,
+ "id": 1440,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -27250,14 +27250,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1431,
+ "id": 1441,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1432,
+ "id": 1442,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -27267,7 +27267,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1421,
+ "line": 1443,
"character": 8
}
],
@@ -27280,13 +27280,13 @@
"groups": [
{
"title": "Properties",
- "children": [1432]
+ "children": [1442]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1420,
+ "line": 1442,
"character": 57
}
]
@@ -27303,7 +27303,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1414,
+ "target": 1416,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -27315,7 +27315,7 @@
]
},
{
- "id": 1418,
+ "id": 1428,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -27323,13 +27323,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1400,
+ "line": 1422,
"character": 4
}
],
"signatures": [
{
- "id": 1419,
+ "id": 1429,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -27356,13 +27356,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1400,
+ "line": 1422,
"character": 4
}
],
"parameters": [
{
- "id": 1420,
+ "id": 1430,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -27390,7 +27390,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1413,
+ "target": 1415,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -27400,18 +27400,218 @@
}
}
]
+ },
+ {
+ "id": 1443,
+ "name": "listGrants",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1451,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1444,
+ "name": "listGrants",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists all OAuth grants that the authenticated user has authorized.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Response with array of OAuth grants with client information and granted scopes"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1451,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthOAuthGrantsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1445,
+ "name": "revokeGrant",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1463,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1446,
+ "name": "revokeGrant",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Revokes a user's OAuth grant for a specific client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nRevocation marks consent as revoked, deletes active sessions for that OAuth client,\nand invalidates associated refresh tokens."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Empty response on successful revocation"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1463,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1447,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Revocation options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1448,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1449,
+ "name": "clientId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The OAuth client identifier (UUID) to revoke access for"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1464,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1449]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1463,
+ "character": 25
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1425,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
}
],
"groups": [
{
"title": "Methods",
- "children": [1421, 1427, 1418]
+ "children": [1431, 1437, 1428, 1443, 1445]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1387,
+ "line": 1409,
"character": 17
}
]
@@ -27706,7 +27906,7 @@
],
"type": {
"type": "reference",
- "target": 833,
+ "target": 835,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
@@ -27889,7 +28089,7 @@
"types": [
{
"type": "reference",
- "target": 823,
+ "target": 825,
"typeArguments": [
{
"type": "union",
@@ -27918,7 +28118,7 @@
},
{
"type": "reference",
- "target": 823,
+ "target": 825,
"typeArguments": [
{
"type": "union",
@@ -27986,7 +28186,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 810,
+ "target": 812,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -28227,7 +28427,7 @@
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 840,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -28251,14 +28451,14 @@
]
},
{
- "id": 1055,
+ "id": 1057,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1056,
+ "id": 1058,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28302,7 +28502,7 @@
}
},
{
- "id": 1057,
+ "id": 1059,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -28333,7 +28533,7 @@
"groups": [
{
"title": "Properties",
- "children": [1056, 1057]
+ "children": [1058, 1059]
}
],
"sources": [
@@ -28345,7 +28545,7 @@
]
},
{
- "id": 1248,
+ "id": 1250,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -28366,7 +28566,7 @@
},
"children": [
{
- "id": 1252,
+ "id": 1254,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -28380,7 +28580,7 @@
],
"signatures": [
{
- "id": 1253,
+ "id": 1255,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -28400,7 +28600,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1221
+ "target": 1223
}
]
},
@@ -28419,14 +28619,14 @@
],
"parameters": [
{
- "id": 1254,
+ "id": 1256,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1238,
+ "target": 1240,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -28441,7 +28641,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1235,
+ "target": 1237,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -28453,7 +28653,7 @@
]
},
{
- "id": 1249,
+ "id": 1251,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -28467,7 +28667,7 @@
],
"signatures": [
{
- "id": 1250,
+ "id": 1252,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -28489,14 +28689,14 @@
],
"parameters": [
{
- "id": 1251,
+ "id": 1253,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1245,
+ "target": 1247,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -28511,7 +28711,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1242,
+ "target": 1244,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -28526,7 +28726,7 @@
"groups": [
{
"title": "Methods",
- "children": [1252, 1249]
+ "children": [1254, 1251]
}
],
"sources": [
@@ -28538,7 +28738,7 @@
]
},
{
- "id": 1374,
+ "id": 1376,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -28553,7 +28753,7 @@
},
"children": [
{
- "id": 1378,
+ "id": 1380,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -28567,7 +28767,7 @@
],
"signatures": [
{
- "id": 1379,
+ "id": 1381,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -28597,14 +28797,14 @@
],
"parameters": [
{
- "id": 1380,
+ "id": 1382,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1346,
+ "target": 1348,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -28619,7 +28819,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -28631,7 +28831,7 @@
]
},
{
- "id": 1388,
+ "id": 1390,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -28645,7 +28845,7 @@
],
"signatures": [
{
- "id": 1389,
+ "id": 1391,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -28675,7 +28875,7 @@
],
"parameters": [
{
- "id": 1390,
+ "id": 1392,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -28696,14 +28896,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1391,
+ "id": 1393,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1392,
+ "id": 1394,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28721,7 +28921,7 @@
}
},
{
- "id": 1393,
+ "id": 1395,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -28742,7 +28942,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -28753,7 +28953,7 @@
"groups": [
{
"title": "Properties",
- "children": [1392, 1393]
+ "children": [1394, 1395]
}
],
"sources": [
@@ -28773,7 +28973,7 @@
]
},
{
- "id": 1381,
+ "id": 1383,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -28787,7 +28987,7 @@
],
"signatures": [
{
- "id": 1382,
+ "id": 1384,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -28817,7 +29017,7 @@
],
"parameters": [
{
- "id": 1383,
+ "id": 1385,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -28837,7 +29037,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -28849,7 +29049,7 @@
]
},
{
- "id": 1375,
+ "id": 1377,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -28863,7 +29063,7 @@
],
"signatures": [
{
- "id": 1376,
+ "id": 1378,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -28893,7 +29093,7 @@
],
"parameters": [
{
- "id": 1377,
+ "id": 1379,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -28902,7 +29102,7 @@
},
"type": {
"type": "reference",
- "target": 1269,
+ "target": 1271,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -28917,7 +29117,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1362,
+ "target": 1364,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -28929,7 +29129,7 @@
]
},
{
- "id": 1394,
+ "id": 1396,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -28943,7 +29143,7 @@
],
"signatures": [
{
- "id": 1395,
+ "id": 1397,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -28973,7 +29173,7 @@
],
"parameters": [
{
- "id": 1396,
+ "id": 1398,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -28993,7 +29193,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -29005,7 +29205,7 @@
]
},
{
- "id": 1384,
+ "id": 1386,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -29019,7 +29219,7 @@
],
"signatures": [
{
- "id": 1385,
+ "id": 1387,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -29049,7 +29249,7 @@
],
"parameters": [
{
- "id": 1386,
+ "id": 1388,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -29060,14 +29260,14 @@
}
},
{
- "id": 1387,
+ "id": 1389,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1354,
+ "target": 1356,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -29082,7 +29282,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -29097,7 +29297,7 @@
"groups": [
{
"title": "Methods",
- "children": [1378, 1388, 1381, 1375, 1394, 1384]
+ "children": [1380, 1390, 1383, 1377, 1396, 1386]
}
],
"sources": [
@@ -29109,7 +29309,7 @@
]
},
{
- "id": 1118,
+ "id": 1120,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -29124,7 +29324,7 @@
},
"children": [
{
- "id": 1234,
+ "id": 1236,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -29147,7 +29347,7 @@
}
},
{
- "id": 1139,
+ "id": 1141,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -29176,7 +29376,7 @@
],
"signatures": [
{
- "id": 1140,
+ "id": 1142,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -29198,7 +29398,7 @@
],
"parameters": [
{
- "id": 1141,
+ "id": 1143,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -29206,14 +29406,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1142,
+ "id": 1144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1143,
+ "id": 1145,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -29242,7 +29442,7 @@
"groups": [
{
"title": "Properties",
- "children": [1143]
+ "children": [1145]
}
],
"sources": [
@@ -29269,14 +29469,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1144,
+ "id": 1146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1145,
+ "id": 1147,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29294,7 +29494,7 @@
}
},
{
- "id": 1146,
+ "id": 1148,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29308,7 +29508,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -29317,7 +29517,7 @@
"groups": [
{
"title": "Properties",
- "children": [1145, 1146]
+ "children": [1147, 1148]
}
],
"sources": [
@@ -29332,14 +29532,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1147,
+ "id": 1149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1148,
+ "id": 1150,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29354,14 +29554,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1149,
+ "id": 1151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1152,
+ "id": 1154,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -29387,7 +29587,7 @@
}
},
{
- "id": 1150,
+ "id": 1152,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -29413,7 +29613,7 @@
}
},
{
- "id": 1151,
+ "id": 1153,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -29442,7 +29642,7 @@
"groups": [
{
"title": "Properties",
- "children": [1152, 1150, 1151]
+ "children": [1154, 1152, 1153]
}
],
"sources": [
@@ -29456,7 +29656,7 @@
}
},
{
- "id": 1153,
+ "id": 1155,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29477,7 +29677,7 @@
"groups": [
{
"title": "Properties",
- "children": [1148, 1153]
+ "children": [1150, 1155]
}
],
"sources": [
@@ -29497,7 +29697,7 @@
}
},
{
- "id": 1154,
+ "id": 1156,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -29511,7 +29711,7 @@
],
"parameters": [
{
- "id": 1155,
+ "id": 1157,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -29519,14 +29719,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1156,
+ "id": 1158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1158,
+ "id": 1160,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -29561,7 +29761,7 @@
}
},
{
- "id": 1157,
+ "id": 1159,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -29590,7 +29790,7 @@
"groups": [
{
"title": "Properties",
- "children": [1158, 1157]
+ "children": [1160, 1159]
}
],
"sources": [
@@ -29617,14 +29817,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1159,
+ "id": 1161,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1160,
+ "id": 1162,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29642,7 +29842,7 @@
}
},
{
- "id": 1161,
+ "id": 1163,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29656,7 +29856,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -29665,7 +29865,7 @@
"groups": [
{
"title": "Properties",
- "children": [1160, 1161]
+ "children": [1162, 1163]
}
],
"sources": [
@@ -29680,14 +29880,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1162,
+ "id": 1164,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1163,
+ "id": 1165,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29702,14 +29902,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1164,
+ "id": 1166,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1167,
+ "id": 1169,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -29735,7 +29935,7 @@
}
},
{
- "id": 1165,
+ "id": 1167,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -29761,7 +29961,7 @@
}
},
{
- "id": 1166,
+ "id": 1168,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -29790,7 +29990,7 @@
"groups": [
{
"title": "Properties",
- "children": [1167, 1165, 1166]
+ "children": [1169, 1167, 1168]
}
],
"sources": [
@@ -29804,7 +30004,7 @@
}
},
{
- "id": 1168,
+ "id": 1170,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29825,7 +30025,7 @@
"groups": [
{
"title": "Properties",
- "children": [1163, 1168]
+ "children": [1165, 1170]
}
],
"sources": [
@@ -29845,7 +30045,7 @@
}
},
{
- "id": 1169,
+ "id": 1171,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -29859,7 +30059,7 @@
],
"parameters": [
{
- "id": 1170,
+ "id": 1172,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -29867,14 +30067,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1171,
+ "id": 1173,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1172,
+ "id": 1174,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -29900,7 +30100,7 @@
}
},
{
- "id": 1173,
+ "id": 1175,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -29915,14 +30115,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1174,
+ "id": 1176,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1175,
+ "id": 1177,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -29948,7 +30148,7 @@
}
},
{
- "id": 1176,
+ "id": 1178,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -29982,7 +30182,7 @@
"groups": [
{
"title": "Properties",
- "children": [1175, 1176]
+ "children": [1177, 1178]
}
],
"sources": [
@@ -29999,7 +30199,7 @@
"groups": [
{
"title": "Properties",
- "children": [1172, 1173]
+ "children": [1174, 1175]
}
],
"sources": [
@@ -30026,14 +30226,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1177,
+ "id": 1179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1178,
+ "id": 1180,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30051,7 +30251,7 @@
}
},
{
- "id": 1179,
+ "id": 1181,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30065,7 +30265,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30074,7 +30274,7 @@
"groups": [
{
"title": "Properties",
- "children": [1178, 1179]
+ "children": [1180, 1181]
}
],
"sources": [
@@ -30089,14 +30289,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1180,
+ "id": 1182,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1181,
+ "id": 1183,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30111,14 +30311,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1182,
+ "id": 1184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1185,
+ "id": 1187,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -30144,7 +30344,7 @@
}
},
{
- "id": 1183,
+ "id": 1185,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -30170,7 +30370,7 @@
}
},
{
- "id": 1184,
+ "id": 1186,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30196,7 +30396,7 @@
}
},
{
- "id": 1186,
+ "id": 1188,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -30214,14 +30414,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1187,
+ "id": 1189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1189,
+ "id": 1191,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -30236,14 +30436,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1190,
+ "id": 1192,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1191,
+ "id": 1193,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -30269,7 +30469,7 @@
"groups": [
{
"title": "Properties",
- "children": [1191]
+ "children": [1193]
}
],
"sources": [
@@ -30283,7 +30483,7 @@
}
},
{
- "id": 1188,
+ "id": 1190,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30304,7 +30504,7 @@
"groups": [
{
"title": "Properties",
- "children": [1189, 1188]
+ "children": [1191, 1190]
}
],
"sources": [
@@ -30319,14 +30519,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1192,
+ "id": 1194,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1194,
+ "id": 1196,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -30341,14 +30541,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1195,
+ "id": 1197,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1196,
+ "id": 1198,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -30374,7 +30574,7 @@
"groups": [
{
"title": "Properties",
- "children": [1196]
+ "children": [1198]
}
],
"sources": [
@@ -30388,7 +30588,7 @@
}
},
{
- "id": 1193,
+ "id": 1195,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30409,7 +30609,7 @@
"groups": [
{
"title": "Properties",
- "children": [1194, 1193]
+ "children": [1196, 1195]
}
],
"sources": [
@@ -30428,7 +30628,7 @@
"groups": [
{
"title": "Properties",
- "children": [1185, 1183, 1184, 1186]
+ "children": [1187, 1185, 1186, 1188]
}
],
"sources": [
@@ -30442,7 +30642,7 @@
}
},
{
- "id": 1197,
+ "id": 1199,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30463,7 +30663,7 @@
"groups": [
{
"title": "Properties",
- "children": [1181, 1197]
+ "children": [1183, 1199]
}
],
"sources": [
@@ -30483,7 +30683,7 @@
}
},
{
- "id": 1198,
+ "id": 1200,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -30497,14 +30697,14 @@
],
"parameters": [
{
- "id": 1199,
+ "id": 1201,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1088,
+ "target": 1090,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -30519,7 +30719,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1107,
+ "target": 1109,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -30531,7 +30731,7 @@
]
},
{
- "id": 1224,
+ "id": 1226,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -30545,7 +30745,7 @@
],
"signatures": [
{
- "id": 1225,
+ "id": 1227,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -30567,7 +30767,7 @@
],
"parameters": [
{
- "id": 1226,
+ "id": 1228,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30575,14 +30775,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1227,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1229,
+ "id": 1231,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -30608,7 +30808,7 @@
}
},
{
- "id": 1228,
+ "id": 1230,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -30637,7 +30837,7 @@
"groups": [
{
"title": "Properties",
- "children": [1229, 1228]
+ "children": [1231, 1230]
}
],
"sources": [
@@ -30660,7 +30860,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -30672,7 +30872,7 @@
]
},
{
- "id": 1119,
+ "id": 1121,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -30701,7 +30901,7 @@
],
"signatures": [
{
- "id": 1120,
+ "id": 1122,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -30739,7 +30939,7 @@
],
"parameters": [
{
- "id": 1121,
+ "id": 1123,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30747,14 +30947,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1122,
+ "id": 1124,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1123,
+ "id": 1125,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -30780,7 +30980,7 @@
}
},
{
- "id": 1124,
+ "id": 1126,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -30808,7 +31008,7 @@
}
},
{
- "id": 1125,
+ "id": 1127,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -30839,7 +31039,7 @@
"groups": [
{
"title": "Properties",
- "children": [1123, 1124, 1125]
+ "children": [1125, 1126, 1127]
}
],
"sources": [
@@ -30862,7 +31062,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1279,
+ "target": 1281,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -30872,7 +31072,7 @@
}
},
{
- "id": 1126,
+ "id": 1128,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -30886,7 +31086,7 @@
],
"parameters": [
{
- "id": 1127,
+ "id": 1129,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30894,14 +31094,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1128,
+ "id": 1130,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1129,
+ "id": 1131,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -30927,7 +31127,7 @@
}
},
{
- "id": 1130,
+ "id": 1132,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -30955,7 +31155,7 @@
}
},
{
- "id": 1131,
+ "id": 1133,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -30984,7 +31184,7 @@
"groups": [
{
"title": "Properties",
- "children": [1129, 1130, 1131]
+ "children": [1131, 1132, 1133]
}
],
"sources": [
@@ -31007,7 +31207,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1280,
+ "target": 1282,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -31017,7 +31217,7 @@
}
},
{
- "id": 1132,
+ "id": 1134,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -31031,7 +31231,7 @@
],
"parameters": [
{
- "id": 1133,
+ "id": 1135,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31039,14 +31239,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1134,
+ "id": 1136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1135,
+ "id": 1137,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -31072,7 +31272,7 @@
}
},
{
- "id": 1136,
+ "id": 1138,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -31103,7 +31303,7 @@
"groups": [
{
"title": "Properties",
- "children": [1135, 1136]
+ "children": [1137, 1138]
}
],
"sources": [
@@ -31126,7 +31326,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1281,
+ "target": 1283,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -31136,7 +31336,7 @@
}
},
{
- "id": 1137,
+ "id": 1139,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -31150,14 +31350,14 @@
],
"parameters": [
{
- "id": 1138,
+ "id": 1140,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1071,
+ "target": 1073,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -31172,7 +31372,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1098,
+ "target": 1100,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -31184,7 +31384,7 @@
]
},
{
- "id": 1232,
+ "id": 1234,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -31198,7 +31398,7 @@
],
"signatures": [
{
- "id": 1233,
+ "id": 1235,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -31251,7 +31451,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1113,
+ "target": 1115,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -31263,7 +31463,7 @@
]
},
{
- "id": 1230,
+ "id": 1232,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -31277,7 +31477,7 @@
],
"signatures": [
{
- "id": 1231,
+ "id": 1233,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -31301,7 +31501,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1119
+ "target": 1121
},
{
"kind": "text",
@@ -31315,7 +31515,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1232
+ "target": 1234
},
{
"kind": "text",
@@ -31355,7 +31555,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1108,
+ "target": 1110,
"typeArguments": [
{
"type": "typeOperator",
@@ -31390,7 +31590,7 @@
]
},
{
- "id": 1221,
+ "id": 1223,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -31404,7 +31604,7 @@
],
"signatures": [
{
- "id": 1222,
+ "id": 1224,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -31442,14 +31642,14 @@
],
"parameters": [
{
- "id": 1223,
+ "id": 1225,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1072,
+ "target": 1074,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -31464,7 +31664,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1099,
+ "target": 1101,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -31476,7 +31676,7 @@
]
},
{
- "id": 1200,
+ "id": 1202,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -31505,7 +31705,7 @@
],
"signatures": [
{
- "id": 1201,
+ "id": 1203,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31527,7 +31727,7 @@
],
"parameters": [
{
- "id": 1202,
+ "id": 1204,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31535,14 +31735,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1203,
+ "id": 1205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1205,
+ "id": 1207,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -31568,7 +31768,7 @@
}
},
{
- "id": 1206,
+ "id": 1208,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -31594,7 +31794,7 @@
}
},
{
- "id": 1204,
+ "id": 1206,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31623,7 +31823,7 @@
"groups": [
{
"title": "Properties",
- "children": [1205, 1206, 1204]
+ "children": [1207, 1208, 1206]
}
],
"sources": [
@@ -31646,7 +31846,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31656,7 +31856,7 @@
}
},
{
- "id": 1207,
+ "id": 1209,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31670,7 +31870,7 @@
],
"parameters": [
{
- "id": 1208,
+ "id": 1210,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31678,14 +31878,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1209,
+ "id": 1211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1211,
+ "id": 1213,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -31711,7 +31911,7 @@
}
},
{
- "id": 1212,
+ "id": 1214,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -31737,7 +31937,7 @@
}
},
{
- "id": 1210,
+ "id": 1212,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31766,7 +31966,7 @@
"groups": [
{
"title": "Properties",
- "children": [1211, 1212, 1210]
+ "children": [1213, 1214, 1212]
}
],
"sources": [
@@ -31789,7 +31989,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31799,7 +31999,7 @@
}
},
{
- "id": 1213,
+ "id": 1215,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31813,7 +32013,7 @@
],
"parameters": [
{
- "id": 1214,
+ "id": 1216,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31821,14 +32021,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1215,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1217,
+ "id": 1219,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -31854,7 +32054,7 @@
}
},
{
- "id": 1216,
+ "id": 1218,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31880,7 +32080,7 @@
}
},
{
- "id": 1218,
+ "id": 1220,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -31935,7 +32135,7 @@
"groups": [
{
"title": "Properties",
- "children": [1217, 1216, 1218]
+ "children": [1219, 1218, 1220]
}
],
"sources": [
@@ -31958,7 +32158,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31968,7 +32168,7 @@
}
},
{
- "id": 1219,
+ "id": 1221,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31982,14 +32182,14 @@
],
"parameters": [
{
- "id": 1220,
+ "id": 1222,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1083,
+ "target": 1085,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -32004,7 +32204,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -32019,11 +32219,11 @@
"groups": [
{
"title": "Properties",
- "children": [1234]
+ "children": [1236]
},
{
"title": "Methods",
- "children": [1139, 1224, 1119, 1232, 1230, 1221, 1200]
+ "children": [1141, 1226, 1121, 1234, 1232, 1223, 1202]
}
],
"sources": [
@@ -32035,14 +32235,14 @@
]
},
{
- "id": 1317,
+ "id": 1319,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1320,
+ "id": 1322,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -32062,7 +32262,7 @@
}
},
{
- "id": 1319,
+ "id": 1321,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -32083,7 +32283,7 @@
}
},
{
- "id": 1321,
+ "id": 1323,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -32103,7 +32303,7 @@
}
},
{
- "id": 1318,
+ "id": 1320,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -32137,7 +32337,7 @@
"groups": [
{
"title": "Properties",
- "children": [1320, 1319, 1321, 1318]
+ "children": [1322, 1321, 1323, 1320]
}
],
"sources": [
@@ -32149,7 +32349,7 @@
],
"indexSignatures": [
{
- "id": 1322,
+ "id": 1324,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -32163,7 +32363,7 @@
],
"parameters": [
{
- "id": 1323,
+ "id": 1325,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -32182,7 +32382,7 @@
]
},
{
- "id": 1297,
+ "id": 1299,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -32208,7 +32408,7 @@
},
"children": [
{
- "id": 1313,
+ "id": 1315,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -32224,7 +32424,7 @@
],
"type": {
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -32235,7 +32435,7 @@
}
},
{
- "id": 1305,
+ "id": 1307,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -32253,14 +32453,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 807,
+ "target": 809,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1303,
+ "id": 1305,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -32276,13 +32476,13 @@
],
"type": {
"type": "reference",
- "target": 833,
+ "target": 835,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1309,
+ "id": 1311,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -32319,7 +32519,7 @@
}
},
{
- "id": 1298,
+ "id": 1300,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -32339,7 +32539,7 @@
}
},
{
- "id": 1310,
+ "id": 1312,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -32364,7 +32564,7 @@
}
},
{
- "id": 1311,
+ "id": 1313,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -32389,7 +32589,7 @@
}
},
{
- "id": 1300,
+ "id": 1302,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -32409,7 +32609,7 @@
}
},
{
- "id": 1307,
+ "id": 1309,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -32434,7 +32634,7 @@
}
},
{
- "id": 1301,
+ "id": 1303,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -32454,7 +32654,7 @@
}
},
{
- "id": 1302,
+ "id": 1304,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -32474,7 +32674,7 @@
}
},
{
- "id": 1299,
+ "id": 1301,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -32494,7 +32694,7 @@
}
},
{
- "id": 1306,
+ "id": 1308,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -32514,7 +32714,7 @@
}
},
{
- "id": 1312,
+ "id": 1314,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -32539,7 +32739,7 @@
}
},
{
- "id": 1314,
+ "id": 1316,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -32564,7 +32764,7 @@
}
},
{
- "id": 1308,
+ "id": 1310,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -32589,7 +32789,7 @@
}
},
{
- "id": 1304,
+ "id": 1306,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -32605,7 +32805,7 @@
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 840,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -32615,8 +32815,8 @@
{
"title": "Properties",
"children": [
- 1313, 1305, 1303, 1309, 1298, 1310, 1311, 1300, 1307, 1301, 1302, 1299, 1306, 1312,
- 1314, 1308, 1304
+ 1315, 1307, 1305, 1311, 1300, 1312, 1313, 1302, 1309, 1303, 1304, 1301, 1308, 1314,
+ 1316, 1310, 1306
]
}
],
@@ -32629,7 +32829,7 @@
],
"indexSignatures": [
{
- "id": 1315,
+ "id": 1317,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -32643,7 +32843,7 @@
],
"parameters": [
{
- "id": 1316,
+ "id": 1318,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -32663,21 +32863,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1287,
+ "target": 1289,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 861,
+ "id": 863,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 863,
+ "id": 865,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -32700,7 +32900,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 864,
+ "id": 866,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32714,7 +32914,7 @@
],
"signatures": [
{
- "id": 865,
+ "id": 867,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -32728,20 +32928,20 @@
],
"parameters": [
{
- "id": 866,
+ "id": 868,
"name": "event",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 702,
+ "target": 704,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
},
{
- "id": 867,
+ "id": 869,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -32773,7 +32973,7 @@
}
},
{
- "id": 862,
+ "id": 864,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -32808,7 +33008,7 @@
}
},
{
- "id": 868,
+ "id": 870,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -32831,7 +33031,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 869,
+ "id": 871,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32845,7 +33045,7 @@
],
"signatures": [
{
- "id": 870,
+ "id": 872,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -32870,7 +33070,7 @@
"groups": [
{
"title": "Properties",
- "children": [863, 862, 868]
+ "children": [865, 864, 870]
}
],
"sources": [
@@ -32882,14 +33082,14 @@
]
},
{
- "id": 833,
+ "id": 835,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 834,
+ "id": 836,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -32917,7 +33117,7 @@
}
},
{
- "id": 835,
+ "id": 837,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -32951,7 +33151,7 @@
"groups": [
{
"title": "Properties",
- "children": [834, 835]
+ "children": [836, 837]
}
],
"sources": [
@@ -32963,7 +33163,7 @@
],
"indexSignatures": [
{
- "id": 836,
+ "id": 838,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -32977,7 +33177,7 @@
],
"parameters": [
{
- "id": 837,
+ "id": 839,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -32996,14 +33196,14 @@
]
},
{
- "id": 842,
+ "id": 844,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 847,
+ "id": 849,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -33047,7 +33247,7 @@
}
},
{
- "id": 843,
+ "id": 845,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -33075,7 +33275,7 @@
}
},
{
- "id": 846,
+ "id": 848,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -33103,7 +33303,7 @@
}
},
{
- "id": 845,
+ "id": 847,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -33131,7 +33331,7 @@
}
},
{
- "id": 844,
+ "id": 846,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -33162,7 +33362,7 @@
"groups": [
{
"title": "Properties",
- "children": [847, 843, 846, 845, 844]
+ "children": [849, 845, 848, 847, 846]
}
],
"sources": [
@@ -33174,14 +33374,14 @@
]
},
{
- "id": 810,
+ "id": 812,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 819,
+ "id": 821,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -33201,7 +33401,7 @@
}
},
{
- "id": 811,
+ "id": 813,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -33219,7 +33419,7 @@
}
},
{
- "id": 813,
+ "id": 815,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -33236,7 +33436,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 814,
+ "id": 816,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -33250,7 +33450,7 @@
],
"indexSignatures": [
{
- "id": 815,
+ "id": 817,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33264,7 +33464,7 @@
],
"parameters": [
{
- "id": 816,
+ "id": 818,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33285,7 +33485,7 @@
}
},
{
- "id": 817,
+ "id": 819,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -33303,7 +33503,7 @@
}
},
{
- "id": 820,
+ "id": 822,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -33323,7 +33523,7 @@
}
},
{
- "id": 818,
+ "id": 820,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -33341,7 +33541,7 @@
}
},
{
- "id": 821,
+ "id": 823,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -33361,7 +33561,7 @@
}
},
{
- "id": 812,
+ "id": 814,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -33382,7 +33582,7 @@
"groups": [
{
"title": "Properties",
- "children": [819, 811, 813, 817, 820, 818, 821, 812]
+ "children": [821, 813, 815, 819, 822, 820, 823, 814]
}
],
"sources": [
@@ -33394,7 +33594,7 @@
]
},
{
- "id": 838,
+ "id": 840,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -33408,7 +33608,7 @@
],
"indexSignatures": [
{
- "id": 839,
+ "id": 841,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33422,7 +33622,7 @@
],
"parameters": [
{
- "id": 840,
+ "id": 842,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33441,14 +33641,14 @@
]
},
{
- "id": 991,
+ "id": 993,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 992,
+ "id": 994,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -33474,7 +33674,7 @@
}
},
{
- "id": 995,
+ "id": 997,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -33491,14 +33691,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 996,
+ "id": 998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 998,
+ "id": 1000,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -33532,7 +33732,7 @@
}
},
{
- "id": 997,
+ "id": 999,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -33563,7 +33763,7 @@
"groups": [
{
"title": "Properties",
- "children": [998, 997]
+ "children": [1000, 999]
}
],
"sources": [
@@ -33577,7 +33777,7 @@
}
},
{
- "id": 993,
+ "id": 995,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -33603,7 +33803,7 @@
}
},
{
- "id": 994,
+ "id": 996,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -33625,7 +33825,7 @@
],
"type": {
"type": "reference",
- "target": 1003,
+ "target": 1005,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -33634,7 +33834,7 @@
"groups": [
{
"title": "Properties",
- "children": [992, 995, 993, 994]
+ "children": [994, 997, 995, 996]
}
],
"sources": [
@@ -33646,14 +33846,14 @@
]
},
{
- "id": 983,
+ "id": 985,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 987,
+ "id": 989,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -33670,14 +33870,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 988,
+ "id": 990,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 990,
+ "id": 992,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -33711,7 +33911,7 @@
}
},
{
- "id": 989,
+ "id": 991,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -33742,7 +33942,7 @@
"groups": [
{
"title": "Properties",
- "children": [990, 989]
+ "children": [992, 991]
}
],
"sources": [
@@ -33756,7 +33956,7 @@
}
},
{
- "id": 984,
+ "id": 986,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -33782,7 +33982,7 @@
}
},
{
- "id": 985,
+ "id": 987,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -33808,7 +34008,7 @@
}
},
{
- "id": 986,
+ "id": 988,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -33830,7 +34030,7 @@
],
"type": {
"type": "reference",
- "target": 1002,
+ "target": 1004,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -33839,7 +34039,7 @@
"groups": [
{
"title": "Properties",
- "children": [987, 984, 985, 986]
+ "children": [989, 986, 987, 988]
}
],
"sources": [
@@ -33851,14 +34051,14 @@
]
},
{
- "id": 999,
+ "id": 1001,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1000,
+ "id": 1002,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -33884,7 +34084,7 @@
}
},
{
- "id": 1001,
+ "id": 1003,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -33906,7 +34106,7 @@
],
"type": {
"type": "reference",
- "target": 1003,
+ "target": 1005,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -33915,7 +34115,7 @@
"groups": [
{
"title": "Properties",
- "children": [1000, 1001]
+ "children": [1002, 1003]
}
],
"sources": [
@@ -33927,14 +34127,14 @@
]
},
{
- "id": 2183,
+ "id": 2200,
"name": "WebSocketLike",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 2226,
+ "id": 2243,
"name": "binaryType",
"variant": "declaration",
"kind": 1024,
@@ -33954,7 +34154,7 @@
}
},
{
- "id": 2227,
+ "id": 2244,
"name": "bufferedAmount",
"variant": "declaration",
"kind": 1024,
@@ -33974,7 +34174,7 @@
}
},
{
- "id": 2187,
+ "id": 2204,
"name": "CLOSED",
"variant": "declaration",
"kind": 1024,
@@ -33994,7 +34194,7 @@
}
},
{
- "id": 2186,
+ "id": 2203,
"name": "CLOSING",
"variant": "declaration",
"kind": 1024,
@@ -34014,7 +34214,7 @@
}
},
{
- "id": 2184,
+ "id": 2201,
"name": "CONNECTING",
"variant": "declaration",
"kind": 1024,
@@ -34034,7 +34234,7 @@
}
},
{
- "id": 2229,
+ "id": 2246,
"name": "dispatchEvent",
"variant": "declaration",
"kind": 1024,
@@ -34051,7 +34251,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2230,
+ "id": 2247,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34065,7 +34265,7 @@
],
"signatures": [
{
- "id": 2231,
+ "id": 2248,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34079,7 +34279,7 @@
],
"parameters": [
{
- "id": 2232,
+ "id": 2249,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -34105,7 +34305,7 @@
}
},
{
- "id": 2228,
+ "id": 2245,
"name": "extensions",
"variant": "declaration",
"kind": 1024,
@@ -34125,7 +34325,7 @@
}
},
{
- "id": 2208,
+ "id": 2225,
"name": "onclose",
"variant": "declaration",
"kind": 1024,
@@ -34147,7 +34347,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2209,
+ "id": 2226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34161,7 +34361,7 @@
],
"signatures": [
{
- "id": 2210,
+ "id": 2227,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34175,7 +34375,7 @@
],
"parameters": [
{
- "id": 2211,
+ "id": 2228,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34186,7 +34386,7 @@
}
},
{
- "id": 2212,
+ "id": 2229,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34214,7 +34414,7 @@
}
},
{
- "id": 2213,
+ "id": 2230,
"name": "onerror",
"variant": "declaration",
"kind": 1024,
@@ -34236,7 +34436,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2214,
+ "id": 2231,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34250,7 +34450,7 @@
],
"signatures": [
{
- "id": 2215,
+ "id": 2232,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34264,7 +34464,7 @@
],
"parameters": [
{
- "id": 2216,
+ "id": 2233,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34275,7 +34475,7 @@
}
},
{
- "id": 2217,
+ "id": 2234,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34303,7 +34503,7 @@
}
},
{
- "id": 2203,
+ "id": 2220,
"name": "onmessage",
"variant": "declaration",
"kind": 1024,
@@ -34325,7 +34525,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2204,
+ "id": 2221,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34339,7 +34539,7 @@
],
"signatures": [
{
- "id": 2205,
+ "id": 2222,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34353,7 +34553,7 @@
],
"parameters": [
{
- "id": 2206,
+ "id": 2223,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34364,7 +34564,7 @@
}
},
{
- "id": 2207,
+ "id": 2224,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34392,7 +34592,7 @@
}
},
{
- "id": 2198,
+ "id": 2215,
"name": "onopen",
"variant": "declaration",
"kind": 1024,
@@ -34414,7 +34614,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2199,
+ "id": 2216,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34428,7 +34628,7 @@
],
"signatures": [
{
- "id": 2200,
+ "id": 2217,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34442,7 +34642,7 @@
],
"parameters": [
{
- "id": 2201,
+ "id": 2218,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34453,7 +34653,7 @@
}
},
{
- "id": 2202,
+ "id": 2219,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34481,7 +34681,7 @@
}
},
{
- "id": 2185,
+ "id": 2202,
"name": "OPEN",
"variant": "declaration",
"kind": 1024,
@@ -34501,7 +34701,7 @@
}
},
{
- "id": 2190,
+ "id": 2207,
"name": "protocol",
"variant": "declaration",
"kind": 1024,
@@ -34521,7 +34721,7 @@
}
},
{
- "id": 2188,
+ "id": 2205,
"name": "readyState",
"variant": "declaration",
"kind": 1024,
@@ -34541,7 +34741,7 @@
}
},
{
- "id": 2189,
+ "id": 2206,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -34561,7 +34761,7 @@
}
},
{
- "id": 2218,
+ "id": 2235,
"name": "addEventListener",
"variant": "declaration",
"kind": 2048,
@@ -34575,7 +34775,7 @@
],
"signatures": [
{
- "id": 2219,
+ "id": 2236,
"name": "addEventListener",
"variant": "signature",
"kind": 4096,
@@ -34597,7 +34797,7 @@
],
"parameters": [
{
- "id": 2220,
+ "id": 2237,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -34608,7 +34808,7 @@
}
},
{
- "id": 2221,
+ "id": 2238,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -34632,7 +34832,7 @@
]
},
{
- "id": 2191,
+ "id": 2208,
"name": "close",
"variant": "declaration",
"kind": 2048,
@@ -34646,7 +34846,7 @@
],
"signatures": [
{
- "id": 2192,
+ "id": 2209,
"name": "close",
"variant": "signature",
"kind": 4096,
@@ -34668,7 +34868,7 @@
],
"parameters": [
{
- "id": 2193,
+ "id": 2210,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -34681,7 +34881,7 @@
}
},
{
- "id": 2194,
+ "id": 2211,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -34702,7 +34902,7 @@
]
},
{
- "id": 2222,
+ "id": 2239,
"name": "removeEventListener",
"variant": "declaration",
"kind": 2048,
@@ -34716,7 +34916,7 @@
],
"signatures": [
{
- "id": 2223,
+ "id": 2240,
"name": "removeEventListener",
"variant": "signature",
"kind": 4096,
@@ -34738,7 +34938,7 @@
],
"parameters": [
{
- "id": 2224,
+ "id": 2241,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -34749,7 +34949,7 @@
}
},
{
- "id": 2225,
+ "id": 2242,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -34773,7 +34973,7 @@
]
},
{
- "id": 2195,
+ "id": 2212,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -34787,7 +34987,7 @@
],
"signatures": [
{
- "id": 2196,
+ "id": 2213,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -34809,7 +35009,7 @@
],
"parameters": [
{
- "id": 2197,
+ "id": 2214,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -34875,12 +35075,12 @@
{
"title": "Properties",
"children": [
- 2226, 2227, 2187, 2186, 2184, 2229, 2228, 2208, 2213, 2203, 2198, 2185, 2190, 2188, 2189
+ 2243, 2244, 2204, 2203, 2201, 2246, 2245, 2225, 2230, 2220, 2215, 2202, 2207, 2205, 2206
]
},
{
"title": "Methods",
- "children": [2218, 2191, 2222, 2195]
+ "children": [2235, 2208, 2239, 2212]
}
],
"sources": [
@@ -34892,7 +35092,7 @@
]
},
{
- "id": 2233,
+ "id": 2250,
"name": "WebSocketLikeConstructor",
"variant": "declaration",
"kind": 256,
@@ -34915,7 +35115,7 @@
},
"children": [
{
- "id": 2234,
+ "id": 2251,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -34929,7 +35129,7 @@
],
"signatures": [
{
- "id": 2235,
+ "id": 2252,
"name": "WebSocketLikeConstructor",
"variant": "signature",
"kind": 16384,
@@ -34943,7 +35143,7 @@
],
"parameters": [
{
- "id": 2236,
+ "id": 2253,
"name": "address",
"variant": "param",
"kind": 32768,
@@ -34968,7 +35168,7 @@
}
},
{
- "id": 2237,
+ "id": 2254,
"name": "subprotocols",
"variant": "param",
"kind": 32768,
@@ -34995,7 +35195,7 @@
],
"type": {
"type": "reference",
- "target": 2183,
+ "target": 2200,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -35006,7 +35206,7 @@
"groups": [
{
"title": "Constructors",
- "children": [2234]
+ "children": [2251]
}
],
"sources": [
@@ -35018,7 +35218,7 @@
],
"indexSignatures": [
{
- "id": 2238,
+ "id": 2255,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -35032,7 +35232,7 @@
],
"parameters": [
{
- "id": 2239,
+ "id": 2256,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -35051,7 +35251,7 @@
]
},
{
- "id": 805,
+ "id": 807,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -35096,7 +35296,7 @@
{
"type": "reflection",
"declaration": {
- "id": 806,
+ "id": 808,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35116,7 +35316,7 @@
}
},
{
- "id": 702,
+ "id": 704,
"name": "AuthChangeEvent",
"variant": "declaration",
"kind": 2097152,
@@ -35157,7 +35357,7 @@
},
{
"type": "reference",
- "target": 701,
+ "target": 703,
"name": "AuthChangeEventMFA",
"package": "@supabase/auth-js"
}
@@ -35165,7 +35365,7 @@
}
},
{
- "id": 701,
+ "id": 703,
"name": "AuthChangeEventMFA",
"variant": "declaration",
"kind": 2097152,
@@ -35183,7 +35383,7 @@
}
},
{
- "id": 1112,
+ "id": 1114,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -35210,7 +35410,7 @@
}
},
{
- "id": 907,
+ "id": 909,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -35237,7 +35437,7 @@
}
},
{
- "id": 1238,
+ "id": 1240,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -35261,14 +35461,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1241,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1240,
+ "id": 1242,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -35294,7 +35494,7 @@
}
},
{
- "id": 1241,
+ "id": 1243,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -35323,7 +35523,7 @@
"groups": [
{
"title": "Properties",
- "children": [1240, 1241]
+ "children": [1242, 1243]
}
],
"sources": [
@@ -35337,7 +35537,7 @@
}
},
{
- "id": 1235,
+ "id": 1237,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35360,19 +35560,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1236,
+ "id": 1238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1237,
+ "id": 1239,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -35401,7 +35601,7 @@
"groups": [
{
"title": "Properties",
- "children": [1237]
+ "children": [1239]
}
],
"sources": [
@@ -35419,7 +35619,7 @@
}
},
{
- "id": 1245,
+ "id": 1247,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -35443,14 +35643,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1246,
+ "id": 1248,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1247,
+ "id": 1249,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -35479,7 +35679,7 @@
"groups": [
{
"title": "Properties",
- "children": [1247]
+ "children": [1249]
}
],
"sources": [
@@ -35493,7 +35693,7 @@
}
},
{
- "id": 1242,
+ "id": 1244,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35516,19 +35716,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1243,
+ "id": 1245,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1244,
+ "id": 1246,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -35552,7 +35752,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 823,
+ "target": 825,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -35562,7 +35762,7 @@
"groups": [
{
"title": "Properties",
- "children": [1244]
+ "children": [1246]
}
],
"sources": [
@@ -35580,7 +35780,7 @@
}
},
{
- "id": 1103,
+ "id": 1105,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35594,11 +35794,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35639,7 +35839,7 @@
}
},
{
- "id": 1107,
+ "id": 1109,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35656,19 +35856,19 @@
"types": [
{
"type": "reference",
- "target": 1102,
+ "target": 1104,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1103,
+ "target": 1105,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1104,
+ "target": 1106,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -35676,7 +35876,7 @@
}
},
{
- "id": 1102,
+ "id": 1104,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35690,11 +35890,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35735,7 +35935,7 @@
}
},
{
- "id": 1104,
+ "id": 1106,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35770,11 +35970,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35815,7 +36015,7 @@
}
},
{
- "id": 1105,
+ "id": 1107,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -35837,7 +36037,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35874,7 +36074,7 @@
}
},
{
- "id": 1106,
+ "id": 1108,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35896,11 +36096,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1105,
+ "target": 1107,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -35910,7 +36110,7 @@
}
},
{
- "id": 1280,
+ "id": 1282,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35924,11 +36124,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35969,7 +36169,7 @@
}
},
{
- "id": 1098,
+ "id": 1100,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35986,19 +36186,19 @@
"types": [
{
"type": "reference",
- "target": 1279,
+ "target": 1281,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1280,
+ "target": 1282,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1281,
+ "target": 1283,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -36006,7 +36206,7 @@
}
},
{
- "id": 1279,
+ "id": 1281,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36020,11 +36220,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -36065,7 +36265,7 @@
}
},
{
- "id": 1281,
+ "id": 1283,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36100,11 +36300,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -36145,7 +36345,7 @@
}
},
{
- "id": 1113,
+ "id": 1115,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36159,19 +36359,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1114,
+ "id": 1116,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1117,
+ "id": 1119,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -36195,14 +36395,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 807,
+ "target": 809,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1115,
+ "id": 1117,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -36227,7 +36427,7 @@
"types": [
{
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -36239,7 +36439,7 @@
}
},
{
- "id": 1116,
+ "id": 1118,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -36259,7 +36459,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1139
+ "target": 1141
}
]
}
@@ -36277,7 +36477,7 @@
"types": [
{
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -36292,7 +36492,7 @@
"groups": [
{
"title": "Properties",
- "children": [1117, 1115, 1116]
+ "children": [1119, 1117, 1118]
}
],
"sources": [
@@ -36310,7 +36510,7 @@
}
},
{
- "id": 1108,
+ "id": 1110,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36332,7 +36532,7 @@
],
"typeParameters": [
{
- "id": 1111,
+ "id": 1113,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -36367,7 +36567,7 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "intersection",
@@ -36375,14 +36575,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1109,
+ "id": 1111,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1110,
+ "id": 1112,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -36406,11 +36606,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 825,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -36424,7 +36624,7 @@
"groups": [
{
"title": "Properties",
- "children": [1110]
+ "children": [1112]
}
],
"sources": [
@@ -36447,7 +36647,7 @@
},
"objectType": {
"type": "reference",
- "target": 1111,
+ "target": 1113,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -36457,11 +36657,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 825,
"typeArguments": [
{
"type": "reference",
@@ -36495,7 +36695,7 @@
}
},
{
- "id": 1099,
+ "id": 1101,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36509,19 +36709,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1100,
+ "id": 1102,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1101,
+ "id": 1103,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36550,7 +36750,7 @@
"groups": [
{
"title": "Properties",
- "children": [1101]
+ "children": [1103]
}
],
"sources": [
@@ -36568,7 +36768,7 @@
}
},
{
- "id": 1097,
+ "id": 1099,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36590,11 +36790,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1090,
+ "target": 1092,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -36604,7 +36804,7 @@
}
},
{
- "id": 1090,
+ "id": 1092,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -36627,14 +36827,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1091,
+ "id": 1093,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1092,
+ "id": 1094,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -36660,7 +36860,7 @@
}
},
{
- "id": 1094,
+ "id": 1096,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -36686,7 +36886,7 @@
}
},
{
- "id": 1095,
+ "id": 1097,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -36712,7 +36912,7 @@
}
},
{
- "id": 1093,
+ "id": 1095,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -36746,7 +36946,7 @@
}
},
{
- "id": 1096,
+ "id": 1098,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -36777,7 +36977,7 @@
"groups": [
{
"title": "Properties",
- "children": [1092, 1094, 1095, 1093, 1096]
+ "children": [1094, 1096, 1097, 1095, 1098]
}
],
"sources": [
@@ -36791,7 +36991,7 @@
}
},
{
- "id": 1413,
+ "id": 1415,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36813,11 +37013,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1403,
+ "target": 1405,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
}
@@ -36827,7 +37027,7 @@
}
},
{
- "id": 1414,
+ "id": 1416,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36849,19 +37049,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1415,
+ "id": 1417,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1416,
+ "id": 1418,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -36890,7 +37090,7 @@
"groups": [
{
"title": "Properties",
- "children": [1416]
+ "children": [1418]
}
],
"sources": [
@@ -36908,7 +37108,93 @@
}
},
{
- "id": 771,
+ "id": 1424,
+ "name": "AuthOAuthGrantsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for listing user's OAuth grants.\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": 1397,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 747,
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1419,
+ "name": "OAuthGrant",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1425,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for revoking an OAuth grant.\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": 1402,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 747,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1426,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1402,
+ "character": 57
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 773,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36935,19 +37221,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 772,
+ "id": 774,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 775,
+ "id": 777,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -36976,7 +37262,7 @@
}
},
{
- "id": 774,
+ "id": 776,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -36994,7 +37280,7 @@
}
},
{
- "id": 773,
+ "id": 775,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37015,7 +37301,7 @@
"groups": [
{
"title": "Properties",
- "children": [775, 774, 773]
+ "children": [777, 776, 775]
}
],
"sources": [
@@ -37033,7 +37319,7 @@
}
},
{
- "id": 762,
+ "id": 764,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37047,19 +37333,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 763,
+ "id": 765,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 765,
+ "id": 767,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37088,7 +37374,7 @@
}
},
{
- "id": 764,
+ "id": 766,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37120,7 +37406,7 @@
"groups": [
{
"title": "Properties",
- "children": [765, 764]
+ "children": [767, 766]
}
],
"sources": [
@@ -37138,7 +37424,7 @@
}
},
{
- "id": 766,
+ "id": 768,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -37152,19 +37438,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 767,
+ "id": 769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 769,
+ "id": 771,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37193,7 +37479,7 @@
}
},
{
- "id": 768,
+ "id": 770,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37222,7 +37508,7 @@
}
},
{
- "id": 770,
+ "id": 772,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -37241,7 +37527,7 @@
"types": [
{
"type": "reference",
- "target": 736,
+ "target": 738,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -37256,7 +37542,7 @@
"groups": [
{
"title": "Properties",
- "children": [769, 768, 770]
+ "children": [771, 770, 772]
}
],
"sources": [
@@ -37274,7 +37560,7 @@
}
},
{
- "id": 776,
+ "id": 778,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37288,19 +37574,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 777,
+ "id": 779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 779,
+ "id": 781,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37320,7 +37606,7 @@
}
},
{
- "id": 778,
+ "id": 780,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37343,7 +37629,7 @@
"groups": [
{
"title": "Properties",
- "children": [779, 778]
+ "children": [781, 780]
}
],
"sources": [
@@ -37361,7 +37647,7 @@
}
},
{
- "id": 780,
+ "id": 782,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -37375,19 +37661,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 781,
+ "id": 783,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 783,
+ "id": 785,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37407,7 +37693,7 @@
}
},
{
- "id": 782,
+ "id": 784,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37427,7 +37713,7 @@
}
},
{
- "id": 784,
+ "id": 786,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -37443,7 +37729,7 @@
],
"type": {
"type": "reference",
- "target": 736,
+ "target": 738,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -37452,7 +37738,7 @@
"groups": [
{
"title": "Properties",
- "children": [783, 782, 784]
+ "children": [785, 784, 786]
}
],
"sources": [
@@ -37470,7 +37756,7 @@
}
},
{
- "id": 1261,
+ "id": 1263,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -37484,7 +37770,7 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
@@ -37498,7 +37784,7 @@
}
},
{
- "id": 1346,
+ "id": 1348,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -37521,14 +37807,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1347,
+ "id": 1349,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1348,
+ "id": 1350,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -37554,7 +37840,7 @@
}
},
{
- "id": 1349,
+ "id": 1351,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -37582,7 +37868,7 @@
}
},
{
- "id": 1351,
+ "id": 1353,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -37608,14 +37894,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1326,
+ "target": 1328,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1350,
+ "id": 1352,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -37644,7 +37930,7 @@
}
},
{
- "id": 1352,
+ "id": 1354,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -37670,14 +37956,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1327,
+ "target": 1329,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1353,
+ "id": 1355,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -37708,7 +37994,7 @@
"groups": [
{
"title": "Properties",
- "children": [1348, 1349, 1351, 1350, 1352, 1353]
+ "children": [1350, 1351, 1353, 1352, 1354, 1355]
}
],
"sources": [
@@ -37722,7 +38008,7 @@
}
},
{
- "id": 1003,
+ "id": 1005,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -37765,7 +38051,7 @@
}
},
{
- "id": 963,
+ "id": 965,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -37788,7 +38074,7 @@
}
},
{
- "id": 964,
+ "id": 966,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -37806,14 +38092,14 @@
{
"type": "reflection",
"declaration": {
- "id": 965,
+ "id": 967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 966,
+ "id": 968,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -37831,7 +38117,7 @@
}
},
{
- "id": 969,
+ "id": 971,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -37848,14 +38134,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 970,
+ "id": 972,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 972,
+ "id": 974,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -37883,7 +38169,7 @@
}
},
{
- "id": 973,
+ "id": 975,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -37951,7 +38237,7 @@
}
},
{
- "id": 971,
+ "id": 973,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -37982,7 +38268,7 @@
"groups": [
{
"title": "Properties",
- "children": [972, 973, 971]
+ "children": [974, 975, 973]
}
],
"sources": [
@@ -37996,7 +38282,7 @@
}
},
{
- "id": 968,
+ "id": 970,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -38024,7 +38310,7 @@
}
},
{
- "id": 967,
+ "id": 969,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -38056,7 +38342,7 @@
],
"type": {
"type": "reference",
- "target": 963,
+ "target": 965,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -38065,7 +38351,7 @@
"groups": [
{
"title": "Properties",
- "children": [966, 969, 968, 967]
+ "children": [968, 971, 970, 969]
}
],
"sources": [
@@ -38080,14 +38366,14 @@
{
"type": "reflection",
"declaration": {
- "id": 974,
+ "id": 976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 975,
+ "id": 977,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -38105,7 +38391,7 @@
}
},
{
- "id": 976,
+ "id": 978,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -38155,7 +38441,7 @@
}
},
{
- "id": 978,
+ "id": 980,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -38172,14 +38458,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 979,
+ "id": 981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 980,
+ "id": 982,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -38210,7 +38496,7 @@
"groups": [
{
"title": "Properties",
- "children": [980]
+ "children": [982]
}
],
"sources": [
@@ -38224,7 +38510,7 @@
}
},
{
- "id": 977,
+ "id": 979,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -38258,7 +38544,7 @@
"groups": [
{
"title": "Properties",
- "children": [975, 976, 978, 977]
+ "children": [977, 978, 980, 979]
}
],
"sources": [
@@ -38274,7 +38560,7 @@
}
},
{
- "id": 823,
+ "id": 825,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -38298,7 +38584,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1119
+ "target": 1121
},
{
"kind": "text",
@@ -38312,7 +38598,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1230
+ "target": 1232
},
{
"kind": "text",
@@ -38344,26 +38630,26 @@
],
"typeParameters": [
{
- "id": 831,
+ "id": 833,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 822,
+ "target": 824,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 822,
+ "target": 824,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 832,
+ "id": 834,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -38402,14 +38688,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 824,
+ "id": 826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 829,
+ "id": 831,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -38427,7 +38713,7 @@
}
},
{
- "id": 827,
+ "id": 829,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -38465,14 +38751,14 @@
],
"type": {
"type": "reference",
- "target": 831,
+ "target": 833,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 826,
+ "id": 828,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -38500,7 +38786,7 @@
}
},
{
- "id": 825,
+ "id": 827,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -38526,7 +38812,7 @@
}
},
{
- "id": 828,
+ "id": 830,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -38576,14 +38862,14 @@
],
"type": {
"type": "reference",
- "target": 832,
+ "target": 834,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 830,
+ "id": 832,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -38604,7 +38890,7 @@
"groups": [
{
"title": "Properties",
- "children": [829, 827, 826, 825, 828, 830]
+ "children": [831, 829, 828, 827, 830, 832]
}
],
"sources": [
@@ -38618,7 +38904,7 @@
}
},
{
- "id": 822,
+ "id": 824,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -39037,7 +39323,7 @@
}
},
{
- "id": 1049,
+ "id": 1051,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39052,14 +39338,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1050,
+ "id": 1052,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1052,
+ "id": 1054,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39085,7 +39371,7 @@
}
},
{
- "id": 1053,
+ "id": 1055,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -39111,7 +39397,7 @@
}
},
{
- "id": 1054,
+ "id": 1056,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39134,7 +39420,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39148,7 +39434,7 @@
}
},
{
- "id": 1051,
+ "id": 1053,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39178,7 +39464,7 @@
"groups": [
{
"title": "Properties",
- "children": [1052, 1053, 1054, 1051]
+ "children": [1054, 1055, 1056, 1053]
}
],
"sources": [
@@ -39192,7 +39478,7 @@
}
},
{
- "id": 1039,
+ "id": 1041,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39207,14 +39493,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1040,
+ "id": 1042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1042,
+ "id": 1044,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39240,7 +39526,7 @@
}
},
{
- "id": 1043,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39263,7 +39549,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39286,7 +39572,7 @@
}
},
{
- "id": 1041,
+ "id": 1043,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39316,7 +39602,7 @@
"groups": [
{
"title": "Properties",
- "children": [1042, 1043, 1041]
+ "children": [1044, 1045, 1043]
}
],
"sources": [
@@ -39330,7 +39616,7 @@
}
},
{
- "id": 1058,
+ "id": 1060,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39347,25 +39633,25 @@
"types": [
{
"type": "reference",
- "target": 1033,
+ "target": 1035,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1039,
+ "target": 1041,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1044,
+ "target": 1046,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1049,
+ "target": 1051,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -39373,7 +39659,7 @@
}
},
{
- "id": 1063,
+ "id": 1065,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -39396,14 +39682,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1064,
+ "id": 1066,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1065,
+ "id": 1067,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -39429,7 +39715,7 @@
}
},
{
- "id": 1066,
+ "id": 1068,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -39455,7 +39741,7 @@
}
},
{
- "id": 1067,
+ "id": 1069,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -39481,7 +39767,7 @@
}
},
{
- "id": 1068,
+ "id": 1070,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -39507,7 +39793,7 @@
}
},
{
- "id": 1069,
+ "id": 1071,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -39529,7 +39815,7 @@
],
"type": {
"type": "reference",
- "target": 1070,
+ "target": 1072,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -39538,7 +39824,7 @@
"groups": [
{
"title": "Properties",
- "children": [1065, 1066, 1067, 1068, 1069]
+ "children": [1067, 1068, 1069, 1070, 1071]
}
],
"sources": [
@@ -39552,7 +39838,7 @@
}
},
{
- "id": 1059,
+ "id": 1061,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -39566,19 +39852,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1060,
+ "id": 1062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1061,
+ "id": 1063,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -39592,13 +39878,13 @@
],
"type": {
"type": "reference",
- "target": 1063,
+ "target": 1065,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1062,
+ "id": 1064,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -39621,7 +39907,7 @@
"groups": [
{
"title": "Properties",
- "children": [1061, 1062]
+ "children": [1063, 1064]
}
],
"sources": [
@@ -39639,7 +39925,7 @@
}
},
{
- "id": 1070,
+ "id": 1072,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -39682,7 +39968,7 @@
}
},
{
- "id": 1044,
+ "id": 1046,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39697,14 +39983,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1045,
+ "id": 1047,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1049,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39730,7 +40016,7 @@
}
},
{
- "id": 1048,
+ "id": 1050,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39753,7 +40039,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39767,7 +40053,7 @@
}
},
{
- "id": 1046,
+ "id": 1048,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39788,7 +40074,7 @@
"groups": [
{
"title": "Properties",
- "children": [1047, 1048, 1046]
+ "children": [1049, 1050, 1048]
}
],
"sources": [
@@ -39802,7 +40088,7 @@
}
},
{
- "id": 1033,
+ "id": 1035,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39817,14 +40103,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1034,
+ "id": 1036,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1036,
+ "id": 1038,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39842,7 +40128,7 @@
}
},
{
- "id": 1038,
+ "id": 1040,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39865,7 +40151,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39888,7 +40174,7 @@
}
},
{
- "id": 1037,
+ "id": 1039,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -39906,7 +40192,7 @@
}
},
{
- "id": 1035,
+ "id": 1037,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39927,7 +40213,7 @@
"groups": [
{
"title": "Properties",
- "children": [1036, 1038, 1037, 1035]
+ "children": [1038, 1040, 1039, 1037]
}
],
"sources": [
@@ -39941,7 +40227,7 @@
}
},
{
- "id": 712,
+ "id": 714,
"name": "GoTrueClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -39956,14 +40242,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 713,
+ "id": 715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 721,
+ "id": 723,
"name": "autoRefreshToken",
"variant": "declaration",
"kind": 1024,
@@ -39983,7 +40269,7 @@
}
},
{
- "id": 727,
+ "id": 729,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -40007,7 +40293,7 @@
{
"type": "reflection",
"declaration": {
- "id": 728,
+ "id": 730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40021,14 +40307,14 @@
],
"signatures": [
{
- "id": 729,
+ "id": 731,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 730,
+ "id": 732,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -40039,7 +40325,7 @@
}
},
{
- "id": 731,
+ "id": 733,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -40067,7 +40353,7 @@
}
},
{
- "id": 720,
+ "id": 722,
"name": "detectSessionInUrl",
"variant": "declaration",
"kind": 1024,
@@ -40087,7 +40373,7 @@
}
},
{
- "id": 725,
+ "id": 727,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -40112,7 +40398,7 @@
}
},
{
- "id": 726,
+ "id": 728,
"name": "flowType",
"variant": "declaration",
"kind": 1024,
@@ -40128,13 +40414,13 @@
],
"type": {
"type": "reference",
- "target": 907,
+ "target": 909,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
},
{
- "id": 733,
+ "id": 735,
"name": "hasCustomAuthorizationHeader",
"variant": "declaration",
"kind": 1024,
@@ -40163,7 +40449,7 @@
}
},
{
- "id": 715,
+ "id": 717,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -40180,7 +40466,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 716,
+ "id": 718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40194,7 +40480,7 @@
],
"indexSignatures": [
{
- "id": 717,
+ "id": 719,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -40208,7 +40494,7 @@
],
"parameters": [
{
- "id": 718,
+ "id": 720,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -40229,7 +40515,7 @@
}
},
{
- "id": 732,
+ "id": 734,
"name": "lock",
"variant": "declaration",
"kind": 1024,
@@ -40254,13 +40540,13 @@
],
"type": {
"type": "reference",
- "target": 703,
+ "target": 705,
"name": "LockFunc",
"package": "@supabase/auth-js"
}
},
{
- "id": 722,
+ "id": 724,
"name": "persistSession",
"variant": "declaration",
"kind": 1024,
@@ -40280,7 +40566,7 @@
}
},
{
- "id": 723,
+ "id": 725,
"name": "storage",
"variant": "declaration",
"kind": 1024,
@@ -40296,13 +40582,13 @@
],
"type": {
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
},
{
- "id": 719,
+ "id": 721,
"name": "storageKey",
"variant": "declaration",
"kind": 1024,
@@ -40322,7 +40608,7 @@
}
},
{
- "id": 734,
+ "id": 736,
"name": "throwOnError",
"variant": "declaration",
"kind": 1024,
@@ -40350,7 +40636,7 @@
}
},
{
- "id": 714,
+ "id": 716,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -40370,7 +40656,7 @@
}
},
{
- "id": 724,
+ "id": 726,
"name": "userStorage",
"variant": "declaration",
"kind": 1024,
@@ -40435,7 +40721,7 @@
],
"type": {
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -40444,7 +40730,7 @@
"groups": [
{
"title": "Properties",
- "children": [721, 727, 720, 725, 726, 733, 715, 732, 722, 723, 719, 734, 714, 724]
+ "children": [723, 729, 722, 727, 728, 735, 717, 734, 724, 725, 721, 736, 716, 726]
}
],
"sources": [
@@ -40458,7 +40744,7 @@
}
},
{
- "id": 1258,
+ "id": 1260,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -40473,14 +40759,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1259,
+ "id": 1261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1260,
+ "id": 1262,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -40497,7 +40783,7 @@
"types": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -40512,7 +40798,7 @@
"groups": [
{
"title": "Properties",
- "children": [1260]
+ "children": [1262]
}
],
"sources": [
@@ -40526,7 +40812,7 @@
}
},
{
- "id": 1282,
+ "id": 1284,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -40541,14 +40827,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1283,
+ "id": 1285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1284,
+ "id": 1286,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -40579,7 +40865,7 @@
}
},
{
- "id": 1285,
+ "id": 1287,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -40597,7 +40883,7 @@
}
},
{
- "id": 1286,
+ "id": 1288,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -40618,7 +40904,7 @@
"groups": [
{
"title": "Properties",
- "children": [1284, 1285, 1286]
+ "children": [1286, 1287, 1288]
}
],
"sources": [
@@ -40632,7 +40918,7 @@
}
},
{
- "id": 703,
+ "id": 705,
"name": "LockFunc",
"variant": "declaration",
"kind": 2097152,
@@ -40664,7 +40950,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 704,
+ "id": 706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40678,14 +40964,14 @@
],
"signatures": [
{
- "id": 705,
+ "id": 707,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"typeParameters": [
{
- "id": 711,
+ "id": 713,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -40694,7 +40980,7 @@
],
"parameters": [
{
- "id": 706,
+ "id": 708,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -40713,7 +40999,7 @@
}
},
{
- "id": 707,
+ "id": 709,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -40740,7 +41026,7 @@
}
},
{
- "id": 708,
+ "id": 710,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -40756,7 +41042,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 709,
+ "id": 711,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40770,7 +41056,7 @@
],
"signatures": [
{
- "id": 710,
+ "id": 712,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -40784,7 +41070,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 711,
+ "target": 713,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -40808,7 +41094,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 711,
+ "target": 713,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -40823,7 +41109,7 @@
}
},
{
- "id": 1089,
+ "id": 1091,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -40846,7 +41132,7 @@
}
},
{
- "id": 1088,
+ "id": 1090,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -40863,19 +41149,19 @@
"types": [
{
"type": "reference",
- "target": 1085,
+ "target": 1087,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1086,
+ "target": 1088,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1087,
+ "target": 1089,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -40883,7 +41169,7 @@
}
},
{
- "id": 1086,
+ "id": 1088,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -40897,7 +41183,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -40928,7 +41214,7 @@
}
},
{
- "id": 1085,
+ "id": 1087,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -40942,7 +41228,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "reference",
@@ -40959,7 +41245,7 @@
}
},
{
- "id": 1087,
+ "id": 1089,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -40994,7 +41280,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41025,7 +41311,7 @@
}
},
{
- "id": 1071,
+ "id": 1073,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -41042,19 +41328,19 @@
"types": [
{
"type": "reference",
- "target": 1276,
+ "target": 1278,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1277,
+ "target": 1279,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1278,
+ "target": 1280,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -41062,7 +41348,7 @@
}
},
{
- "id": 1277,
+ "id": 1279,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -41076,7 +41362,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41113,7 +41399,7 @@
}
},
{
- "id": 1276,
+ "id": 1278,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -41127,7 +41413,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41164,7 +41450,7 @@
}
},
{
- "id": 1278,
+ "id": 1280,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -41199,7 +41485,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41236,7 +41522,7 @@
}
},
{
- "id": 1084,
+ "id": 1086,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -41270,7 +41556,7 @@
}
},
{
- "id": 1072,
+ "id": 1074,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -41285,14 +41571,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1073,
+ "id": 1075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1074,
+ "id": 1076,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -41321,7 +41607,7 @@
"groups": [
{
"title": "Properties",
- "children": [1074]
+ "children": [1076]
}
],
"sources": [
@@ -41335,7 +41621,7 @@
}
},
{
- "id": 1083,
+ "id": 1085,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -41352,19 +41638,19 @@
"types": [
{
"type": "reference",
- "target": 1075,
+ "target": 1077,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1076,
+ "target": 1078,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1081,
+ "target": 1083,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -41372,7 +41658,7 @@
}
},
{
- "id": 1076,
+ "id": 1078,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -41386,7 +41672,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41417,7 +41703,7 @@
}
},
{
- "id": 1075,
+ "id": 1077,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -41431,7 +41717,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41462,7 +41748,7 @@
}
},
{
- "id": 1077,
+ "id": 1079,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -41484,7 +41770,7 @@
],
"typeParameters": [
{
- "id": 1080,
+ "id": 1082,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -41528,14 +41814,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1078,
+ "id": 1080,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1079,
+ "id": 1081,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -41568,7 +41854,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1080,
+ "target": 1082,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -41584,7 +41870,7 @@
"groups": [
{
"title": "Properties",
- "children": [1079]
+ "children": [1081]
}
],
"sources": [
@@ -41598,7 +41884,7 @@
}
},
{
- "id": 1081,
+ "id": 1083,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -41633,7 +41919,7 @@
],
"typeParameters": [
{
- "id": 1082,
+ "id": 1084,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -41676,7 +41962,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41692,11 +41978,11 @@
},
{
"type": "reference",
- "target": 1077,
+ "target": 1079,
"typeArguments": [
{
"type": "reference",
- "target": 1082,
+ "target": 1084,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -41713,7 +41999,7 @@
}
},
{
- "id": 1002,
+ "id": 1004,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -41740,7 +42026,7 @@
}
},
{
- "id": 1397,
+ "id": 1399,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -41763,15 +42049,15 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1398,
+ "id": 1400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1399,
- "name": "client_id",
+ "id": 1401,
+ "name": "id",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41796,8 +42082,8 @@
}
},
{
- "id": 1400,
- "name": "client_name",
+ "id": 1404,
+ "name": "logo_uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41805,14 +42091,14 @@
"summary": [
{
"kind": "text",
- "text": "Human-readable name of the OAuth client"
+ "text": "URI of the OAuth client's logo"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1341,
+ "line": 1345,
"character": 4
}
],
@@ -41822,8 +42108,8 @@
}
},
{
- "id": 1401,
- "name": "client_uri",
+ "id": 1402,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41831,14 +42117,14 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's website"
+ "text": "Human-readable name of the OAuth client"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1343,
+ "line": 1341,
"character": 4
}
],
@@ -41848,8 +42134,8 @@
}
},
{
- "id": 1402,
- "name": "logo_uri",
+ "id": 1403,
+ "name": "uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41857,14 +42143,14 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's logo"
+ "text": "URI of the OAuth client's website"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1345,
+ "line": 1343,
"character": 4
}
],
@@ -41877,7 +42163,7 @@
"groups": [
{
"title": "Properties",
- "children": [1399, 1400, 1401, 1402]
+ "children": [1401, 1404, 1402, 1403]
}
],
"sources": [
@@ -41891,7 +42177,7 @@
}
},
{
- "id": 1403,
+ "id": 1405,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -41914,14 +42200,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1404,
+ "id": 1406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1405,
+ "id": 1407,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -41947,7 +42233,7 @@
}
},
{
- "id": 1407,
+ "id": 1409,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -41969,13 +42255,13 @@
],
"type": {
"type": "reference",
- "target": 1397,
+ "target": 1399,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1406,
+ "id": 1408,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -42003,7 +42289,7 @@
}
},
{
- "id": 1412,
+ "id": 1414,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -42029,7 +42315,7 @@
}
},
{
- "id": 1408,
+ "id": 1410,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -42052,14 +42338,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1409,
+ "id": 1411,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1411,
+ "id": 1413,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -42085,7 +42371,7 @@
}
},
{
- "id": 1410,
+ "id": 1412,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -42114,7 +42400,7 @@
"groups": [
{
"title": "Properties",
- "children": [1411, 1410]
+ "children": [1413, 1412]
}
],
"sources": [
@@ -42131,7 +42417,7 @@
"groups": [
{
"title": "Properties",
- "children": [1405, 1407, 1406, 1412, 1408]
+ "children": [1407, 1409, 1408, 1414, 1410]
}
],
"sources": [
@@ -42145,7 +42431,7 @@
}
},
{
- "id": 1330,
+ "id": 1332,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -42168,14 +42454,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1331,
+ "id": 1333,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1332,
+ "id": 1334,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -42201,7 +42487,7 @@
}
},
{
- "id": 1333,
+ "id": 1335,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -42227,7 +42513,7 @@
}
},
{
- "id": 1334,
+ "id": 1336,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -42255,7 +42541,7 @@
}
},
{
- "id": 1335,
+ "id": 1337,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -42277,13 +42563,13 @@
],
"type": {
"type": "reference",
- "target": 1328,
+ "target": 1330,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1338,
+ "id": 1340,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -42311,7 +42597,7 @@
}
},
{
- "id": 1344,
+ "id": 1346,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -42337,7 +42623,7 @@
}
},
{
- "id": 1341,
+ "id": 1343,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -42361,14 +42647,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1326,
+ "target": 1328,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1339,
+ "id": 1341,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -42396,7 +42682,7 @@
}
},
{
- "id": 1340,
+ "id": 1342,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -42425,7 +42711,7 @@
}
},
{
- "id": 1337,
+ "id": 1339,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -42447,13 +42733,13 @@
],
"type": {
"type": "reference",
- "target": 1329,
+ "target": 1331,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1342,
+ "id": 1344,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -42477,14 +42763,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1327,
+ "target": 1329,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1343,
+ "id": 1345,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -42512,7 +42798,7 @@
}
},
{
- "id": 1336,
+ "id": 1338,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -42538,7 +42824,7 @@
}
},
{
- "id": 1345,
+ "id": 1347,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -42568,7 +42854,7 @@
{
"title": "Properties",
"children": [
- 1332, 1333, 1334, 1335, 1338, 1344, 1341, 1339, 1340, 1337, 1342, 1343, 1336, 1345
+ 1334, 1335, 1336, 1337, 1340, 1346, 1343, 1341, 1342, 1339, 1344, 1345, 1338, 1347
]
}
],
@@ -42583,7 +42869,7 @@
}
},
{
- "id": 1326,
+ "id": 1328,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -42618,7 +42904,7 @@
}
},
{
- "id": 1362,
+ "id": 1364,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -42644,14 +42930,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1363,
+ "id": 1365,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1364,
+ "id": 1366,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -42669,14 +42955,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1365,
+ "id": 1367,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1367,
+ "id": 1369,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -42694,7 +42980,7 @@
}
},
{
- "id": 1366,
+ "id": 1368,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -42710,7 +42996,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1330,
+ "target": 1332,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -42720,7 +43006,7 @@
"groups": [
{
"title": "Properties",
- "children": [1367, 1366]
+ "children": [1369, 1368]
}
],
"sources": [
@@ -42734,7 +43020,7 @@
},
{
"type": "reference",
- "target": 1262,
+ "target": 1264,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -42742,7 +43028,7 @@
}
},
{
- "id": 1368,
+ "id": 1370,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -42763,7 +43049,7 @@
"groups": [
{
"title": "Properties",
- "children": [1364, 1368]
+ "children": [1366, 1370]
}
],
"sources": [
@@ -42778,14 +43064,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1369,
+ "id": 1371,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1370,
+ "id": 1372,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -42800,14 +43086,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1371,
+ "id": 1373,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1372,
+ "id": 1374,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -42827,7 +43113,7 @@
"groups": [
{
"title": "Properties",
- "children": [1372]
+ "children": [1374]
}
],
"sources": [
@@ -42841,7 +43127,7 @@
}
},
{
- "id": 1373,
+ "id": 1375,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -42855,7 +43141,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -42864,7 +43150,7 @@
"groups": [
{
"title": "Properties",
- "children": [1370, 1373]
+ "children": [1372, 1375]
}
],
"sources": [
@@ -42880,7 +43166,7 @@
}
},
{
- "id": 1329,
+ "id": 1331,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -42915,7 +43201,7 @@
}
},
{
- "id": 1361,
+ "id": 1363,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -42937,11 +43223,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1330,
+ "target": 1332,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -42951,7 +43237,7 @@
}
},
{
- "id": 1327,
+ "id": 1329,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -42977,7 +43263,7 @@
}
},
{
- "id": 1328,
+ "id": 1330,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -43012,7 +43298,137 @@
}
},
{
- "id": 785,
+ "id": 1419,
+ "name": "OAuthGrant",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An OAuth grant representing a user's authorization of an 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": 1385,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1420,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1421,
+ "name": "client",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client information"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1387,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1399,
+ "name": "OAuthAuthorizationClient",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1423,
+ "name": "granted_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the grant was created (ISO 8601 date-time)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1391,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1422,
+ "name": "scopes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of scopes granted to this client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1389,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1421, 1423, 1422]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1385,
+ "character": 25
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 787,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -43030,14 +43446,14 @@
{
"type": "reflection",
"declaration": {
- "id": 786,
+ "id": 788,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 787,
+ "id": 789,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -43052,14 +43468,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 788,
+ "id": 790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 789,
+ "id": 791,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -43073,13 +43489,13 @@
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 702,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 790,
+ "id": 792,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -43100,7 +43516,7 @@
"groups": [
{
"title": "Properties",
- "children": [789, 790]
+ "children": [791, 792]
}
],
"sources": [
@@ -43114,7 +43530,7 @@
}
},
{
- "id": 791,
+ "id": 793,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -43135,7 +43551,7 @@
"groups": [
{
"title": "Properties",
- "children": [787, 791]
+ "children": [789, 793]
}
],
"sources": [
@@ -43150,14 +43566,14 @@
{
"type": "reflection",
"declaration": {
- "id": 792,
+ "id": 794,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 793,
+ "id": 795,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -43172,14 +43588,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 794,
+ "id": 796,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 795,
+ "id": 797,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -43193,13 +43609,13 @@
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 702,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 796,
+ "id": 798,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -43220,7 +43636,7 @@
"groups": [
{
"title": "Properties",
- "children": [795, 796]
+ "children": [797, 798]
}
],
"sources": [
@@ -43234,7 +43650,7 @@
}
},
{
- "id": 797,
+ "id": 799,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -43248,7 +43664,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -43257,7 +43673,7 @@
"groups": [
{
"title": "Properties",
- "children": [793, 797]
+ "children": [795, 799]
}
],
"sources": [
@@ -43273,7 +43689,7 @@
}
},
{
- "id": 1269,
+ "id": 1271,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -43288,14 +43704,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1270,
+ "id": 1272,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1271,
+ "id": 1273,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -43323,7 +43739,7 @@
}
},
{
- "id": 1272,
+ "id": 1274,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -43354,7 +43770,7 @@
"groups": [
{
"title": "Properties",
- "children": [1271, 1272]
+ "children": [1273, 1274]
}
],
"sources": [
@@ -43368,7 +43784,7 @@
}
},
{
- "id": 1262,
+ "id": 1264,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -43383,14 +43799,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1263,
+ "id": 1265,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1265,
+ "id": 1267,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -43408,7 +43824,7 @@
}
},
{
- "id": 1264,
+ "id": 1266,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -43435,7 +43851,7 @@
}
},
{
- "id": 1266,
+ "id": 1268,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -43456,7 +43872,7 @@
"groups": [
{
"title": "Properties",
- "children": [1265, 1264, 1266]
+ "children": [1267, 1266, 1268]
}
],
"sources": [
@@ -43468,7 +43884,7 @@
],
"indexSignatures": [
{
- "id": 1267,
+ "id": 1269,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -43482,7 +43898,7 @@
],
"parameters": [
{
- "id": 1268,
+ "id": 1270,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -43646,7 +44062,7 @@
}
},
{
- "id": 740,
+ "id": 742,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -43668,7 +44084,7 @@
],
"typeParameters": [
{
- "id": 741,
+ "id": 743,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -43679,7 +44095,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43695,7 +44111,7 @@
},
"trueType": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43708,7 +44124,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43728,7 +44144,7 @@
},
"objectType": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43738,7 +44154,7 @@
}
},
{
- "id": 700,
+ "id": 702,
"name": "Provider",
"variant": "declaration",
"kind": 2097152,
@@ -43863,7 +44279,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 118,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118"
}
],
"typeParameters": [
@@ -43911,7 +44327,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 118,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118"
}
],
"type": {
@@ -43931,7 +44347,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 118,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118"
}
]
}
@@ -43982,7 +44398,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 119,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L119"
}
],
"type": {
@@ -44012,7 +44428,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 117,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L117"
}
],
"typeParameters": [
@@ -44065,7 +44481,7 @@
}
},
{
- "id": 1914,
+ "id": 1931,
"name": "RealtimeChannelOptions",
"variant": "declaration",
"kind": 2097152,
@@ -44080,14 +44496,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1915,
+ "id": 1932,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1916,
+ "id": 1933,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -44102,14 +44518,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1917,
+ "id": 1934,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1918,
+ "id": 1935,
"name": "broadcast",
"variant": "declaration",
"kind": 1024,
@@ -44134,14 +44550,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1919,
+ "id": 1936,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1921,
+ "id": 1938,
"name": "ack",
"variant": "declaration",
"kind": 1024,
@@ -44161,7 +44577,7 @@
}
},
{
- "id": 1922,
+ "id": 1939,
"name": "replay",
"variant": "declaration",
"kind": 1024,
@@ -44186,7 +44602,7 @@
}
},
{
- "id": 1920,
+ "id": 1937,
"name": "self",
"variant": "declaration",
"kind": 1024,
@@ -44209,7 +44625,7 @@
"groups": [
{
"title": "Properties",
- "children": [1921, 1922, 1920]
+ "children": [1938, 1939, 1937]
}
],
"sources": [
@@ -44223,7 +44639,7 @@
}
},
{
- "id": 1923,
+ "id": 1940,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -44248,14 +44664,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1924,
+ "id": 1941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1926,
+ "id": 1943,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -44275,7 +44691,7 @@
}
},
{
- "id": 1925,
+ "id": 1942,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -44298,7 +44714,7 @@
"groups": [
{
"title": "Properties",
- "children": [1926, 1925]
+ "children": [1943, 1942]
}
],
"sources": [
@@ -44312,7 +44728,7 @@
}
},
{
- "id": 1927,
+ "id": 1944,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -44343,7 +44759,7 @@
"groups": [
{
"title": "Properties",
- "children": [1918, 1923, 1927]
+ "children": [1935, 1940, 1944]
}
],
"sources": [
@@ -44360,7 +44776,7 @@
"groups": [
{
"title": "Properties",
- "children": [1916]
+ "children": [1933]
}
],
"sources": [
@@ -44374,7 +44790,7 @@
}
},
{
- "id": 1928,
+ "id": 1945,
"name": "RealtimeChannelSendResponse",
"variant": "declaration",
"kind": 2097152,
@@ -44405,7 +44821,7 @@
}
},
{
- "id": 2039,
+ "id": 2056,
"name": "RealtimeClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -44420,14 +44836,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2040,
+ "id": 2057,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2066,
+ "id": 2083,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -44444,7 +44860,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2067,
+ "id": 2084,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44458,7 +44874,7 @@
],
"signatures": [
{
- "id": 2068,
+ "id": 2085,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -44493,7 +44909,7 @@
}
},
{
- "id": 2051,
+ "id": 2068,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -44518,7 +44934,7 @@
}
},
{
- "id": 2050,
+ "id": 2067,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -44543,7 +44959,7 @@
}
},
{
- "id": 2063,
+ "id": 2080,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -44568,7 +44984,7 @@
}
},
{
- "id": 2053,
+ "id": 2070,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -44585,7 +45001,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2054,
+ "id": 2071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44599,7 +45015,7 @@
],
"indexSignatures": [
{
- "id": 2055,
+ "id": 2072,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -44613,7 +45029,7 @@
],
"parameters": [
{
- "id": 2056,
+ "id": 2073,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -44634,7 +45050,7 @@
}
},
{
- "id": 2044,
+ "id": 2061,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -44651,7 +45067,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2045,
+ "id": 2062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44665,14 +45081,14 @@
],
"signatures": [
{
- "id": 2046,
+ "id": 2063,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 2047,
+ "id": 2064,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -44698,7 +45114,7 @@
}
},
{
- "id": 2043,
+ "id": 2060,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -44718,7 +45134,7 @@
}
},
{
- "id": 2061,
+ "id": 2078,
"name": "log_level",
"variant": "declaration",
"kind": 1024,
@@ -44743,7 +45159,7 @@
}
},
{
- "id": 2049,
+ "id": 2066,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -44768,7 +45184,7 @@
}
},
{
- "id": 2062,
+ "id": 2079,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -44793,7 +45209,7 @@
}
},
{
- "id": 2057,
+ "id": 2074,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -44810,7 +45226,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2058,
+ "id": 2075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44824,7 +45240,7 @@
],
"indexSignatures": [
{
- "id": 2059,
+ "id": 2076,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -44838,7 +45254,7 @@
],
"parameters": [
{
- "id": 2060,
+ "id": 2077,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -44859,7 +45275,7 @@
}
},
{
- "id": 2052,
+ "id": 2069,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -44884,7 +45300,7 @@
}
},
{
- "id": 2042,
+ "id": 2059,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -44904,7 +45320,7 @@
}
},
{
- "id": 2041,
+ "id": 2058,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -44920,13 +45336,13 @@
],
"type": {
"type": "reference",
- "target": 2233,
+ "target": 2250,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
},
{
- "id": 2048,
+ "id": 2065,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -44946,7 +45362,7 @@
}
},
{
- "id": 2064,
+ "id": 2081,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -44966,7 +45382,7 @@
}
},
{
- "id": 2065,
+ "id": 2082,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -44990,8 +45406,8 @@
{
"title": "Properties",
"children": [
- 2066, 2051, 2050, 2063, 2053, 2044, 2043, 2061, 2049, 2062, 2057, 2052, 2042, 2041,
- 2048, 2064, 2065
+ 2083, 2068, 2067, 2080, 2070, 2061, 2060, 2078, 2066, 2079, 2074, 2069, 2059, 2058,
+ 2065, 2081, 2082
]
}
],
@@ -45006,7 +45422,7 @@
}
},
{
- "id": 2069,
+ "id": 2086,
"name": "RealtimeMessage",
"variant": "declaration",
"kind": 2097152,
@@ -45021,14 +45437,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2070,
+ "id": 2087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2072,
+ "id": 2089,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -45046,7 +45462,7 @@
}
},
{
- "id": 2075,
+ "id": 2092,
"name": "join_ref",
"variant": "declaration",
"kind": 1024,
@@ -45066,7 +45482,7 @@
}
},
{
- "id": 2073,
+ "id": 2090,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -45084,7 +45500,7 @@
}
},
{
- "id": 2074,
+ "id": 2091,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -45102,7 +45518,7 @@
}
},
{
- "id": 2071,
+ "id": 2088,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -45123,7 +45539,7 @@
"groups": [
{
"title": "Properties",
- "children": [2072, 2075, 2073, 2074, 2071]
+ "children": [2089, 2092, 2090, 2091, 2088]
}
],
"sources": [
@@ -45137,7 +45553,7 @@
}
},
{
- "id": 2076,
+ "id": 2093,
"name": "RealtimePostgresChangesFilter",
"variant": "declaration",
"kind": 2097152,
@@ -45151,7 +45567,7 @@
],
"typeParameters": [
{
- "id": 2082,
+ "id": 2099,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45163,7 +45579,7 @@
[
{
"type": "reference",
- "target": 2152,
+ "target": 2169,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"package": "@supabase/realtime-js"
},
@@ -45176,14 +45592,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2077,
+ "id": 2094,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2078,
+ "id": 2095,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -45205,14 +45621,14 @@
],
"type": {
"type": "reference",
- "target": 2082,
+ "target": 2099,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2081,
+ "id": 2098,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -45240,7 +45656,7 @@
}
},
{
- "id": 2079,
+ "id": 2096,
"name": "schema",
"variant": "declaration",
"kind": 1024,
@@ -45266,7 +45682,7 @@
}
},
{
- "id": 2080,
+ "id": 2097,
"name": "table",
"variant": "declaration",
"kind": 1024,
@@ -45297,7 +45713,7 @@
"groups": [
{
"title": "Properties",
- "children": [2078, 2081, 2079, 2080]
+ "children": [2095, 2098, 2096, 2097]
}
],
"sources": [
@@ -45311,7 +45727,7 @@
}
},
{
- "id": 2083,
+ "id": 2100,
"name": "RealtimePostgresChangesPayload",
"variant": "declaration",
"kind": 2097152,
@@ -45325,7 +45741,7 @@
],
"typeParameters": [
{
- "id": 2084,
+ "id": 2101,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45333,7 +45749,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2085,
+ "id": 2102,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45347,7 +45763,7 @@
],
"indexSignatures": [
{
- "id": 2086,
+ "id": 2103,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45361,7 +45777,7 @@
],
"parameters": [
{
- "id": 2087,
+ "id": 2104,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45387,11 +45803,11 @@
"types": [
{
"type": "reference",
- "target": 2088,
+ "target": 2105,
"typeArguments": [
{
"type": "reference",
- "target": 2084,
+ "target": 2101,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45402,11 +45818,11 @@
},
{
"type": "reference",
- "target": 2098,
+ "target": 2115,
"typeArguments": [
{
"type": "reference",
- "target": 2084,
+ "target": 2101,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45417,11 +45833,11 @@
},
{
"type": "reference",
- "target": 2107,
+ "target": 2124,
"typeArguments": [
{
"type": "reference",
- "target": 2084,
+ "target": 2101,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45434,7 +45850,7 @@
}
},
{
- "id": 2107,
+ "id": 2124,
"name": "RealtimePostgresDeletePayload",
"variant": "declaration",
"kind": 2097152,
@@ -45448,7 +45864,7 @@
],
"typeParameters": [
{
- "id": 2113,
+ "id": 2130,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45456,7 +45872,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2114,
+ "id": 2131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45470,7 +45886,7 @@
],
"indexSignatures": [
{
- "id": 2115,
+ "id": 2132,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45484,7 +45900,7 @@
],
"parameters": [
{
- "id": 2116,
+ "id": 2133,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45520,14 +45936,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2108,
+ "id": 2125,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2109,
+ "id": 2126,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -45546,7 +45962,7 @@
[
{
"type": "reference",
- "target": 2156,
+ "target": 2173,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE",
"package": "@supabase/realtime-js"
},
@@ -45556,7 +45972,7 @@
}
},
{
- "id": 2110,
+ "id": 2127,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -45571,7 +45987,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2111,
+ "id": 2128,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45587,7 +46003,7 @@
}
},
{
- "id": 2112,
+ "id": 2129,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -45608,7 +46024,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2113,
+ "target": 2130,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45622,7 +46038,7 @@
"groups": [
{
"title": "Properties",
- "children": [2109, 2110, 2112]
+ "children": [2126, 2127, 2129]
}
],
"sources": [
@@ -45638,7 +46054,7 @@
}
},
{
- "id": 2088,
+ "id": 2105,
"name": "RealtimePostgresInsertPayload",
"variant": "declaration",
"kind": 2097152,
@@ -45652,7 +46068,7 @@
],
"typeParameters": [
{
- "id": 2094,
+ "id": 2111,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45660,7 +46076,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2095,
+ "id": 2112,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45674,7 +46090,7 @@
],
"indexSignatures": [
{
- "id": 2096,
+ "id": 2113,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45688,7 +46104,7 @@
],
"parameters": [
{
- "id": 2097,
+ "id": 2114,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45724,14 +46140,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2089,
+ "id": 2106,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2090,
+ "id": 2107,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -45750,7 +46166,7 @@
[
{
"type": "reference",
- "target": 2154,
+ "target": 2171,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT",
"package": "@supabase/realtime-js"
},
@@ -45760,7 +46176,7 @@
}
},
{
- "id": 2091,
+ "id": 2108,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -45774,14 +46190,14 @@
],
"type": {
"type": "reference",
- "target": 2094,
+ "target": 2111,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2092,
+ "id": 2109,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -45796,7 +46212,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2093,
+ "id": 2110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45815,7 +46231,7 @@
"groups": [
{
"title": "Properties",
- "children": [2090, 2091, 2092]
+ "children": [2107, 2108, 2109]
}
],
"sources": [
@@ -45831,7 +46247,7 @@
}
},
{
- "id": 2098,
+ "id": 2115,
"name": "RealtimePostgresUpdatePayload",
"variant": "declaration",
"kind": 2097152,
@@ -45845,7 +46261,7 @@
],
"typeParameters": [
{
- "id": 2103,
+ "id": 2120,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45853,7 +46269,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2104,
+ "id": 2121,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45867,7 +46283,7 @@
],
"indexSignatures": [
{
- "id": 2105,
+ "id": 2122,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45881,7 +46297,7 @@
],
"parameters": [
{
- "id": 2106,
+ "id": 2123,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45917,14 +46333,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2099,
+ "id": 2116,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2100,
+ "id": 2117,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -45943,7 +46359,7 @@
[
{
"type": "reference",
- "target": 2155,
+ "target": 2172,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE",
"package": "@supabase/realtime-js"
},
@@ -45953,7 +46369,7 @@
}
},
{
- "id": 2101,
+ "id": 2118,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -45967,14 +46383,14 @@
],
"type": {
"type": "reference",
- "target": 2103,
+ "target": 2120,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2102,
+ "id": 2119,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -45995,7 +46411,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2103,
+ "target": 2120,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46009,7 +46425,7 @@
"groups": [
{
"title": "Properties",
- "children": [2100, 2101, 2102]
+ "children": [2117, 2118, 2119]
}
],
"sources": [
@@ -46025,7 +46441,7 @@
}
},
{
- "id": 2117,
+ "id": 2134,
"name": "RealtimePresenceJoinPayload",
"variant": "declaration",
"kind": 2097152,
@@ -46039,7 +46455,7 @@
],
"typeParameters": [
{
- "id": 2123,
+ "id": 2140,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46047,7 +46463,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2124,
+ "id": 2141,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46061,7 +46477,7 @@
],
"indexSignatures": [
{
- "id": 2125,
+ "id": 2142,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46075,7 +46491,7 @@
],
"parameters": [
{
- "id": 2126,
+ "id": 2143,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46099,14 +46515,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2118,
+ "id": 2135,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2121,
+ "id": 2138,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -46129,7 +46545,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2123,
+ "target": 2140,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46141,7 +46557,7 @@
}
},
{
- "id": 2119,
+ "id": 2136,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -46160,7 +46576,7 @@
[
{
"type": "reference",
- "target": 2159,
+ "target": 2176,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN",
"package": "@supabase/realtime-js"
},
@@ -46170,7 +46586,7 @@
}
},
{
- "id": 2120,
+ "id": 2137,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -46188,7 +46604,7 @@
}
},
{
- "id": 2122,
+ "id": 2139,
"name": "newPresences",
"variant": "declaration",
"kind": 1024,
@@ -46211,7 +46627,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2123,
+ "target": 2140,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46226,7 +46642,7 @@
"groups": [
{
"title": "Properties",
- "children": [2121, 2119, 2120, 2122]
+ "children": [2138, 2136, 2137, 2139]
}
],
"sources": [
@@ -46240,7 +46656,7 @@
}
},
{
- "id": 2127,
+ "id": 2144,
"name": "RealtimePresenceLeavePayload",
"variant": "declaration",
"kind": 2097152,
@@ -46254,7 +46670,7 @@
],
"typeParameters": [
{
- "id": 2133,
+ "id": 2150,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46262,7 +46678,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2134,
+ "id": 2151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46276,7 +46692,7 @@
],
"indexSignatures": [
{
- "id": 2135,
+ "id": 2152,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46290,7 +46706,7 @@
],
"parameters": [
{
- "id": 2136,
+ "id": 2153,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46314,14 +46730,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2128,
+ "id": 2145,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2131,
+ "id": 2148,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -46344,7 +46760,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2133,
+ "target": 2150,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46356,7 +46772,7 @@
}
},
{
- "id": 2129,
+ "id": 2146,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -46375,7 +46791,7 @@
[
{
"type": "reference",
- "target": 2160,
+ "target": 2177,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE",
"package": "@supabase/realtime-js"
},
@@ -46385,7 +46801,7 @@
}
},
{
- "id": 2130,
+ "id": 2147,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -46403,7 +46819,7 @@
}
},
{
- "id": 2132,
+ "id": 2149,
"name": "leftPresences",
"variant": "declaration",
"kind": 1024,
@@ -46426,7 +46842,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2133,
+ "target": 2150,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46441,7 +46857,7 @@
"groups": [
{
"title": "Properties",
- "children": [2131, 2129, 2130, 2132]
+ "children": [2148, 2146, 2147, 2149]
}
],
"sources": [
@@ -46455,7 +46871,7 @@
}
},
{
- "id": 2137,
+ "id": 2154,
"name": "RealtimePresenceState",
"variant": "declaration",
"kind": 2097152,
@@ -46469,7 +46885,7 @@
],
"typeParameters": [
{
- "id": 2141,
+ "id": 2158,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46477,7 +46893,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2142,
+ "id": 2159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46491,7 +46907,7 @@
],
"indexSignatures": [
{
- "id": 2143,
+ "id": 2160,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46505,7 +46921,7 @@
],
"parameters": [
{
- "id": 2144,
+ "id": 2161,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46527,7 +46943,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 2145,
+ "id": 2162,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46546,7 +46962,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2138,
+ "id": 2155,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46560,7 +46976,7 @@
],
"indexSignatures": [
{
- "id": 2139,
+ "id": 2156,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46574,7 +46990,7 @@
],
"parameters": [
{
- "id": 2140,
+ "id": 2157,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46596,7 +47012,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2141,
+ "target": 2158,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46612,7 +47028,7 @@
}
},
{
- "id": 2146,
+ "id": 2163,
"name": "RealtimeRemoveChannelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -46643,7 +47059,7 @@
}
},
{
- "id": 745,
+ "id": 747,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -46665,14 +47081,14 @@
],
"typeParameters": [
{
- "id": 752,
+ "id": 754,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 753,
+ "id": 755,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -46688,7 +47104,7 @@
},
"default": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -46700,14 +47116,14 @@
{
"type": "reflection",
"declaration": {
- "id": 746,
+ "id": 748,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 747,
+ "id": 749,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46721,14 +47137,14 @@
],
"type": {
"type": "reference",
- "target": 752,
+ "target": 754,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 748,
+ "id": 750,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -46749,7 +47165,7 @@
"groups": [
{
"title": "Properties",
- "children": [747, 748]
+ "children": [749, 750]
}
],
"sources": [
@@ -46764,14 +47180,14 @@
{
"type": "reflection",
"declaration": {
- "id": 749,
+ "id": 751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 750,
+ "id": 752,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46789,7 +47205,7 @@
}
},
{
- "id": 751,
+ "id": 753,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -46814,19 +47230,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 753,
+ "target": 755,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -46837,7 +47253,7 @@
"groups": [
{
"title": "Properties",
- "children": [750, 751]
+ "children": [752, 753]
}
],
"sources": [
@@ -46853,7 +47269,7 @@
}
},
{
- "id": 754,
+ "id": 756,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -46880,7 +47296,7 @@
],
"typeParameters": [
{
- "id": 761,
+ "id": 763,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46893,14 +47309,14 @@
{
"type": "reflection",
"declaration": {
- "id": 755,
+ "id": 757,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 756,
+ "id": 758,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46914,14 +47330,14 @@
],
"type": {
"type": "reference",
- "target": 761,
+ "target": 763,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 757,
+ "id": 759,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -46942,7 +47358,7 @@
"groups": [
{
"title": "Properties",
- "children": [756, 757]
+ "children": [758, 759]
}
],
"sources": [
@@ -46957,14 +47373,14 @@
{
"type": "reflection",
"declaration": {
- "id": 758,
+ "id": 760,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 759,
+ "id": 761,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46980,7 +47396,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 761,
+ "target": 763,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -46997,7 +47413,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 761,
+ "target": 763,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -47015,7 +47431,7 @@
}
},
{
- "id": 760,
+ "id": 762,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -47029,7 +47445,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -47038,7 +47454,7 @@
"groups": [
{
"title": "Properties",
- "children": [759, 760]
+ "children": [761, 762]
}
],
"sources": [
@@ -47054,7 +47470,7 @@
}
},
{
- "id": 1287,
+ "id": 1289,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -47069,14 +47485,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1288,
+ "id": 1290,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1295,
+ "id": 1297,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -47090,13 +47506,13 @@
],
"type": {
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1291,
+ "id": 1293,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -47126,7 +47542,7 @@
}
},
{
- "id": 1292,
+ "id": 1294,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -47144,7 +47560,7 @@
}
},
{
- "id": 1293,
+ "id": 1295,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -47162,7 +47578,7 @@
}
},
{
- "id": 1289,
+ "id": 1291,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -47180,7 +47596,7 @@
}
},
{
- "id": 1294,
+ "id": 1296,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -47198,7 +47614,7 @@
}
},
{
- "id": 1296,
+ "id": 1298,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -47216,7 +47632,7 @@
}
},
{
- "id": 1290,
+ "id": 1292,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -47237,7 +47653,7 @@
"groups": [
{
"title": "Properties",
- "children": [1295, 1291, 1292, 1293, 1289, 1294, 1296, 1290]
+ "children": [1297, 1293, 1294, 1295, 1291, 1296, 1298, 1292]
}
],
"sources": [
@@ -47252,13 +47668,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1297,
+ "target": 1299,
"name": "JwtPayload"
}
]
},
{
- "id": 1004,
+ "id": 1006,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -47276,14 +47692,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1005,
+ "id": 1007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1007,
+ "id": 1009,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -47301,7 +47717,7 @@
}
},
{
- "id": 1008,
+ "id": 1010,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47318,14 +47734,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1009,
+ "id": 1011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1011,
+ "id": 1013,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47353,7 +47769,7 @@
}
},
{
- "id": 1010,
+ "id": 1012,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -47384,7 +47800,7 @@
"groups": [
{
"title": "Properties",
- "children": [1011, 1010]
+ "children": [1013, 1012]
}
],
"sources": [
@@ -47398,7 +47814,7 @@
}
},
{
- "id": 1006,
+ "id": 1008,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -47419,7 +47835,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1003,
+ "target": 1005,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -47445,7 +47861,7 @@
"groups": [
{
"title": "Properties",
- "children": [1007, 1008, 1006]
+ "children": [1009, 1010, 1008]
}
],
"sources": [
@@ -47460,14 +47876,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1012,
+ "id": 1014,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1015,
+ "id": 1017,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47484,14 +47900,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1016,
+ "id": 1018,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1017,
+ "id": 1019,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47522,7 +47938,7 @@
"groups": [
{
"title": "Properties",
- "children": [1017]
+ "children": [1019]
}
],
"sources": [
@@ -47536,7 +47952,7 @@
}
},
{
- "id": 1014,
+ "id": 1016,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -47554,7 +47970,7 @@
}
},
{
- "id": 1013,
+ "id": 1015,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -47575,7 +47991,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1002,
+ "target": 1004,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -47601,7 +48017,7 @@
"groups": [
{
"title": "Properties",
- "children": [1015, 1014, 1013]
+ "children": [1017, 1016, 1015]
}
],
"sources": [
@@ -47617,7 +48033,7 @@
}
},
{
- "id": 871,
+ "id": 873,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -47632,14 +48048,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 872,
+ "id": 874,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 873,
+ "id": 875,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47656,14 +48072,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 874,
+ "id": 876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 876,
+ "id": 878,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47691,7 +48107,7 @@
}
},
{
- "id": 875,
+ "id": 877,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -47738,7 +48154,7 @@
"groups": [
{
"title": "Properties",
- "children": [876, 875]
+ "children": [878, 877]
}
],
"sources": [
@@ -47755,7 +48171,7 @@
"groups": [
{
"title": "Properties",
- "children": [873]
+ "children": [875]
}
],
"sources": [
@@ -47769,7 +48185,7 @@
}
},
{
- "id": 920,
+ "id": 922,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -47784,14 +48200,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 921,
+ "id": 923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 925,
+ "id": 927,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -47827,7 +48243,7 @@
}
},
{
- "id": 926,
+ "id": 928,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -47863,7 +48279,7 @@
}
},
{
- "id": 927,
+ "id": 929,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47880,14 +48296,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 928,
+ "id": 930,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 929,
+ "id": 931,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47918,7 +48334,7 @@
"groups": [
{
"title": "Properties",
- "children": [929]
+ "children": [931]
}
],
"sources": [
@@ -47932,7 +48348,7 @@
}
},
{
- "id": 922,
+ "id": 924,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -48041,7 +48457,7 @@
{
"type": "reflection",
"declaration": {
- "id": 923,
+ "id": 925,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48061,7 +48477,7 @@
}
},
{
- "id": 924,
+ "id": 926,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -48122,7 +48538,7 @@
"groups": [
{
"title": "Properties",
- "children": [925, 926, 927, 922, 924]
+ "children": [927, 928, 929, 924, 926]
}
],
"sources": [
@@ -48136,7 +48552,7 @@
}
},
{
- "id": 908,
+ "id": 910,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -48151,14 +48567,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 909,
+ "id": 911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 911,
+ "id": 913,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -48175,14 +48591,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 912,
+ "id": 914,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 915,
+ "id": 917,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -48207,7 +48623,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 916,
+ "id": 918,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48221,7 +48637,7 @@
],
"indexSignatures": [
{
- "id": 917,
+ "id": 919,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -48235,7 +48651,7 @@
],
"parameters": [
{
- "id": 918,
+ "id": 920,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -48256,7 +48672,7 @@
}
},
{
- "id": 913,
+ "id": 915,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -48284,7 +48700,7 @@
}
},
{
- "id": 914,
+ "id": 916,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -48312,7 +48728,7 @@
}
},
{
- "id": 919,
+ "id": 921,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -48343,7 +48759,7 @@
"groups": [
{
"title": "Properties",
- "children": [915, 913, 914, 919]
+ "children": [917, 915, 916, 921]
}
],
"sources": [
@@ -48357,7 +48773,7 @@
}
},
{
- "id": 910,
+ "id": 912,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -48379,7 +48795,7 @@
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 702,
"name": "Provider",
"package": "@supabase/auth-js"
}
@@ -48388,7 +48804,7 @@
"groups": [
{
"title": "Properties",
- "children": [911, 910]
+ "children": [913, 912]
}
],
"sources": [
@@ -48402,7 +48818,7 @@
}
},
{
- "id": 885,
+ "id": 887,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -48429,14 +48845,14 @@
{
"type": "reflection",
"declaration": {
- "id": 886,
+ "id": 888,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 887,
+ "id": 889,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -48453,14 +48869,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 888,
+ "id": 890,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 889,
+ "id": 891,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -48483,7 +48899,7 @@
"groups": [
{
"title": "Properties",
- "children": [889]
+ "children": [891]
}
],
"sources": [
@@ -48500,7 +48916,7 @@
"groups": [
{
"title": "Properties",
- "children": [887]
+ "children": [889]
}
],
"sources": [
@@ -48516,7 +48932,7 @@
}
},
{
- "id": 890,
+ "id": 892,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -48534,14 +48950,14 @@
{
"type": "reflection",
"declaration": {
- "id": 891,
+ "id": 893,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 892,
+ "id": 894,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -48567,7 +48983,7 @@
}
},
{
- "id": 893,
+ "id": 895,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -48584,14 +49000,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 894,
+ "id": 896,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 898,
+ "id": 900,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -48618,239 +49034,239 @@
"name": "string"
}
},
+ {
+ "id": 899,
+ "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": 453,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
{
"id": 897,
- "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": 453,
- "character": 8
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "object"
- }
- },
- {
- "id": 895,
- "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": 445,
- "character": 8
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 896,
- "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": 447,
- "character": 8
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [898, 897, 895, 896]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 443,
- "character": 14
- }
- ]
- }
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [892, 893]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 440,
- "character": 48
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 899,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 901,
- "name": "options",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 460,
- "character": 4
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 902,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 905,
- "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": 470,
- "character": 8
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 906,
- "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": 472,
- "character": 8
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "sms"
- },
- {
- "type": "literal",
- "value": "whatsapp"
- }
- ]
- }
- },
- {
- "id": 904,
+ "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": 445,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 898,
+ "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": 447,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [900, 899, 897, 898]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 443,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [894, 895]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 440,
+ "character": 48
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 901,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 903,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 460,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 904,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 907,
+ "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": 470,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 908,
+ "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": 472,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ }
+ },
+ {
+ "id": 906,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48894,7 +49310,7 @@
}
},
{
- "id": 903,
+ "id": 905,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -48925,7 +49341,7 @@
"groups": [
{
"title": "Properties",
- "children": [905, 906, 904, 903]
+ "children": [907, 908, 906, 905]
}
],
"sources": [
@@ -48939,7 +49355,7 @@
}
},
{
- "id": 900,
+ "id": 902,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -48968,7 +49384,7 @@
"groups": [
{
"title": "Properties",
- "children": [901, 900]
+ "children": [903, 902]
}
],
"sources": [
@@ -48984,7 +49400,7 @@
}
},
{
- "id": 1018,
+ "id": 1020,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -49002,14 +49418,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1019,
+ "id": 1021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1021,
+ "id": 1023,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49026,14 +49442,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1022,
+ "id": 1024,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1024,
+ "id": 1026,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49061,7 +49477,7 @@
}
},
{
- "id": 1023,
+ "id": 1025,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49089,7 +49505,7 @@
}
},
{
- "id": 1025,
+ "id": 1027,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -49120,7 +49536,7 @@
"groups": [
{
"title": "Properties",
- "children": [1024, 1023, 1025]
+ "children": [1026, 1025, 1027]
}
],
"sources": [
@@ -49134,7 +49550,7 @@
}
},
{
- "id": 1020,
+ "id": 1022,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -49163,7 +49579,7 @@
"groups": [
{
"title": "Properties",
- "children": [1021, 1020]
+ "children": [1023, 1022]
}
],
"sources": [
@@ -49178,14 +49594,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1026,
+ "id": 1028,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1027,
+ "id": 1029,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -49211,7 +49627,7 @@
}
},
{
- "id": 1028,
+ "id": 1030,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49228,14 +49644,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1029,
+ "id": 1031,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1031,
+ "id": 1033,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49263,7 +49679,7 @@
}
},
{
- "id": 1030,
+ "id": 1032,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49291,7 +49707,7 @@
}
},
{
- "id": 1032,
+ "id": 1034,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -49322,7 +49738,7 @@
"groups": [
{
"title": "Properties",
- "children": [1031, 1030, 1032]
+ "children": [1033, 1032, 1034]
}
],
"sources": [
@@ -49339,7 +49755,7 @@
"groups": [
{
"title": "Properties",
- "children": [1027, 1028]
+ "children": [1029, 1030]
}
],
"sources": [
@@ -49355,7 +49771,7 @@
}
},
{
- "id": 1273,
+ "id": 1275,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -49370,14 +49786,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1274,
+ "id": 1276,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1275,
+ "id": 1277,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -49421,7 +49837,7 @@
"groups": [
{
"title": "Properties",
- "children": [1275]
+ "children": [1277]
}
],
"sources": [
@@ -49435,7 +49851,7 @@
}
},
{
- "id": 1325,
+ "id": 1327,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -49457,7 +49873,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1324,
+ "target": 1326,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -49465,7 +49881,7 @@
}
},
{
- "id": 877,
+ "id": 879,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -49479,7 +49895,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -49496,14 +49912,14 @@
{
"type": "reflection",
"declaration": {
- "id": 878,
+ "id": 880,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 879,
+ "id": 881,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49520,14 +49936,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 880,
+ "id": 882,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 883,
+ "id": 885,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49547,7 +49963,7 @@
}
},
{
- "id": 884,
+ "id": 886,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -49576,7 +49992,7 @@
}
},
{
- "id": 882,
+ "id": 884,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -49596,7 +50012,7 @@
}
},
{
- "id": 881,
+ "id": 883,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49619,7 +50035,7 @@
"groups": [
{
"title": "Properties",
- "children": [883, 884, 882, 881]
+ "children": [885, 886, 884, 883]
}
],
"sources": [
@@ -49636,7 +50052,7 @@
"groups": [
{
"title": "Properties",
- "children": [879]
+ "children": [881]
}
],
"sources": [
@@ -49656,7 +50072,7 @@
}
},
{
- "id": 930,
+ "id": 932,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -49671,14 +50087,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 931,
+ "id": 933,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 936,
+ "id": 938,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -49698,14 +50114,14 @@
{
"type": "reflection",
"declaration": {
- "id": 937,
+ "id": 939,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 938,
+ "id": 940,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -49720,7 +50136,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 939,
+ "id": 941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49734,7 +50150,7 @@
],
"signatures": [
{
- "id": 940,
+ "id": 942,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -49752,7 +50168,7 @@
"groups": [
{
"title": "Properties",
- "children": [938]
+ "children": [940]
}
],
"sources": [
@@ -49772,7 +50188,7 @@
}
},
{
- "id": 932,
+ "id": 934,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -49789,7 +50205,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 933,
+ "id": 935,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49803,14 +50219,14 @@
],
"signatures": [
{
- "id": 934,
+ "id": 936,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 935,
+ "id": 937,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -49874,7 +50290,7 @@
}
},
{
- "id": 941,
+ "id": 943,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -49891,7 +50307,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 942,
+ "id": 944,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49905,14 +50321,14 @@
],
"signatures": [
{
- "id": 943,
+ "id": 945,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 944,
+ "id": 946,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -49928,7 +50344,7 @@
}
},
{
- "id": 945,
+ "id": 947,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -49988,7 +50404,7 @@
"groups": [
{
"title": "Properties",
- "children": [936, 932, 941]
+ "children": [938, 934, 943]
}
],
"sources": [
@@ -50002,7 +50418,7 @@
}
},
{
- "id": 946,
+ "id": 948,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -50020,14 +50436,14 @@
{
"type": "reflection",
"declaration": {
- "id": 947,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 948,
+ "id": 950,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -50045,7 +50461,7 @@
}
},
{
- "id": 951,
+ "id": 953,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50062,14 +50478,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 952,
+ "id": 954,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 954,
+ "id": 956,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50097,7 +50513,7 @@
}
},
{
- "id": 955,
+ "id": 957,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -50169,7 +50585,7 @@
}
},
{
- "id": 953,
+ "id": 955,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -50200,7 +50616,7 @@
"groups": [
{
"title": "Properties",
- "children": [954, 955, 953]
+ "children": [956, 957, 955]
}
],
"sources": [
@@ -50214,7 +50630,7 @@
}
},
{
- "id": 950,
+ "id": 952,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -50242,7 +50658,7 @@
}
},
{
- "id": 949,
+ "id": 951,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -50274,7 +50690,7 @@
],
"type": {
"type": "reference",
- "target": 930,
+ "target": 932,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -50283,7 +50699,7 @@
"groups": [
{
"title": "Properties",
- "children": [948, 951, 950, 949]
+ "children": [950, 953, 952, 951]
}
],
"sources": [
@@ -50298,14 +50714,14 @@
{
"type": "reflection",
"declaration": {
- "id": 956,
+ "id": 958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 957,
+ "id": 959,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -50323,7 +50739,7 @@
}
},
{
- "id": 958,
+ "id": 960,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -50373,7 +50789,7 @@
}
},
{
- "id": 960,
+ "id": 962,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50390,14 +50806,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 961,
+ "id": 963,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 962,
+ "id": 964,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50428,7 +50844,7 @@
"groups": [
{
"title": "Properties",
- "children": [962]
+ "children": [964]
}
],
"sources": [
@@ -50442,7 +50858,7 @@
}
},
{
- "id": 959,
+ "id": 961,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -50476,7 +50892,7 @@
"groups": [
{
"title": "Properties",
- "children": [957, 958, 960, 959]
+ "children": [959, 960, 962, 961]
}
],
"sources": [
@@ -50492,7 +50908,7 @@
}
},
{
- "id": 798,
+ "id": 800,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -50506,19 +50922,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 799,
+ "id": 801,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 800,
+ "id": 802,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -50555,7 +50971,7 @@
"groups": [
{
"title": "Properties",
- "children": [800]
+ "children": [802]
}
],
"sources": [
@@ -50573,7 +50989,7 @@
}
},
{
- "id": 742,
+ "id": 744,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -50595,14 +51011,14 @@
],
"typeParameters": [
{
- "id": 743,
+ "id": 745,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 744,
+ "id": 746,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -50612,7 +51028,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 743,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -50629,14 +51045,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 743,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 744,
+ "target": 746,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -50657,7 +51073,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28"
}
],
"typeParameters": [
@@ -50707,7 +51123,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 111,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111"
}
],
"type": {
@@ -50723,7 +51139,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 111,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111"
}
],
"signatures": [
@@ -50775,7 +51191,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36"
}
],
"type": {
@@ -50808,7 +51224,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L40"
}
],
"type": {
@@ -50837,7 +51253,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 72,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -50878,7 +51294,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L52"
}
],
"type": {
@@ -50907,7 +51323,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 68,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L68"
}
],
"type": {
@@ -50949,7 +51365,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 78,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -50990,7 +51406,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L48"
}
],
"type": {
@@ -51019,7 +51435,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 56,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L56"
}
],
"type": {
@@ -51060,7 +51476,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -51089,7 +51505,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 83,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L83"
}
],
"type": {
@@ -51131,7 +51547,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 64,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L64"
}
],
"type": {
@@ -51163,7 +51579,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 36,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36"
}
]
}
@@ -51198,7 +51614,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32"
}
],
"type": {
@@ -51223,7 +51639,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 33,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L33"
}
],
"type": {
@@ -51246,7 +51662,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 32,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32"
}
]
}
@@ -51265,7 +51681,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90"
}
],
"type": {
@@ -51306,7 +51722,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 94,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -51340,7 +51756,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 98,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -51375,7 +51791,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 90,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90"
}
]
}
@@ -51402,12 +51818,12 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L88"
}
],
"type": {
"type": "reference",
- "target": 2039,
+ "target": 2056,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js"
}
@@ -51425,7 +51841,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L89"
}
],
"type": {
@@ -51450,14 +51866,14 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 28,
"character": 48,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28"
}
]
}
}
},
{
- "id": 1255,
+ "id": 1257,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -51523,14 +51939,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1256,
+ "id": 1258,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1257,
+ "id": 1259,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -51569,7 +51985,7 @@
"groups": [
{
"title": "Properties",
- "children": [1257]
+ "children": [1259]
}
],
"sources": [
@@ -51585,7 +52001,7 @@
}
},
{
- "id": 1354,
+ "id": 1356,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -51608,14 +52024,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1355,
+ "id": 1357,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1356,
+ "id": 1358,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -51643,7 +52059,7 @@
}
},
{
- "id": 1357,
+ "id": 1359,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -51671,7 +52087,7 @@
}
},
{
- "id": 1360,
+ "id": 1362,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -51697,14 +52113,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1326,
+ "target": 1328,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1358,
+ "id": 1360,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -51732,7 +52148,7 @@
}
},
{
- "id": 1359,
+ "id": 1361,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -51766,7 +52182,7 @@
"groups": [
{
"title": "Properties",
- "children": [1356, 1357, 1360, 1358, 1359]
+ "children": [1358, 1359, 1362, 1360, 1361]
}
],
"sources": [
@@ -51780,7 +52196,7 @@
}
},
{
- "id": 801,
+ "id": 803,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -51794,19 +52210,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 802,
+ "id": 804,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 803,
+ "id": 805,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -51829,7 +52245,7 @@
"groups": [
{
"title": "Properties",
- "children": [803]
+ "children": [805]
}
],
"sources": [
@@ -51847,7 +52263,7 @@
}
},
{
- "id": 982,
+ "id": 984,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -51864,19 +52280,19 @@
"types": [
{
"type": "reference",
- "target": 983,
+ "target": 985,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 991,
+ "target": 993,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 999,
+ "target": 1001,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -51884,7 +52300,7 @@
}
},
{
- "id": 736,
+ "id": 738,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -51899,14 +52315,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 737,
+ "id": 739,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 739,
+ "id": 741,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -51924,7 +52340,7 @@
}
},
{
- "id": 738,
+ "id": 740,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -51940,7 +52356,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 735,
+ "target": 737,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -51950,7 +52366,7 @@
"groups": [
{
"title": "Properties",
- "children": [739, 738]
+ "children": [741, 740]
}
],
"sources": [
@@ -51964,7 +52380,7 @@
}
},
{
- "id": 735,
+ "id": 737,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -51998,7 +52414,7 @@
}
},
{
- "id": 981,
+ "id": 983,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -52015,13 +52431,13 @@
"types": [
{
"type": "reference",
- "target": 946,
+ "target": 948,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 964,
+ "target": 966,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -52029,7 +52445,7 @@
}
},
{
- "id": 674,
+ "id": 676,
"name": "AuthAdminApi",
"variant": "declaration",
"kind": 32,
@@ -52055,7 +52471,7 @@
}
},
{
- "id": 675,
+ "id": 677,
"name": "AuthClient",
"variant": "declaration",
"kind": 32,
@@ -52081,7 +52497,7 @@
}
},
{
- "id": 689,
+ "id": 691,
"name": "lockInternals",
"variant": "declaration",
"kind": 32,
@@ -52102,14 +52518,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 690,
+ "id": 692,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 691,
+ "id": 693,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -52134,7 +52550,7 @@
"groups": [
{
"title": "Properties",
- "children": [691]
+ "children": [693]
}
],
"sources": [
@@ -52148,7 +52564,7 @@
}
},
{
- "id": 2166,
+ "id": 2183,
"name": "REALTIME_CHANNEL_STATES",
"variant": "declaration",
"kind": 32,
@@ -52177,7 +52593,7 @@
}
},
{
- "id": 1324,
+ "id": 1326,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -52243,7 +52659,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35"
}
],
"signatures": [
@@ -52258,7 +52674,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 35,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35"
}
],
"typeParameters": [
@@ -52306,7 +52722,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 39,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39"
}
],
"type": {
@@ -52326,7 +52742,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 39,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39"
}
]
}
@@ -52648,7 +53064,7 @@
]
},
{
- "id": 1436,
+ "id": 1453,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -52662,7 +53078,7 @@
],
"signatures": [
{
- "id": 1437,
+ "id": 1454,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -52676,7 +53092,7 @@
],
"parameters": [
{
- "id": 1438,
+ "id": 1455,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52693,7 +53109,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1461,
+ "target": 1478,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -52702,7 +53118,7 @@
]
},
{
- "id": 1433,
+ "id": 1450,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -52716,7 +53132,7 @@
],
"signatures": [
{
- "id": 1434,
+ "id": 1451,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -52730,7 +53146,7 @@
],
"parameters": [
{
- "id": 1435,
+ "id": 1452,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52747,7 +53163,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -52756,7 +53172,7 @@
]
},
{
- "id": 1442,
+ "id": 1459,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -52770,7 +53186,7 @@
],
"signatures": [
{
- "id": 1443,
+ "id": 1460,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -52784,7 +53200,7 @@
],
"parameters": [
{
- "id": 1444,
+ "id": 1461,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52801,7 +53217,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1518,
+ "target": 1535,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -52810,7 +53226,7 @@
]
},
{
- "id": 1445,
+ "id": 1462,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -52824,7 +53240,7 @@
],
"signatures": [
{
- "id": 1446,
+ "id": 1463,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -52838,7 +53254,7 @@
],
"parameters": [
{
- "id": 1447,
+ "id": 1464,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52855,7 +53271,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1572,
+ "target": 1589,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -52864,7 +53280,7 @@
]
},
{
- "id": 1439,
+ "id": 1456,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -52878,7 +53294,7 @@
],
"signatures": [
{
- "id": 1440,
+ "id": 1457,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -52892,7 +53308,7 @@
],
"parameters": [
{
- "id": 1441,
+ "id": 1458,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52909,7 +53325,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1493,
+ "target": 1510,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -52918,7 +53334,7 @@
]
},
{
- "id": 1448,
+ "id": 1465,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -52932,7 +53348,7 @@
],
"signatures": [
{
- "id": 1449,
+ "id": 1466,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -52946,7 +53362,7 @@
],
"parameters": [
{
- "id": 1450,
+ "id": 1467,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52963,7 +53379,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1582,
+ "target": 1599,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -52972,7 +53388,7 @@
]
},
{
- "id": 676,
+ "id": 678,
"name": "navigatorLock",
"variant": "declaration",
"kind": 64,
@@ -52986,7 +53402,7 @@
],
"signatures": [
{
- "id": 677,
+ "id": 679,
"name": "navigatorLock",
"variant": "signature",
"kind": 4096,
@@ -53061,7 +53477,7 @@
],
"typeParameters": [
{
- "id": 678,
+ "id": 680,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -53070,7 +53486,7 @@
],
"parameters": [
{
- "id": 679,
+ "id": 681,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -53089,7 +53505,7 @@
}
},
{
- "id": 680,
+ "id": 682,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -53116,7 +53532,7 @@
}
},
{
- "id": 681,
+ "id": 683,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -53132,7 +53548,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 682,
+ "id": 684,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -53146,7 +53562,7 @@
],
"signatures": [
{
- "id": 683,
+ "id": 685,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -53167,7 +53583,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 678,
+ "target": 680,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -53191,7 +53607,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 678,
+ "target": 680,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -53204,7 +53620,7 @@
]
},
{
- "id": 692,
+ "id": 694,
"name": "processLock",
"variant": "declaration",
"kind": 64,
@@ -53218,7 +53634,7 @@
],
"signatures": [
{
- "id": 693,
+ "id": 695,
"name": "processLock",
"variant": "signature",
"kind": 4096,
@@ -53260,7 +53676,7 @@
],
"typeParameters": [
{
- "id": 694,
+ "id": 696,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -53269,7 +53685,7 @@
],
"parameters": [
{
- "id": 695,
+ "id": 697,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -53288,7 +53704,7 @@
}
},
{
- "id": 696,
+ "id": 698,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -53315,7 +53731,7 @@
}
},
{
- "id": 697,
+ "id": 699,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -53331,7 +53747,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 698,
+ "id": 700,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -53345,7 +53761,7 @@
],
"signatures": [
{
- "id": 699,
+ "id": 701,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -53366,7 +53782,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 694,
+ "target": 696,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -53390,7 +53806,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 694,
+ "target": 696,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -53403,7 +53819,7 @@
]
},
{
- "id": 804,
+ "id": 806,
"name": "Session",
"variant": "reference",
"kind": 4194304,
@@ -53418,7 +53834,7 @@
"target": 37
},
{
- "id": 841,
+ "id": 843,
"name": "User",
"variant": "reference",
"kind": 4194304,
@@ -53436,46 +53852,47 @@
"groups": [
{
"title": "Enumerations",
- "children": [97, 2147, 2152, 2157, 2161]
+ "children": [97, 2164, 2169, 2174, 2178]
},
{
"title": "Classes",
"children": [
- 1461, 1451, 1518, 1509, 1594, 1501, 1545, 1572, 1493, 1471, 1582, 1481, 79, 69, 64, 74, 277,
- 363, 684, 52, 1620, 1929, 1603, 113, 2167
+ 1478, 1468, 1535, 1526, 1611, 1518, 1562, 1589, 1510, 1488, 1599, 1498, 79, 69, 64, 74, 277,
+ 363, 686, 52, 1637, 1946, 1620, 113, 2184
]
},
{
"title": "Interfaces",
"children": [
- 848, 807, 1417, 37, 11, 1055, 1248, 1374, 1118, 1317, 1297, 861, 833, 842, 810, 838, 991,
- 983, 999, 2183, 2233
+ 850, 809, 1427, 37, 11, 1057, 1250, 1376, 1120, 1319, 1299, 863, 835, 844, 812, 840, 993,
+ 985, 1001, 2200, 2250
]
},
{
"title": "Type Aliases",
"children": [
- 805, 702, 701, 1112, 907, 1238, 1235, 1245, 1242, 1103, 1107, 1102, 1104, 1105, 1106, 1280,
- 1098, 1279, 1281, 1113, 1108, 1099, 1097, 1090, 1413, 1414, 771, 762, 766, 776, 780, 1261,
- 1346, 1003, 963, 964, 823, 822, 86, 1049, 1039, 1058, 1063, 1059, 1070, 1044, 1033, 712,
- 1258, 1282, 703, 1089, 1088, 1086, 1085, 1087, 1071, 1277, 1276, 1278, 1084, 1072, 1083,
- 1076, 1075, 1077, 1081, 1002, 1397, 1403, 1330, 1326, 1362, 1329, 1361, 1327, 1328, 785,
- 1269, 1262, 50, 46, 48, 740, 700, 272, 276, 270, 1914, 1928, 2039, 2069, 2076, 2083, 2107,
- 2088, 2098, 2117, 2127, 2137, 2146, 745, 754, 1287, 1004, 871, 920, 908, 885, 890, 1018,
- 1273, 1325, 877, 930, 946, 798, 742, 243, 1255, 1354, 801, 982, 736, 735, 981
+ 807, 704, 703, 1114, 909, 1240, 1237, 1247, 1244, 1105, 1109, 1104, 1106, 1107, 1108, 1282,
+ 1100, 1281, 1283, 1115, 1110, 1101, 1099, 1092, 1415, 1416, 1424, 1425, 773, 764, 768, 778,
+ 782, 1263, 1348, 1005, 965, 966, 825, 824, 86, 1051, 1041, 1060, 1065, 1061, 1072, 1046,
+ 1035, 714, 1260, 1284, 705, 1091, 1090, 1088, 1087, 1089, 1073, 1279, 1278, 1280, 1086,
+ 1074, 1085, 1078, 1077, 1079, 1083, 1004, 1399, 1405, 1332, 1328, 1364, 1331, 1363, 1329,
+ 1330, 1419, 787, 1271, 1264, 50, 46, 48, 742, 702, 272, 276, 270, 1931, 1945, 2056, 2086,
+ 2093, 2100, 2124, 2105, 2115, 2134, 2144, 2154, 2163, 747, 756, 1289, 1006, 873, 922, 910,
+ 887, 892, 1020, 1275, 1327, 879, 932, 948, 800, 744, 243, 1257, 1356, 803, 984, 738, 737,
+ 983
]
},
{
"title": "Variables",
- "children": [674, 675, 689, 2166, 1324]
+ "children": [676, 677, 691, 2183, 1326]
},
{
"title": "Functions",
- "children": [1, 1436, 1433, 1442, 1445, 1439, 1448, 676, 692]
+ "children": [1, 1453, 1450, 1459, 1462, 1456, 1465, 678, 694]
},
{
"title": "References",
- "children": [804, 841]
+ "children": [806, 843]
}
],
"packageName": "@supabase/supabase-js",
@@ -55952,873 +56369,865 @@
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "default.stopAutoRefresh"
},
- "651": {
+ "653": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "652": {
+ "654": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "653": {
+ "655": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "jwt"
},
- "654": {
+ "656": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "655": {
+ "657": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "656": {
+ "658": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "657": {
+ "659": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.allowExpired"
},
- "658": {
+ "660": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.jwks"
},
- "659": {
+ "661": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "660": {
+ "662": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "661": {
+ "663": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "662": {
+ "664": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "663": {
+ "665": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "664": {
+ "666": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.claims"
},
- "665": {
+ "667": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.header"
},
- "666": {
+ "668": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.signature"
},
- "667": {
+ "669": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "668": {
+ "670": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "669": {
+ "671": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "670": {
+ "672": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "671": {
+ "673": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "672": {
+ "674": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "673": {
+ "675": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "674": {
+ "676": {
"sourceFileName": "../auth-js/src/AuthAdminApi.ts",
"qualifiedName": "AuthAdminApi"
},
- "675": {
+ "677": {
"sourceFileName": "../auth-js/src/AuthClient.ts",
"qualifiedName": "AuthClient"
},
- "676": {
+ "678": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "677": {
+ "679": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "678": {
+ "680": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "R"
},
- "679": {
+ "681": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "name"
},
- "680": {
+ "682": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "681": {
+ "683": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "fn"
},
- "682": {
+ "684": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "683": {
+ "685": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "684": {
+ "686": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "685": {
+ "687": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.__constructor"
},
- "686": {
+ "688": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "687": {
+ "689": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "message"
},
- "688": {
+ "690": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout"
},
- "689": {
+ "691": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "internals"
},
- "690": {
+ "692": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "691": {
+ "693": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type.debug"
},
- "692": {
+ "694": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "693": {
+ "695": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "694": {
+ "696": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "R"
},
- "695": {
+ "697": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "name"
},
- "696": {
+ "698": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "697": {
+ "699": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "fn"
},
- "698": {
+ "700": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "699": {
+ "701": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "700": {
+ "702": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Provider"
},
- "701": {
+ "703": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthChangeEventMFA"
},
- "702": {
+ "704": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthChangeEvent"
},
- "703": {
+ "705": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "LockFunc"
},
- "704": {
+ "706": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "705": {
+ "707": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "706": {
+ "708": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "name"
},
- "707": {
+ "709": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "acquireTimeout"
},
- "708": {
+ "710": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "fn"
},
- "709": {
+ "711": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "710": {
+ "712": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "711": {
+ "713": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "R"
},
- "712": {
+ "714": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "GoTrueClientOptions"
},
- "713": {
+ "715": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "714": {
+ "716": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "715": {
+ "717": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.headers"
},
- "716": {
+ "718": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "717": {
+ "719": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "719": {
+ "721": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.storageKey"
},
- "720": {
+ "722": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.detectSessionInUrl"
},
- "721": {
+ "723": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.autoRefreshToken"
},
- "722": {
+ "724": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.persistSession"
},
- "723": {
+ "725": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.storage"
},
- "724": {
+ "726": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.userStorage"
},
- "725": {
+ "727": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.fetch"
},
- "726": {
+ "728": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.flowType"
},
- "727": {
+ "729": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.debug"
},
- "728": {
+ "730": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "729": {
+ "731": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "730": {
+ "732": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "message"
},
- "731": {
+ "733": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "args"
},
- "732": {
+ "734": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.lock"
},
- "733": {
+ "735": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.hasCustomAuthorizationHeader"
},
- "734": {
+ "736": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.throwOnError"
},
- "735": {
+ "737": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "WeakPasswordReasons"
},
- "736": {
+ "738": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "WeakPassword"
},
- "737": {
+ "739": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "738": {
+ "740": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.reasons"
},
- "739": {
+ "741": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.message"
},
- "740": {
+ "742": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Prettify"
},
- "741": {
+ "743": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "742": {
+ "744": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "StrictOmit"
},
- "743": {
+ "745": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "744": {
+ "746": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "K"
},
- "745": {
+ "747": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequestResult"
},
- "746": {
+ "748": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "747": {
+ "749": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "748": {
+ "750": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "749": {
+ "751": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "750": {
+ "752": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "751": {
+ "753": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "752": {
+ "754": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "753": {
+ "755": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "ErrorType"
},
- "754": {
+ "756": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequestResultSafeDestructure"
},
- "755": {
+ "757": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "756": {
+ "758": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "757": {
+ "759": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "758": {
+ "760": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "759": {
+ "761": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "760": {
+ "762": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "761": {
+ "763": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "762": {
+ "764": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthResponse"
},
- "763": {
+ "765": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "764": {
+ "766": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "765": {
+ "767": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "766": {
+ "768": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthResponsePassword"
},
- "767": {
+ "769": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "768": {
+ "770": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "769": {
+ "771": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "770": {
+ "772": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.weak_password"
},
- "771": {
+ "773": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthOtpResponse"
},
- "772": {
+ "774": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "773": {
+ "775": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "774": {
+ "776": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "775": {
+ "777": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.messageId"
},
- "776": {
+ "778": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthTokenResponse"
},
- "777": {
+ "779": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "778": {
+ "780": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "779": {
+ "781": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "780": {
+ "782": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthTokenResponsePassword"
},
- "781": {
+ "783": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "782": {
+ "784": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "783": {
+ "785": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "784": {
+ "786": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.weakPassword"
},
- "785": {
+ "787": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "OAuthResponse"
},
- "786": {
+ "788": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "787": {
+ "789": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "788": {
+ "790": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "789": {
+ "791": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "790": {
+ "792": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "791": {
+ "793": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "792": {
+ "794": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "793": {
+ "795": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "794": {
+ "796": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "795": {
+ "797": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "796": {
+ "798": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "797": {
+ "799": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "798": {
+ "800": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "SSOResponse"
},
- "799": {
+ "801": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "800": {
+ "802": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "801": {
+ "803": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserResponse"
},
- "802": {
+ "804": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "803": {
+ "805": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "804": {
+ "806": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Session"
},
- "805": {
+ "807": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMRMethod"
},
- "806": {
+ "808": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "807": {
+ "809": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMREntry"
},
- "808": {
+ "810": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMREntry.method"
},
- "809": {
+ "811": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMREntry.timestamp"
},
- "810": {
+ "812": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity"
},
- "811": {
+ "813": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.id"
},
- "812": {
+ "814": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.user_id"
},
- "813": {
+ "815": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_data"
},
- "814": {
+ "816": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "815": {
+ "817": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "817": {
+ "819": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "818": {
+ "820": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "819": {
+ "821": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "820": {
+ "822": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "821": {
+ "823": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "822": {
+ "824": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "823": {
+ "825": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Factor"
},
- "824": {
+ "826": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "825": {
+ "827": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "826": {
+ "828": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "827": {
+ "829": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "828": {
+ "830": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "829": {
+ "831": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "830": {
+ "832": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "831": {
+ "833": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Type"
},
- "832": {
+ "834": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Status"
},
- "833": {
+ "835": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "834": {
+ "836": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "835": {
+ "837": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.providers"
},
- "836": {
+ "838": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "838": {
+ "840": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "839": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserMetadata.__index"
- },
"841": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "User"
- },
- "842": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes"
+ "qualifiedName": "UserMetadata.__index"
},
"843": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.email"
+ "qualifiedName": "User"
},
"844": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.phone"
+ "qualifiedName": "UserAttributes"
},
"845": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.password"
+ "qualifiedName": "UserAttributes.email"
},
"846": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.nonce"
+ "qualifiedName": "UserAttributes.phone"
},
"847": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.data"
+ "qualifiedName": "UserAttributes.password"
},
"848": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes"
+ "qualifiedName": "UserAttributes.nonce"
},
"849": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.user_metadata"
+ "qualifiedName": "UserAttributes.data"
},
"850": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.app_metadata"
+ "qualifiedName": "AdminUserAttributes"
},
"851": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.email_confirm"
+ "qualifiedName": "AdminUserAttributes.user_metadata"
},
"852": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.phone_confirm"
+ "qualifiedName": "AdminUserAttributes.app_metadata"
},
"853": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.ban_duration"
+ "qualifiedName": "AdminUserAttributes.email_confirm"
},
"854": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.role"
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
},
"855": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.password_hash"
+ "qualifiedName": "AdminUserAttributes.ban_duration"
},
"856": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.id"
+ "qualifiedName": "AdminUserAttributes.role"
},
"857": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "nonce"
+ "qualifiedName": "AdminUserAttributes.password_hash"
},
"858": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "email"
+ "qualifiedName": "AdminUserAttributes.id"
},
"859": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "password"
+ "qualifiedName": "nonce"
},
"860": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "email"
},
"861": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription"
+ "qualifiedName": "password"
},
"862": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.id"
+ "qualifiedName": "phone"
},
"863": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.callback"
+ "qualifiedName": "Subscription"
},
"864": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.id"
},
"865": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.callback"
},
"866": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type"
},
"867": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "session"
+ "qualifiedName": "__type"
},
"868": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.unsubscribe"
+ "qualifiedName": "event"
},
"869": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "session"
},
"870": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.unsubscribe"
},
"871": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInAnonymouslyCredentials"
+ "qualifiedName": "__type"
},
"872": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56826,7 +57235,7 @@
},
"873": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignInAnonymouslyCredentials"
},
"874": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56834,23 +57243,23 @@
},
"875": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.options"
},
"876": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"877": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
+ "qualifiedName": "__type.data"
},
"878": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"879": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"880": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56858,31 +57267,31 @@
},
"881": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type.options"
},
"882": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"883": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"884": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.data"
},
"885": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"886": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.channel"
},
"887": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"888": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56890,135 +57299,135 @@
},
"889": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"890": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type"
},
"891": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"892": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"893": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"894": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email"
},
"895": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type.options"
},
"896": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type"
},
"897": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.emailRedirectTo"
},
"898": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.shouldCreateUser"
},
"899": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"900": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.captchaToken"
},
"901": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"902": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.phone"
},
"903": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.options"
},
"904": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"905": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.shouldCreateUser"
},
"906": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.data"
},
"907": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.captchaToken"
},
"908": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "__type.channel"
},
"909": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthFlowType"
},
"910": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"911": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"912": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.provider"
},
"913": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.options"
},
"914": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type"
},
"915": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "__type.redirectTo"
},
"916": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.scopes"
},
"917": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.queryParams"
},
- "919": {
+ "918": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
- "920": {
+ "919": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.__index"
},
"921": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"922": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"923": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57026,39 +57435,39 @@
},
"924": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token"
+ "qualifiedName": "__type.provider"
},
"925": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type"
},
"926": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.token"
},
"927": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.access_token"
},
"928": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.nonce"
},
"929": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"930": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type"
},
"931": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"932": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "SolanaWallet"
},
"933": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57066,23 +57475,23 @@
},
"934": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"935": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"936": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "inputs"
},
"938": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type.publicKey"
},
"939": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57090,11 +57499,11 @@
},
"940": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.toBase58"
},
"941": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"942": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57102,559 +57511,559 @@
},
"943": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signMessage"
},
"944": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"945": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "__type"
},
"946": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "message"
},
"947": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "encoding"
},
"948": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"949": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.chain"
},
"951": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.wallet"
},
"952": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.statement"
},
"953": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.options"
},
"954": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"955": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.url"
},
"956": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"957": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signInWithSolana"
},
"958": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type"
},
"959": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.chain"
},
"960": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.message"
},
"961": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signature"
},
"962": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"963": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type"
},
"964": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "__type.captchaToken"
},
"965": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWallet"
},
"966": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"967": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type"
},
"968": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.chain"
},
"969": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.wallet"
},
"970": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.statement"
},
"971": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.options"
},
"972": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"973": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.url"
},
"974": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"975": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signInWithEthereum"
},
"976": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type"
},
"977": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.chain"
},
"978": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.message"
},
"979": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signature"
},
"980": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"981": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type"
},
"982": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "__type.captchaToken"
},
"983": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "Web3Credentials"
},
"984": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "VerifyOtpParams"
},
"985": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"986": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"987": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"988": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"989": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"990": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"991": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "__type.redirectTo"
},
"992": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "__type.captchaToken"
},
"993": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"994": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"995": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"996": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"997": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"998": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "__type.redirectTo"
},
"1000": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "__type.captchaToken"
},
"1001": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1002": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1003": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1004": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "MobileOtpType"
},
"1005": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EmailOtpType"
},
"1006": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "ResendParams"
},
"1007": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1008": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1009": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email"
},
"1010": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type.options"
},
"1011": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1012": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1013": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type.captchaToken"
},
"1014": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type"
},
"1015": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1016": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.phone"
},
"1017": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"1018": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type"
},
"1019": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1020": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "SignInWithSSO"
},
"1021": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"1022": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.providerId"
},
"1023": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.options"
},
"1024": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1025": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.redirectTo"
},
"1026": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1027": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1028": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"1029": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.domain"
},
"1030": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.options"
},
"1031": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1032": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.redirectTo"
},
"1033": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type.captchaToken"
},
"1034": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1035": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1036": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1037": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.type"
},
"1038": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1039": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.password"
},
"1040": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1041": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1042": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1043": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1044": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.email"
},
"1045": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1046": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1047": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1048": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1049": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.email"
},
"1050": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1051": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1052": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1053": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.type"
},
"1054": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1055": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.newEmail"
},
"1056": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "__type.options"
},
"1057": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "GenerateLinkOptions"
},
"1058": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1059": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1060": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkParams"
},
"1061": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "GenerateLinkResponse"
},
"1062": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"1063": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "__type.properties"
},
"1064": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1065": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "GenerateLinkProperties"
},
"1066": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "__type"
},
"1067": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type.action_link"
},
"1068": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.email_otp"
},
"1069": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.hashed_token"
},
"1070": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "__type.redirect_to"
},
"1071": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "__type.verification_type"
},
"1072": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "GenerateLinkType"
},
"1073": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAEnrollParams"
},
"1074": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "MFAUnenrollParams"
},
"1075": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type"
},
"1076": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "__type.factorId"
},
"1077": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1078": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1079": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1080": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type"
},
"1081": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "__type.webauthn"
},
"1082": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57662,247 +58071,247 @@
},
"1083": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1084": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "T"
},
"1085": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "MFAVerifyParams"
},
"1086": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "MFATOTPChannel"
},
"1087": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1088": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1089": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1090": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAChallengeParams"
},
"1091": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1092": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1093": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "__type"
},
"1094": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "__type.access_token"
},
"1095": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "__type.token_type"
},
"1096": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.expires_in"
},
"1097": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "__type.refresh_token"
},
"1098": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "__type.user"
},
"1099": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1100": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1101": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1102": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type"
},
"1103": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "__type.id"
},
"1104": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1105": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1106": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1107": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1108": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1109": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1110": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1111": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type"
},
"1112": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "__type.all"
},
"1113": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "T"
},
"1114": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1115": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1116": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type"
},
"1117": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.currentLevel"
},
"1118": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "__type.nextLevel"
},
"1119": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1120": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "GoTrueMFAApi"
},
"1121": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1122": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1123": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "params"
},
"1124": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type"
},
"1125": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "factorType"
},
"1126": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1127": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "issuer"
},
"1128": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1129": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "params"
},
"1130": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type"
},
"1131": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "factorType"
},
"1132": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1133": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "phone"
},
"1134": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1135": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "params"
},
"1136": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type"
},
"1137": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "factorType"
},
"1138": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "friendlyName"
},
"1139": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1140": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1141": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1142": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1143": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1144": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57910,19 +58319,19 @@
},
"1145": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "factorId"
},
"1146": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1147": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1148": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1149": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57930,59 +58339,59 @@
},
"1150": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "data"
},
"1151": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1152": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "id"
},
"1153": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "type"
},
"1154": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "expires_at"
},
"1155": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "error"
},
"1156": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1157": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1158": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "__type"
},
"1159": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1160": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "channel"
},
"1161": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1162": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1163": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1164": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57990,71 +58399,71 @@
},
"1165": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "data"
},
"1166": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1167": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "id"
},
"1168": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "type"
},
"1169": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "expires_at"
},
"1170": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "error"
},
"1171": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1172": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1173": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "__type"
},
"1174": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1175": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "webauthn"
},
"1176": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "__type"
},
"1177": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpId"
},
"1178": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type.rpOrigins"
},
"1179": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1180": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1181": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1182": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58062,39 +58471,39 @@
},
"1183": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "data"
},
"1184": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1185": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "id"
},
"1186": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "type"
},
"1187": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1188": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "webauthn"
},
"1189": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1190": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.type"
},
"1191": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.credential_options"
},
"1192": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58102,679 +58511,679 @@
},
"1193": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type.publicKey"
},
"1194": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1195": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.type"
},
"1196": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.credential_options"
},
"1197": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1198": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type.publicKey"
},
"1199": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "error"
},
"1200": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1201": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "params"
},
"1202": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1203": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1204": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1205": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "__type"
},
"1206": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1207": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "challengeId"
},
"1208": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "code"
},
"1209": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1210": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1211": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "__type"
},
"1212": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1213": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "challengeId"
},
"1214": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "code"
},
"1215": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1216": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1217": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "__type"
},
"1218": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "factorId"
},
"1219": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "challengeId"
},
"1220": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "webauthn"
},
"1221": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1222": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1223": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1224": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1225": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "params"
},
"1226": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1227": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1228": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1229": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "factorId"
},
"1231": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "code"
},
"1232": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1233": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1234": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1235": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1236": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1237": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1238": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "__type"
},
"1239": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.id"
},
"1240": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1241": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type"
},
"1242": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "__type.id"
},
"1243": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.userId"
},
"1244": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1245": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "__type"
},
"1246": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.factors"
},
"1247": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1248": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type"
},
"1249": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "__type.userId"
},
"1250": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1251": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1252": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1253": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "params"
},
"1254": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1255": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1256": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1257": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "SupportedStorage"
},
"1258": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "__type"
},
"1259": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.isServer"
},
"1260": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "InitializeResult"
},
"1261": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "__type"
},
"1262": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "__type.error"
},
"1263": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "CallRefreshTokenResult"
},
"1264": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "Pagination"
},
"1265": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "__type"
},
"1266": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type.nextPage"
},
"1267": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.lastPage"
+ },
+ "1268": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.total"
},
"1269": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1271": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "PageParams"
},
- "1270": {
+ "1272": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1271": {
+ "1273": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.page"
},
- "1272": {
+ "1274": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.perPage"
},
- "1273": {
+ "1275": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "SignOut"
},
- "1274": {
+ "1276": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1275": {
+ "1277": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.scope"
},
- "1276": {
+ "1278": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollTOTPParams"
},
- "1277": {
+ "1279": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollPhoneParams"
},
- "1278": {
+ "1280": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollWebauthnParams"
},
- "1279": {
+ "1281": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollTOTPResponse"
},
- "1280": {
+ "1282": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollPhoneResponse"
},
- "1281": {
+ "1283": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
- "1282": {
+ "1284": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtHeader"
},
- "1283": {
+ "1285": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1284": {
+ "1286": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.alg"
},
- "1285": {
+ "1287": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.kid"
},
- "1286": {
+ "1288": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.typ"
},
- "1287": {
+ "1289": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequiredClaims"
},
- "1288": {
+ "1290": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1289": {
+ "1291": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1290": {
+ "1292": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1291": {
+ "1293": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1292": {
+ "1294": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1293": {
+ "1295": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1294": {
+ "1296": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1295": {
+ "1297": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1296": {
+ "1298": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1297": {
+ "1299": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload"
},
- "1298": {
+ "1300": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.email"
},
- "1299": {
+ "1301": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.phone"
},
- "1300": {
+ "1302": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.is_anonymous"
},
- "1301": {
+ "1303": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.jti"
},
- "1302": {
+ "1304": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.nbf"
},
- "1303": {
+ "1305": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.app_metadata"
},
- "1304": {
+ "1306": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.user_metadata"
},
- "1305": {
+ "1307": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.amr"
},
- "1306": {
+ "1308": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.ref"
},
- "1307": {
+ "1309": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1308": {
+ "1310": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1309": {
+ "1311": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1310": {
+ "1312": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1311": {
+ "1313": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1312": {
+ "1314": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1313": {
+ "1315": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1314": {
+ "1316": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1315": {
+ "1317": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.__index"
},
- "1317": {
+ "1319": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK"
},
- "1318": {
+ "1320": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.kty"
},
- "1319": {
+ "1321": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.key_ops"
},
- "1320": {
+ "1322": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.alg"
},
- "1321": {
+ "1323": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.kid"
},
- "1322": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "JWK.__index"
- },
"1324": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
- },
- "1325": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "JWK.__index"
},
"1326": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1327": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "SignOutScope"
},
"1328": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "OAuthClientGrantType"
},
"1329": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
+ "qualifiedName": "OAuthClientResponseType"
},
"1330": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "OAuthClientType"
},
"1331": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1332": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "OAuthClient"
},
"1333": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1334": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "__type.client_id"
},
"1335": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "__type.client_name"
},
"1336": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "__type.client_secret"
},
"1337": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "__type.client_type"
},
"1338": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1339": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.registration_type"
},
"1340": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1341": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.logo_uri"
},
"1342": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1343": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.grant_types"
},
"1344": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.response_types"
},
"1345": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.scope"
},
"1346": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.created_at"
},
"1347": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.updated_at"
},
"1348": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1349": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type"
},
"1350": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_name"
},
"1351": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.client_uri"
},
"1352": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1353": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.grant_types"
},
"1354": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type.response_types"
},
"1355": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.scope"
},
"1356": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1357": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type"
},
"1358": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_name"
},
"1359": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1360": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.logo_uri"
},
"1361": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "__type.redirect_uris"
},
"1362": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "__type.grant_types"
},
"1363": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientResponse"
},
"1364": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "OAuthClientListResponse"
},
"1365": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58782,23 +59191,23 @@
},
"1366": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type.data"
},
"1367": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type"
},
"1368": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1369": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.aud"
},
"1370": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.error"
},
"1371": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58806,1732 +59215,1736 @@
},
"1372": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type.data"
},
"1373": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1374": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.clients"
},
"1375": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "__type.error"
},
"1376": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1377": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1378": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1379": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "params"
},
"1380": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1381": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1382": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "params"
},
"1383": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1384": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1385": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "clientId"
},
"1386": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1387": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1388": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "clientId"
},
"1389": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "params"
},
"1390": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1391": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1392": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "clientId"
},
"1393": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1394": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.data"
},
"1395": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.error"
},
"1396": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1397": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1398": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "clientId"
},
"1399": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1400": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1401": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.id"
},
"1402": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.name"
},
"1403": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "__type.uri"
},
"1404": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.logo_uri"
},
"1405": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1406": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type"
},
"1407": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.authorization_id"
},
"1408": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.redirect_uri"
},
"1409": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.client"
},
"1410": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.user"
},
"1411": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1412": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.id"
},
"1413": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.email"
},
"1414": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "__type.scope"
},
"1415": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1416": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1417": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type"
},
"1418": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "__type.redirect_url"
},
"1419": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "OAuthGrant"
},
"1420": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "__type"
},
"1421": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "__type.client"
},
"1422": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "__type.scopes"
},
"1423": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "__type.granted_at"
},
"1424": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1425": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1426": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1427": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1428": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1429": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1430": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1431": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1432": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1433": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1434": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1435": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1436": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1437": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1438": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1439": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1440": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1441": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1442": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1443": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1444": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1445": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1446": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1447": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1448": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1449": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
+ },
+ "1450": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1434": {
+ "1451": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1435": {
+ "1452": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1436": {
+ "1453": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1437": {
+ "1454": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1438": {
+ "1455": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1439": {
+ "1456": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1440": {
+ "1457": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1441": {
+ "1458": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1442": {
+ "1459": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1443": {
+ "1460": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1444": {
+ "1461": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1445": {
+ "1462": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1446": {
+ "1463": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1447": {
+ "1464": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1448": {
+ "1465": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1449": {
+ "1466": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1450": {
+ "1467": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1451": {
+ "1468": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1452": {
+ "1469": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__constructor"
},
- "1453": {
+ "1470": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1454": {
+ "1471": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1455": {
+ "1472": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1456": {
+ "1473": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1457": {
+ "1474": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1458": {
+ "1475": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1459": {
+ "1476": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1460": {
+ "1477": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1461": {
+ "1478": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1462": {
+ "1479": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1463": {
+ "1480": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1464": {
+ "1481": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1465": {
+ "1482": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1466": {
+ "1483": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1467": {
+ "1484": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1468": {
+ "1485": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1469": {
+ "1486": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1470": {
+ "1487": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1471": {
+ "1488": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1472": {
+ "1489": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1473": {
+ "1490": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1474": {
+ "1491": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1475": {
+ "1492": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1476": {
+ "1493": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1477": {
+ "1494": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1478": {
+ "1495": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1479": {
+ "1496": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1480": {
+ "1497": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1481": {
+ "1498": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1482": {
+ "1499": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1483": {
+ "1500": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1484": {
+ "1501": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1485": {
+ "1502": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "name"
},
- "1486": {
+ "1503": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1487": {
+ "1504": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1488": {
+ "1505": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1489": {
+ "1506": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1490": {
+ "1507": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1491": {
+ "1508": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1492": {
+ "1509": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1493": {
+ "1510": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1494": {
+ "1511": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1495": {
+ "1512": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1496": {
+ "1513": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1497": {
+ "1514": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1498": {
+ "1515": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1499": {
+ "1516": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1500": {
+ "1517": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1501": {
+ "1518": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1502": {
+ "1519": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1503": {
+ "1520": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1504": {
+ "1521": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1505": {
+ "1522": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1506": {
+ "1523": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1507": {
+ "1524": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1508": {
+ "1525": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1509": {
+ "1526": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1510": {
+ "1527": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1511": {
+ "1528": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1512": {
+ "1529": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1513": {
+ "1530": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1514": {
+ "1531": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1515": {
+ "1532": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1516": {
+ "1533": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1517": {
+ "1534": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1518": {
+ "1535": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1519": {
+ "1536": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1520": {
+ "1537": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1521": {
+ "1538": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1522": {
+ "1539": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "details"
},
- "1523": {
+ "1540": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1524": {
+ "1541": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1525": {
+ "1542": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1526": {
+ "1543": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1527": {
+ "1544": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1528": {
+ "1545": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1529": {
+ "1546": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1530": {
+ "1547": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1531": {
+ "1548": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1532": {
+ "1549": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1533": {
+ "1550": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.name"
},
- "1534": {
+ "1551": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.message"
},
- "1535": {
+ "1552": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.status"
},
- "1536": {
+ "1553": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.details"
},
- "1537": {
+ "1554": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1538": {
+ "1555": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1539": {
+ "1556": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1540": {
+ "1557": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1541": {
+ "1558": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1542": {
+ "1559": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1543": {
+ "1560": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1544": {
+ "1561": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1545": {
+ "1562": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1546": {
+ "1563": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1547": {
+ "1564": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1548": {
+ "1565": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1549": {
+ "1566": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "details"
},
- "1550": {
+ "1567": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1551": {
+ "1568": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1552": {
+ "1569": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1553": {
+ "1570": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1554": {
+ "1571": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1555": {
+ "1572": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1556": {
+ "1573": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1557": {
+ "1574": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1558": {
+ "1575": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1559": {
+ "1576": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1560": {
+ "1577": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.name"
},
- "1561": {
+ "1578": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.message"
},
- "1562": {
+ "1579": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.status"
},
- "1563": {
+ "1580": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.details"
},
- "1564": {
+ "1581": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1565": {
+ "1582": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1566": {
+ "1583": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1567": {
+ "1584": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1568": {
+ "1585": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1569": {
+ "1586": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1570": {
+ "1587": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1571": {
+ "1588": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1572": {
+ "1589": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1573": {
+ "1590": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1574": {
+ "1591": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1575": {
+ "1592": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1576": {
+ "1593": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1577": {
+ "1594": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1578": {
+ "1595": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1579": {
+ "1596": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1580": {
+ "1597": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1581": {
+ "1598": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1582": {
+ "1599": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1583": {
+ "1600": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1584": {
+ "1601": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1585": {
+ "1602": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1586": {
+ "1603": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1587": {
+ "1604": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1588": {
+ "1605": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1589": {
+ "1606": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1590": {
+ "1607": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1591": {
+ "1608": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1592": {
+ "1609": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1593": {
+ "1610": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1594": {
+ "1611": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1595": {
+ "1612": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1596": {
+ "1613": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1597": {
+ "1614": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1598": {
+ "1615": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1599": {
+ "1616": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1600": {
+ "1617": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1601": {
+ "1618": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1602": {
+ "1619": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1603": {
+ "1620": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default"
},
- "1604": {
+ "1621": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.__constructor"
},
- "1605": {
+ "1622": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default"
},
- "1606": {
+ "1623": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "channel"
},
- "1607": {
+ "1624": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "opts"
},
- "1608": {
+ "1625": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.channel"
},
- "1609": {
+ "1626": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.state"
},
- "1610": {
+ "1627": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.pendingDiffs"
},
- "1611": {
+ "1628": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.joinRef"
},
- "1612": {
+ "1629": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.enabled"
},
- "1613": {
+ "1630": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.caller"
},
- "1614": {
+ "1631": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1615": {
+ "1632": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onJoin"
},
- "1616": {
+ "1633": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onLeave"
},
- "1617": {
+ "1634": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onSync"
},
- "1618": {
+ "1635": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1619": {
+ "1636": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1620": {
+ "1637": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default"
},
- "1621": {
+ "1638": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.__constructor"
},
- "1622": {
+ "1639": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default"
},
- "1623": {
+ "1640": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "topic"
},
- "1624": {
+ "1641": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "params"
},
- "1625": {
+ "1642": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "socket"
},
- "1626": {
+ "1643": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.topic"
},
- "1627": {
+ "1644": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.params"
},
- "1628": {
+ "1645": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.socket"
},
- "1629": {
+ "1646": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.bindings"
},
- "1630": {
+ "1647": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1631": {
+ "1648": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1633": {
+ "1650": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1634": {
+ "1651": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1635": {
+ "1652": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.filter"
},
- "1636": {
+ "1653": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1637": {
+ "1654": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1639": {
+ "1656": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.callback"
},
- "1640": {
+ "1657": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.id"
},
- "1641": {
+ "1658": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.timeout"
},
- "1642": {
+ "1659": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.state"
},
- "1643": {
+ "1660": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.joinedOnce"
},
- "1644": {
+ "1661": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.joinPush"
},
- "1645": {
+ "1662": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.rejoinTimer"
},
- "1646": {
+ "1663": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.pushBuffer"
},
- "1647": {
+ "1664": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.presence"
},
- "1648": {
+ "1665": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.broadcastEndpointURL"
},
- "1649": {
+ "1666": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.subTopic"
},
- "1650": {
+ "1667": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.private"
},
- "1651": {
+ "1668": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.subscribe"
},
- "1652": {
+ "1669": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.subscribe"
},
- "1653": {
+ "1670": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1654": {
+ "1671": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1655": {
+ "1672": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1656": {
+ "1673": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "status"
},
- "1657": {
+ "1674": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "err"
},
- "1658": {
+ "1675": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "timeout"
},
- "1659": {
+ "1676": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.presenceState"
},
- "1660": {
+ "1677": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.presenceState"
},
- "1661": {
+ "1678": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1662": {
+ "1679": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1663": {
+ "1680": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1665": {
+ "1682": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1666": {
+ "1683": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.track"
},
- "1667": {
+ "1684": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.track"
},
- "1668": {
+ "1685": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1669": {
+ "1686": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1670": {
+ "1687": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1672": {
+ "1689": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1673": {
+ "1690": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1674": {
+ "1691": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1676": {
+ "1693": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.untrack"
},
- "1677": {
+ "1694": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.untrack"
},
- "1678": {
+ "1695": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1679": {
+ "1696": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1680": {
+ "1697": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1682": {
+ "1699": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1683": {
+ "1700": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1684": {
+ "1701": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1685": {
+ "1702": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1686": {
+ "1703": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1687": {
+ "1704": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1688": {
+ "1705": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1689": {
+ "1706": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1690": {
+ "1707": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1691": {
+ "1708": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1692": {
+ "1709": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1693": {
+ "1710": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1694": {
+ "1711": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1696": {
+ "1713": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1697": {
+ "1714": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1698": {
+ "1715": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1699": {
+ "1716": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1700": {
+ "1717": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1701": {
+ "1718": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1702": {
+ "1719": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1703": {
+ "1720": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1704": {
+ "1721": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1705": {
+ "1722": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1706": {
+ "1723": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1707": {
+ "1724": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1709": {
+ "1726": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1710": {
+ "1727": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1711": {
+ "1728": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1712": {
+ "1729": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1713": {
+ "1730": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1714": {
+ "1731": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1715": {
+ "1732": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1716": {
+ "1733": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1717": {
+ "1734": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1718": {
+ "1735": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1719": {
+ "1736": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1720": {
+ "1737": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1722": {
+ "1739": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1723": {
+ "1740": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1724": {
+ "1741": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1725": {
+ "1742": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1726": {
+ "1743": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1727": {
+ "1744": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1728": {
+ "1745": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1729": {
+ "1746": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1730": {
+ "1747": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1731": {
+ "1748": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1733": {
+ "1750": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1734": {
+ "1751": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1735": {
+ "1752": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1736": {
+ "1753": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1737": {
+ "1754": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1738": {
+ "1755": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1739": {
+ "1756": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1740": {
+ "1757": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1741": {
+ "1758": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1742": {
+ "1759": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1744": {
+ "1761": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1745": {
+ "1762": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1746": {
+ "1763": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1747": {
+ "1764": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1748": {
+ "1765": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1749": {
+ "1766": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1750": {
+ "1767": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1751": {
+ "1768": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1752": {
+ "1769": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1753": {
+ "1770": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1755": {
+ "1772": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1756": {
+ "1773": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1757": {
+ "1774": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1758": {
+ "1775": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1759": {
+ "1776": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1760": {
+ "1777": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1761": {
+ "1778": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1762": {
+ "1779": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1763": {
+ "1780": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1764": {
+ "1781": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1765": {
+ "1782": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1766": {
+ "1783": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1767": {
+ "1784": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1768": {
+ "1785": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1769": {
+ "1786": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1770": {
+ "1787": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1771": {
+ "1788": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1772": {
+ "1789": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1773": {
+ "1790": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.meta"
},
- "1774": {
+ "1791": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1775": {
+ "1792": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.replayed"
},
- "1776": {
+ "1793": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.id"
},
- "1777": {
+ "1794": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1779": {
+ "1796": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1780": {
+ "1797": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1781": {
+ "1798": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1782": {
+ "1799": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1784": {
+ "1801": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1785": {
+ "1802": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1786": {
+ "1803": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1787": {
+ "1804": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1788": {
+ "1805": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1789": {
+ "1806": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1790": {
+ "1807": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1791": {
+ "1808": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1792": {
+ "1809": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1793": {
+ "1810": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1794": {
+ "1811": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1795": {
+ "1812": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.meta"
},
- "1796": {
+ "1813": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1797": {
+ "1814": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.replayed"
},
- "1798": {
+ "1815": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.id"
},
- "1799": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
- },
- "1800": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
- },
- "1801": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
- },
- "1802": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
- },
- "1803": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
- },
- "1804": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1805": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
- },
- "1806": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
- },
- "1807": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1808": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1809": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
- },
- "1810": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1811": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
- },
- "1812": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
- },
- "1813": {
+ "1816": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.payload"
},
- "1814": {
+ "1817": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1815": {
+ "1818": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1816": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1817": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
- },
"1819": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
@@ -60733,16 +61146,16 @@
"qualifiedName": "filter"
},
"1872": {
- "sourceFileName": "",
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
"1873": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1874": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1875": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -60750,1365 +61163,1429 @@
},
"1876": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1877": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.httpSend"
+ "qualifiedName": "payload"
},
"1878": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.httpSend"
+ "qualifiedName": "__type"
},
"1879": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type.type"
},
"1880": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type.event"
},
"1881": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "opts"
+ "qualifiedName": "__type.payload"
},
"1882": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "default.on"
},
"1883": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.timeout"
+ "qualifiedName": "T"
},
"1884": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
"1885": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1887": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1888": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1889": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1890": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1891": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1892": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1893": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1894": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1895": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1896": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "event"
+ },
+ "1897": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1898": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1899": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1900": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.timeout"
+ },
+ "1901": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1902": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.success"
},
- "1886": {
+ "1903": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1887": {
+ "1904": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.success"
},
- "1888": {
+ "1905": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.status"
},
- "1889": {
+ "1906": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.error"
},
- "1890": {
+ "1907": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.send"
},
- "1891": {
+ "1908": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.send"
},
- "1892": {
+ "1909": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "args"
},
- "1893": {
+ "1910": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1894": {
+ "1911": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1895": {
+ "1912": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1896": {
+ "1913": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.payload"
},
- "1897": {
+ "1914": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1899": {
+ "1916": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1900": {
+ "1917": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1901": {
+ "1918": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1903": {
+ "1920": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.updateJoinPayload"
},
- "1904": {
+ "1921": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.updateJoinPayload"
},
- "1905": {
+ "1922": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1906": {
+ "1923": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1907": {
+ "1924": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1909": {
+ "1926": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.unsubscribe"
},
- "1910": {
+ "1927": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.unsubscribe"
},
- "1911": {
+ "1928": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "timeout"
},
- "1912": {
+ "1929": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.teardown"
},
- "1913": {
+ "1930": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.teardown"
},
- "1914": {
+ "1931": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimeChannelOptions"
},
- "1915": {
+ "1932": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1916": {
+ "1933": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.config"
},
- "1917": {
+ "1934": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1918": {
+ "1935": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.broadcast"
},
- "1919": {
+ "1936": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1920": {
+ "1937": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.self"
},
- "1921": {
+ "1938": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.ack"
},
- "1922": {
+ "1939": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.replay"
},
- "1923": {
+ "1940": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.presence"
},
- "1924": {
+ "1941": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1925": {
+ "1942": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.key"
},
- "1926": {
+ "1943": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.enabled"
},
- "1927": {
+ "1944": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.private"
},
- "1928": {
+ "1945": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimeChannelSendResponse"
},
- "1929": {
+ "1946": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "1930": {
+ "1947": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.__constructor"
},
- "1931": {
+ "1948": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "1932": {
+ "1949": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "endPoint"
},
- "1933": {
+ "1950": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "options"
},
- "1934": {
+ "1951": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.accessTokenValue"
},
- "1935": {
+ "1952": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.apiKey"
},
- "1936": {
+ "1953": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channels"
},
- "1937": {
+ "1954": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endPoint"
},
- "1938": {
+ "1955": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.httpEndpoint"
},
- "1939": {
+ "1956": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.headers"
},
- "1940": {
+ "1957": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1941": {
+ "1958": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "1943": {
+ "1960": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.params"
},
- "1944": {
+ "1961": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1945": {
+ "1962": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "1947": {
+ "1964": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.timeout"
},
- "1948": {
+ "1965": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.transport"
},
- "1949": {
+ "1966": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatIntervalMs"
},
- "1950": {
+ "1967": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatTimer"
},
- "1951": {
+ "1968": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.pendingHeartbeatRef"
},
- "1952": {
+ "1969": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatCallback"
},
- "1953": {
+ "1970": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1954": {
+ "1971": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1955": {
+ "1972": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "1956": {
+ "1973": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.ref"
},
- "1957": {
+ "1974": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.reconnectTimer"
},
- "1958": {
+ "1975": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.vsn"
},
- "1959": {
+ "1976": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.logger"
},
- "1960": {
+ "1977": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.logLevel"
},
- "1961": {
+ "1978": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.encode"
},
- "1962": {
+ "1979": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.decode"
},
- "1963": {
+ "1980": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.reconnectAfterMs"
},
- "1964": {
+ "1981": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.conn"
},
- "1965": {
+ "1982": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendBuffer"
},
- "1966": {
+ "1983": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.serializer"
},
- "1967": {
+ "1984": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.stateChangeCallbacks"
},
- "1968": {
+ "1985": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1969": {
+ "1986": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.open"
},
- "1970": {
+ "1987": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.close"
},
- "1971": {
+ "1988": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.error"
},
- "1972": {
+ "1989": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.message"
},
- "1973": {
+ "1990": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.fetch"
},
- "1974": {
+ "1991": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "1975": {
+ "1992": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "1976": {
+ "1993": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "input"
},
- "1977": {
+ "1994": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "init"
},
- "1978": {
+ "1995": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
- "1979": {
+ "1996": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
- "1980": {
+ "1997": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
- "1981": {
+ "1998": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.accessToken"
},
- "1982": {
+ "1999": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1983": {
+ "2000": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1984": {
+ "2001": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.worker"
},
- "1985": {
+ "2002": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.workerUrl"
},
- "1986": {
+ "2003": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.workerRef"
},
- "1990": {
+ "2007": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connect"
},
- "1991": {
+ "2008": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connect"
},
- "1992": {
+ "2009": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endpointURL"
},
- "1993": {
+ "2010": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endpointURL"
},
- "1994": {
+ "2011": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.disconnect"
},
- "1995": {
+ "2012": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.disconnect"
},
- "1996": {
+ "2013": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "code"
},
- "1997": {
+ "2014": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "reason"
},
- "1998": {
+ "2015": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.getChannels"
},
- "1999": {
+ "2016": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.getChannels"
},
- "2000": {
+ "2017": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeChannel"
},
- "2001": {
+ "2018": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeChannel"
},
- "2002": {
+ "2019": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "channel"
},
- "2003": {
+ "2020": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeAllChannels"
},
- "2004": {
+ "2021": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeAllChannels"
},
- "2005": {
+ "2022": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.log"
},
- "2006": {
+ "2023": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.log"
},
- "2007": {
+ "2024": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "kind"
},
- "2008": {
+ "2025": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "msg"
},
- "2009": {
+ "2026": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "data"
},
- "2010": {
+ "2027": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connectionState"
},
- "2011": {
+ "2028": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connectionState"
},
- "2012": {
+ "2029": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnected"
},
- "2013": {
+ "2030": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnected"
},
- "2014": {
+ "2031": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnecting"
},
- "2015": {
+ "2032": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnecting"
},
- "2016": {
+ "2033": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isDisconnecting"
},
- "2017": {
+ "2034": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isDisconnecting"
},
- "2018": {
+ "2035": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channel"
},
- "2019": {
+ "2036": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channel"
},
- "2020": {
+ "2037": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "topic"
},
- "2021": {
+ "2038": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "params"
},
- "2022": {
+ "2039": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.push"
},
- "2023": {
+ "2040": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.push"
},
- "2024": {
+ "2041": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "data"
},
- "2025": {
+ "2042": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.setAuth"
},
- "2026": {
+ "2043": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.setAuth"
},
- "2027": {
+ "2044": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "token"
},
- "2028": {
+ "2045": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendHeartbeat"
},
- "2029": {
+ "2046": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendHeartbeat"
},
- "2030": {
+ "2047": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.onHeartbeat"
},
- "2031": {
+ "2048": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.onHeartbeat"
},
- "2032": {
+ "2049": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "callback"
},
- "2033": {
+ "2050": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2034": {
+ "2051": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2035": {
+ "2052": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "2036": {
+ "2053": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.flushSendBuffer"
},
- "2037": {
+ "2054": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.flushSendBuffer"
},
- "2039": {
+ "2056": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeClientOptions"
},
- "2040": {
+ "2057": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2041": {
+ "2058": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.transport"
},
- "2042": {
+ "2059": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.timeout"
},
- "2043": {
+ "2060": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.heartbeatIntervalMs"
},
- "2044": {
+ "2061": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.heartbeatCallback"
},
- "2045": {
+ "2062": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2046": {
+ "2063": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2047": {
+ "2064": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "2048": {
+ "2065": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.vsn"
},
- "2049": {
+ "2066": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.logger"
},
- "2050": {
+ "2067": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.encode"
},
- "2051": {
+ "2068": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.decode"
},
- "2052": {
+ "2069": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.reconnectAfterMs"
},
- "2053": {
+ "2070": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.headers"
},
- "2054": {
+ "2071": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2055": {
+ "2072": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2057": {
+ "2074": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.params"
},
- "2058": {
+ "2075": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2059": {
+ "2076": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2061": {
+ "2078": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.log_level"
},
- "2062": {
+ "2079": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.logLevel"
},
- "2063": {
+ "2080": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.fetch"
},
- "2064": {
+ "2081": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.worker"
},
- "2065": {
+ "2082": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.workerUrl"
},
- "2066": {
+ "2083": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.accessToken"
},
- "2067": {
+ "2084": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2068": {
+ "2085": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2069": {
+ "2086": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeMessage"
},
- "2070": {
+ "2087": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2071": {
+ "2088": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.topic"
},
- "2072": {
+ "2089": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.event"
},
- "2073": {
+ "2090": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.payload"
},
- "2074": {
+ "2091": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.ref"
},
- "2075": {
+ "2092": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.join_ref"
},
- "2076": {
+ "2093": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesFilter"
},
- "2077": {
+ "2094": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2078": {
+ "2095": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "2079": {
+ "2096": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.schema"
},
- "2080": {
+ "2097": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.table"
},
- "2081": {
+ "2098": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.filter"
},
- "2082": {
+ "2099": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2083": {
+ "2100": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesPayload"
},
- "2084": {
+ "2101": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2085": {
+ "2102": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2086": {
+ "2103": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2088": {
+ "2105": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresInsertPayload"
},
- "2089": {
+ "2106": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2090": {
+ "2107": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2091": {
+ "2108": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2092": {
+ "2109": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2093": {
+ "2110": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2094": {
+ "2111": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2095": {
+ "2112": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2096": {
+ "2113": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2098": {
+ "2115": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresUpdatePayload"
},
- "2099": {
+ "2116": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2100": {
+ "2117": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2101": {
+ "2118": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2102": {
+ "2119": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2103": {
+ "2120": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2104": {
+ "2121": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2105": {
+ "2122": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2107": {
+ "2124": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresDeletePayload"
},
- "2108": {
+ "2125": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2109": {
+ "2126": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2110": {
+ "2127": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2111": {
+ "2128": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2112": {
+ "2129": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2113": {
+ "2130": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2114": {
+ "2131": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2115": {
+ "2132": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2117": {
+ "2134": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceJoinPayload"
},
- "2118": {
+ "2135": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2119": {
+ "2136": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "2120": {
+ "2137": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "2121": {
+ "2138": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "2122": {
+ "2139": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.newPresences"
},
- "2123": {
+ "2140": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2124": {
+ "2141": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2125": {
+ "2142": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2127": {
+ "2144": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceLeavePayload"
},
- "2128": {
+ "2145": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2129": {
+ "2146": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "2130": {
+ "2147": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "2131": {
+ "2148": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "2132": {
+ "2149": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.leftPresences"
},
- "2133": {
+ "2150": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2134": {
+ "2151": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2135": {
+ "2152": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2137": {
+ "2154": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceState"
},
- "2138": {
+ "2155": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2139": {
+ "2156": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2141": {
+ "2158": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2142": {
+ "2159": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2143": {
+ "2160": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2145": {
+ "2162": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2146": {
+ "2163": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeRemoveChannelResponse"
},
- "2147": {
+ "2164": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES"
},
- "2148": {
+ "2165": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST"
},
- "2149": {
+ "2166": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE"
},
- "2150": {
+ "2167": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES"
},
- "2151": {
+ "2168": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM"
},
- "2152": {
+ "2169": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT"
},
- "2153": {
+ "2170": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
},
- "2154": {
+ "2171": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
},
- "2155": {
+ "2172": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
},
- "2156": {
+ "2173": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
},
- "2157": {
+ "2174": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS"
},
- "2158": {
+ "2175": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC"
},
- "2159": {
+ "2176": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN"
},
- "2160": {
+ "2177": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE"
},
- "2161": {
+ "2178": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES"
},
- "2162": {
+ "2179": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED"
},
- "2163": {
+ "2180": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT"
},
- "2164": {
+ "2181": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED"
},
- "2165": {
+ "2182": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR"
},
- "2166": {
+ "2183": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_CHANNEL_STATES"
},
- "2167": {
+ "2184": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory"
},
- "2169": {
+ "2186": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "2170": {
+ "2187": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "2171": {
+ "2188": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "2172": {
+ "2189": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "2173": {
+ "2190": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "url"
},
- "2174": {
+ "2191": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "protocols"
},
- "2175": {
+ "2192": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.createWebSocket"
},
- "2176": {
+ "2193": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.createWebSocket"
},
- "2177": {
+ "2194": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "url"
},
- "2178": {
+ "2195": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "protocols"
},
- "2179": {
+ "2196": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "2180": {
+ "2197": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "2183": {
+ "2200": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike"
},
- "2184": {
+ "2201": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CONNECTING"
},
- "2185": {
+ "2202": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.OPEN"
},
- "2186": {
+ "2203": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CLOSING"
},
- "2187": {
+ "2204": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CLOSED"
},
- "2188": {
+ "2205": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.readyState"
},
- "2189": {
+ "2206": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.url"
},
- "2190": {
+ "2207": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.protocol"
},
- "2191": {
+ "2208": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.close"
},
- "2192": {
+ "2209": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.close"
},
- "2193": {
+ "2210": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "code"
},
- "2194": {
+ "2211": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "reason"
},
- "2195": {
+ "2212": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.send"
},
- "2196": {
+ "2213": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.send"
},
- "2197": {
+ "2214": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "data"
},
- "2198": {
+ "2215": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onopen"
},
- "2199": {
+ "2216": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2200": {
+ "2217": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2201": {
+ "2218": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2202": {
+ "2219": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2203": {
+ "2220": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onmessage"
},
- "2204": {
+ "2221": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2205": {
+ "2222": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2206": {
+ "2223": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2207": {
+ "2224": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2208": {
+ "2225": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onclose"
},
- "2209": {
+ "2226": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2210": {
+ "2227": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2211": {
+ "2228": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2212": {
+ "2229": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2213": {
+ "2230": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onerror"
},
- "2214": {
+ "2231": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2215": {
+ "2232": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2216": {
+ "2233": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2217": {
+ "2234": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2218": {
+ "2235": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.addEventListener"
},
- "2219": {
+ "2236": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.addEventListener"
},
- "2220": {
+ "2237": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "type"
},
- "2221": {
+ "2238": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "listener"
},
- "2222": {
+ "2239": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.removeEventListener"
},
- "2223": {
+ "2240": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.removeEventListener"
},
- "2224": {
+ "2241": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "type"
},
- "2225": {
+ "2242": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "listener"
},
- "2226": {
+ "2243": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.binaryType"
},
- "2227": {
+ "2244": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.bufferedAmount"
},
- "2228": {
+ "2245": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.extensions"
},
- "2229": {
+ "2246": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.dispatchEvent"
},
- "2230": {
+ "2247": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2231": {
+ "2248": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2232": {
+ "2249": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "event"
},
- "2233": {
+ "2250": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "2234": {
+ "2251": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "2235": {
+ "2252": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "2236": {
+ "2253": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "address"
},
- "2237": {
+ "2254": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "subprotocols"
},
- "2238": {
+ "2255": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor.__index"
}
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json
index 738adf1123d64..b05fcba5d7e54 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json
@@ -298,14 +298,14 @@
]
},
{
- "id": 2147,
+ "id": 2164,
"name": "REALTIME_LISTEN_TYPES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2148,
+ "id": 2165,
"name": "BROADCAST",
"variant": "declaration",
"kind": 16,
@@ -323,7 +323,7 @@
}
},
{
- "id": 2150,
+ "id": 2167,
"name": "POSTGRES_CHANGES",
"variant": "declaration",
"kind": 16,
@@ -341,7 +341,7 @@
}
},
{
- "id": 2149,
+ "id": 2166,
"name": "PRESENCE",
"variant": "declaration",
"kind": 16,
@@ -359,7 +359,7 @@
}
},
{
- "id": 2151,
+ "id": 2168,
"name": "SYSTEM",
"variant": "declaration",
"kind": 16,
@@ -380,7 +380,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2148, 2150, 2149, 2151]
+ "children": [2165, 2167, 2166, 2168]
}
],
"sources": [
@@ -392,14 +392,14 @@
]
},
{
- "id": 2152,
+ "id": 2169,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2153,
+ "id": 2170,
"name": "ALL",
"variant": "declaration",
"kind": 16,
@@ -417,7 +417,7 @@
}
},
{
- "id": 2156,
+ "id": 2173,
"name": "DELETE",
"variant": "declaration",
"kind": 16,
@@ -435,7 +435,7 @@
}
},
{
- "id": 2154,
+ "id": 2171,
"name": "INSERT",
"variant": "declaration",
"kind": 16,
@@ -453,7 +453,7 @@
}
},
{
- "id": 2155,
+ "id": 2172,
"name": "UPDATE",
"variant": "declaration",
"kind": 16,
@@ -474,7 +474,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2153, 2156, 2154, 2155]
+ "children": [2170, 2173, 2171, 2172]
}
],
"sources": [
@@ -486,14 +486,14 @@
]
},
{
- "id": 2157,
+ "id": 2174,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2159,
+ "id": 2176,
"name": "JOIN",
"variant": "declaration",
"kind": 16,
@@ -511,7 +511,7 @@
}
},
{
- "id": 2160,
+ "id": 2177,
"name": "LEAVE",
"variant": "declaration",
"kind": 16,
@@ -529,7 +529,7 @@
}
},
{
- "id": 2158,
+ "id": 2175,
"name": "SYNC",
"variant": "declaration",
"kind": 16,
@@ -550,7 +550,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2159, 2160, 2158]
+ "children": [2176, 2177, 2175]
}
],
"sources": [
@@ -562,14 +562,14 @@
]
},
{
- "id": 2161,
+ "id": 2178,
"name": "REALTIME_SUBSCRIBE_STATES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 2165,
+ "id": 2182,
"name": "CHANNEL_ERROR",
"variant": "declaration",
"kind": 16,
@@ -587,7 +587,7 @@
}
},
{
- "id": 2164,
+ "id": 2181,
"name": "CLOSED",
"variant": "declaration",
"kind": 16,
@@ -605,7 +605,7 @@
}
},
{
- "id": 2162,
+ "id": 2179,
"name": "SUBSCRIBED",
"variant": "declaration",
"kind": 16,
@@ -623,7 +623,7 @@
}
},
{
- "id": 2163,
+ "id": 2180,
"name": "TIMED_OUT",
"variant": "declaration",
"kind": 16,
@@ -644,7 +644,7 @@
"groups": [
{
"title": "Enumeration Members",
- "children": [2165, 2164, 2162, 2163]
+ "children": [2182, 2181, 2179, 2180]
}
],
"sources": [
@@ -656,7 +656,7 @@
]
},
{
- "id": 1461,
+ "id": 1478,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
@@ -682,7 +682,7 @@
},
"children": [
{
- "id": 1462,
+ "id": 1479,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -696,7 +696,7 @@
],
"signatures": [
{
- "id": 1463,
+ "id": 1480,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -710,7 +710,7 @@
],
"parameters": [
{
- "id": 1464,
+ "id": 1481,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -721,7 +721,7 @@
}
},
{
- "id": 1465,
+ "id": 1482,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -732,7 +732,7 @@
}
},
{
- "id": 1466,
+ "id": 1483,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -754,25 +754,25 @@
],
"type": {
"type": "reference",
- "target": 1461,
+ "target": 1478,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1453,
+ "target": 1470,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1452,
+ "target": 1469,
"name": "AuthError.constructor"
}
},
{
- "id": 1470,
+ "id": 1487,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -793,12 +793,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1460,
+ "target": 1477,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1468,
+ "id": 1485,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -855,7 +855,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1469,
+ "id": 1486,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -868,12 +868,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1457,
+ "target": 1474,
"name": "AuthError.code"
}
},
{
- "id": 1467,
+ "id": 1484,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -899,7 +899,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1459,
+ "target": 1476,
"name": "AuthError.status"
}
}
@@ -907,11 +907,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1462]
+ "children": [1479]
},
{
"title": "Properties",
- "children": [1470, 1468, 1467]
+ "children": [1487, 1485, 1484]
}
],
"sources": [
@@ -924,14 +924,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1451,
+ "id": 1468,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
@@ -957,7 +957,7 @@
},
"children": [
{
- "id": 1452,
+ "id": 1469,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -971,7 +971,7 @@
],
"signatures": [
{
- "id": 1453,
+ "id": 1470,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -985,7 +985,7 @@
],
"parameters": [
{
- "id": 1454,
+ "id": 1471,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -996,7 +996,7 @@
}
},
{
- "id": 1455,
+ "id": 1472,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -1009,7 +1009,7 @@
}
},
{
- "id": 1456,
+ "id": 1473,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -1024,7 +1024,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -1042,7 +1042,7 @@
}
},
{
- "id": 1460,
+ "id": 1477,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1062,7 +1062,7 @@
}
},
{
- "id": 1457,
+ "id": 1474,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1117,7 +1117,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1458,
+ "id": 1475,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1130,7 +1130,7 @@
}
},
{
- "id": 1459,
+ "id": 1476,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1168,11 +1168,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1452]
+ "children": [1469]
},
{
"title": "Properties",
- "children": [1460, 1457, 1459]
+ "children": [1477, 1474, 1476]
}
],
"sources": [
@@ -1196,23 +1196,23 @@
"extendedBy": [
{
"type": "reference",
- "target": 1461,
+ "target": 1478,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1471,
+ "target": 1488,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError"
}
]
},
{
- "id": 1518,
+ "id": 1535,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
@@ -1238,7 +1238,7 @@
},
"children": [
{
- "id": 1519,
+ "id": 1536,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1252,7 +1252,7 @@
],
"signatures": [
{
- "id": 1520,
+ "id": 1537,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -1266,7 +1266,7 @@
],
"parameters": [
{
- "id": 1521,
+ "id": 1538,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1277,7 +1277,7 @@
}
},
{
- "id": 1522,
+ "id": 1539,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -1294,14 +1294,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1523,
+ "id": 1540,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1525,
+ "id": 1542,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1319,7 +1319,7 @@
}
},
{
- "id": 1524,
+ "id": 1541,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1340,7 +1340,7 @@
"groups": [
{
"title": "Properties",
- "children": [1525, 1524]
+ "children": [1542, 1541]
}
],
"sources": [
@@ -1358,25 +1358,25 @@
],
"type": {
"type": "reference",
- "target": 1518,
+ "target": 1535,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1544,
+ "id": 1561,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1397,12 +1397,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1542,
+ "id": 1559,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1459,7 +1459,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1543,
+ "id": 1560,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -1472,12 +1472,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1526,
+ "id": 1543,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1499,14 +1499,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1527,
+ "id": 1544,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1529,
+ "id": 1546,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1524,7 +1524,7 @@
}
},
{
- "id": 1528,
+ "id": 1545,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1545,7 +1545,7 @@
"groups": [
{
"title": "Properties",
- "children": [1529, 1528]
+ "children": [1546, 1545]
}
],
"sources": [
@@ -1561,7 +1561,7 @@
}
},
{
- "id": 1540,
+ "id": 1557,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1581,12 +1581,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1541,
+ "id": 1558,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1614,12 +1614,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
},
{
- "id": 1530,
+ "id": 1547,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -1633,7 +1633,7 @@
],
"signatures": [
{
- "id": 1531,
+ "id": 1548,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -1648,14 +1648,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1532,
+ "id": 1549,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1536,
+ "id": 1553,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -1677,14 +1677,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1537,
+ "id": 1554,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1539,
+ "id": 1556,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -1702,7 +1702,7 @@
}
},
{
- "id": 1538,
+ "id": 1555,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -1723,7 +1723,7 @@
"groups": [
{
"title": "Properties",
- "children": [1539, 1538]
+ "children": [1556, 1555]
}
],
"sources": [
@@ -1739,7 +1739,7 @@
}
},
{
- "id": 1534,
+ "id": 1551,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -1757,7 +1757,7 @@
}
},
{
- "id": 1533,
+ "id": 1550,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -1775,7 +1775,7 @@
}
},
{
- "id": 1535,
+ "id": 1552,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -1796,7 +1796,7 @@
"groups": [
{
"title": "Properties",
- "children": [1536, 1534, 1533, 1535]
+ "children": [1553, 1551, 1550, 1552]
}
],
"sources": [
@@ -1815,15 +1815,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1519]
+ "children": [1536]
},
{
"title": "Properties",
- "children": [1544, 1542, 1526, 1540, 1541]
+ "children": [1561, 1559, 1543, 1557, 1558]
},
{
"title": "Methods",
- "children": [1530]
+ "children": [1547]
}
],
"sources": [
@@ -1836,14 +1836,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1509,
+ "id": 1526,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
@@ -1869,7 +1869,7 @@
},
"children": [
{
- "id": 1510,
+ "id": 1527,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -1883,7 +1883,7 @@
],
"signatures": [
{
- "id": 1511,
+ "id": 1528,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -1897,7 +1897,7 @@
],
"parameters": [
{
- "id": 1512,
+ "id": 1529,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -1910,25 +1910,25 @@
],
"type": {
"type": "reference",
- "target": 1509,
+ "target": 1526,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1517,
+ "id": 1534,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -1949,12 +1949,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1515,
+ "id": 1532,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2011,7 +2011,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1516,
+ "id": 1533,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2024,12 +2024,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1513,
+ "id": 1530,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2049,12 +2049,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1514,
+ "id": 1531,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2082,7 +2082,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -2090,11 +2090,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1510]
+ "children": [1527]
},
{
"title": "Properties",
- "children": [1517, 1515, 1513, 1514]
+ "children": [1534, 1532, 1530, 1531]
}
],
"sources": [
@@ -2107,14 +2107,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1594,
+ "id": 1611,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
@@ -2140,7 +2140,7 @@
},
"children": [
{
- "id": 1595,
+ "id": 1612,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2154,7 +2154,7 @@
],
"signatures": [
{
- "id": 1596,
+ "id": 1613,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -2168,7 +2168,7 @@
],
"parameters": [
{
- "id": 1597,
+ "id": 1614,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2181,25 +2181,25 @@
],
"type": {
"type": "reference",
- "target": 1594,
+ "target": 1611,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1602,
+ "id": 1619,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2220,12 +2220,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1600,
+ "id": 1617,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2282,7 +2282,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1601,
+ "id": 1618,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2295,12 +2295,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1598,
+ "id": 1615,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2320,12 +2320,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1599,
+ "id": 1616,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2353,7 +2353,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -2361,11 +2361,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1595]
+ "children": [1612]
},
{
"title": "Properties",
- "children": [1602, 1600, 1598, 1599]
+ "children": [1619, 1617, 1615, 1616]
}
],
"sources": [
@@ -2378,14 +2378,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1501,
+ "id": 1518,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
@@ -2411,7 +2411,7 @@
},
"children": [
{
- "id": 1502,
+ "id": 1519,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2425,7 +2425,7 @@
],
"signatures": [
{
- "id": 1503,
+ "id": 1520,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -2439,25 +2439,25 @@
],
"type": {
"type": "reference",
- "target": 1501,
+ "target": 1518,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1508,
+ "id": 1525,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2478,12 +2478,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1506,
+ "id": 1523,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2540,7 +2540,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1507,
+ "id": 1524,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2553,12 +2553,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1504,
+ "id": 1521,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -2578,12 +2578,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1505,
+ "id": 1522,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -2611,7 +2611,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -2619,11 +2619,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1502]
+ "children": [1519]
},
{
"title": "Properties",
- "children": [1508, 1506, 1504, 1505]
+ "children": [1525, 1523, 1521, 1522]
}
],
"sources": [
@@ -2636,14 +2636,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1545,
+ "id": 1562,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
@@ -2669,7 +2669,7 @@
},
"children": [
{
- "id": 1546,
+ "id": 1563,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -2683,7 +2683,7 @@
],
"signatures": [
{
- "id": 1547,
+ "id": 1564,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -2697,7 +2697,7 @@
],
"parameters": [
{
- "id": 1548,
+ "id": 1565,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -2708,7 +2708,7 @@
}
},
{
- "id": 1549,
+ "id": 1566,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -2725,14 +2725,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1550,
+ "id": 1567,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1552,
+ "id": 1569,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2750,7 +2750,7 @@
}
},
{
- "id": 1551,
+ "id": 1568,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2771,7 +2771,7 @@
"groups": [
{
"title": "Properties",
- "children": [1552, 1551]
+ "children": [1569, 1568]
}
],
"sources": [
@@ -2789,25 +2789,25 @@
],
"type": {
"type": "reference",
- "target": 1545,
+ "target": 1562,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1571,
+ "id": 1588,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -2828,12 +2828,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1569,
+ "id": 1586,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2890,7 +2890,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1570,
+ "id": 1587,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -2903,12 +2903,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1553,
+ "id": 1570,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -2930,14 +2930,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1554,
+ "id": 1571,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1556,
+ "id": 1573,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -2955,7 +2955,7 @@
}
},
{
- "id": 1555,
+ "id": 1572,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -2976,7 +2976,7 @@
"groups": [
{
"title": "Properties",
- "children": [1556, 1555]
+ "children": [1573, 1572]
}
],
"sources": [
@@ -2992,7 +2992,7 @@
}
},
{
- "id": 1567,
+ "id": 1584,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3012,12 +3012,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1568,
+ "id": 1585,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3045,12 +3045,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
},
{
- "id": 1557,
+ "id": 1574,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -3064,7 +3064,7 @@
],
"signatures": [
{
- "id": 1558,
+ "id": 1575,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -3079,14 +3079,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1559,
+ "id": 1576,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1563,
+ "id": 1580,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -3108,14 +3108,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1564,
+ "id": 1581,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1566,
+ "id": 1583,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3133,7 +3133,7 @@
}
},
{
- "id": 1565,
+ "id": 1582,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -3154,7 +3154,7 @@
"groups": [
{
"title": "Properties",
- "children": [1566, 1565]
+ "children": [1583, 1582]
}
],
"sources": [
@@ -3170,7 +3170,7 @@
}
},
{
- "id": 1561,
+ "id": 1578,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -3188,7 +3188,7 @@
}
},
{
- "id": 1560,
+ "id": 1577,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3206,7 +3206,7 @@
}
},
{
- "id": 1562,
+ "id": 1579,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3227,7 +3227,7 @@
"groups": [
{
"title": "Properties",
- "children": [1563, 1561, 1560, 1562]
+ "children": [1580, 1578, 1577, 1579]
}
],
"sources": [
@@ -3246,15 +3246,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1546]
+ "children": [1563]
},
{
"title": "Properties",
- "children": [1571, 1569, 1553, 1567, 1568]
+ "children": [1588, 1586, 1570, 1584, 1585]
},
{
"title": "Methods",
- "children": [1557]
+ "children": [1574]
}
],
"sources": [
@@ -3267,14 +3267,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1572,
+ "id": 1589,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
@@ -3300,7 +3300,7 @@
},
"children": [
{
- "id": 1573,
+ "id": 1590,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3314,7 +3314,7 @@
],
"signatures": [
{
- "id": 1574,
+ "id": 1591,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -3328,7 +3328,7 @@
],
"parameters": [
{
- "id": 1575,
+ "id": 1592,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3339,7 +3339,7 @@
}
},
{
- "id": 1576,
+ "id": 1593,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -3352,25 +3352,25 @@
],
"type": {
"type": "reference",
- "target": 1572,
+ "target": 1589,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1581,
+ "id": 1598,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3391,12 +3391,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1579,
+ "id": 1596,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3453,7 +3453,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1580,
+ "id": 1597,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3466,12 +3466,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1577,
+ "id": 1594,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3491,12 +3491,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1578,
+ "id": 1595,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3524,7 +3524,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -3532,11 +3532,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1573]
+ "children": [1590]
},
{
"title": "Properties",
- "children": [1581, 1579, 1577, 1578]
+ "children": [1598, 1596, 1594, 1595]
}
],
"sources": [
@@ -3549,14 +3549,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1493,
+ "id": 1510,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
@@ -3582,7 +3582,7 @@
},
"children": [
{
- "id": 1494,
+ "id": 1511,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3596,7 +3596,7 @@
],
"signatures": [
{
- "id": 1495,
+ "id": 1512,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -3610,25 +3610,25 @@
],
"type": {
"type": "reference",
- "target": 1493,
+ "target": 1510,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1500,
+ "id": 1517,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3649,12 +3649,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1498,
+ "id": 1515,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3711,7 +3711,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1499,
+ "id": 1516,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -3724,12 +3724,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1496,
+ "id": 1513,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -3749,12 +3749,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1497,
+ "id": 1514,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -3782,7 +3782,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -3790,11 +3790,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1494]
+ "children": [1511]
},
{
"title": "Properties",
- "children": [1500, 1498, 1496, 1497]
+ "children": [1517, 1515, 1513, 1514]
}
],
"sources": [
@@ -3807,14 +3807,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1471,
+ "id": 1488,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
@@ -3840,7 +3840,7 @@
},
"children": [
{
- "id": 1472,
+ "id": 1489,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -3854,7 +3854,7 @@
],
"signatures": [
{
- "id": 1473,
+ "id": 1490,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -3868,7 +3868,7 @@
],
"parameters": [
{
- "id": 1474,
+ "id": 1491,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -3879,7 +3879,7 @@
}
},
{
- "id": 1475,
+ "id": 1492,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -3892,25 +3892,25 @@
],
"type": {
"type": "reference",
- "target": 1471,
+ "target": 1488,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1453,
+ "target": 1470,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1452,
+ "target": 1469,
"name": "AuthError.constructor"
}
},
{
- "id": 1480,
+ "id": 1497,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -3931,12 +3931,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1460,
+ "target": 1477,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1477,
+ "id": 1494,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -3993,7 +3993,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1478,
+ "id": 1495,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4006,12 +4006,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1457,
+ "target": 1474,
"name": "AuthError.code"
}
},
{
- "id": 1476,
+ "id": 1493,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -4029,7 +4029,7 @@
}
},
{
- "id": 1479,
+ "id": 1496,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4066,7 +4066,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1459,
+ "target": 1476,
"name": "AuthError.status"
}
}
@@ -4074,11 +4074,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1472]
+ "children": [1489]
},
{
"title": "Properties",
- "children": [1480, 1477, 1476, 1479]
+ "children": [1497, 1494, 1493, 1496]
}
],
"sources": [
@@ -4091,14 +4091,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1582,
+ "id": 1599,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -4124,7 +4124,7 @@
},
"children": [
{
- "id": 1583,
+ "id": 1600,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4138,7 +4138,7 @@
],
"signatures": [
{
- "id": 1584,
+ "id": 1601,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -4152,7 +4152,7 @@
],
"parameters": [
{
- "id": 1585,
+ "id": 1602,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4163,7 +4163,7 @@
}
},
{
- "id": 1586,
+ "id": 1603,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4174,7 +4174,7 @@
}
},
{
- "id": 1587,
+ "id": 1604,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -4203,25 +4203,25 @@
],
"type": {
"type": "reference",
- "target": 1582,
+ "target": 1599,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1483,
+ "target": 1500,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1482,
+ "target": 1499,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1593,
+ "id": 1610,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4242,12 +4242,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1492,
+ "target": 1509,
"name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 1591,
+ "id": 1608,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4304,7 +4304,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1592,
+ "id": 1609,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4317,12 +4317,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1490,
+ "target": 1507,
"name": "CustomAuthError.code"
}
},
{
- "id": 1589,
+ "id": 1606,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4342,12 +4342,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1488,
+ "target": 1505,
"name": "CustomAuthError.name"
}
},
{
- "id": 1588,
+ "id": 1605,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -4389,7 +4389,7 @@
}
},
{
- "id": 1590,
+ "id": 1607,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4417,7 +4417,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1489,
+ "target": 1506,
"name": "CustomAuthError.status"
}
}
@@ -4425,11 +4425,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1583]
+ "children": [1600]
},
{
"title": "Properties",
- "children": [1593, 1591, 1589, 1588, 1590]
+ "children": [1610, 1608, 1606, 1605, 1607]
}
],
"sources": [
@@ -4442,14 +4442,14 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1481,
+ "id": 1498,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
@@ -4475,7 +4475,7 @@
},
"children": [
{
- "id": 1482,
+ "id": 1499,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -4489,7 +4489,7 @@
],
"signatures": [
{
- "id": 1483,
+ "id": 1500,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -4503,7 +4503,7 @@
],
"parameters": [
{
- "id": 1484,
+ "id": 1501,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -4514,7 +4514,7 @@
}
},
{
- "id": 1485,
+ "id": 1502,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -4525,7 +4525,7 @@
}
},
{
- "id": 1486,
+ "id": 1503,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -4536,7 +4536,7 @@
}
},
{
- "id": 1487,
+ "id": 1504,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -4558,25 +4558,25 @@
],
"type": {
"type": "reference",
- "target": 1481,
+ "target": 1498,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1453,
+ "target": 1470,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1452,
+ "target": 1469,
"name": "AuthError.constructor"
}
},
{
- "id": 1492,
+ "id": 1509,
"name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
@@ -4597,12 +4597,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1460,
+ "target": 1477,
"name": "AuthError.__isAuthError"
}
},
{
- "id": 1490,
+ "id": 1507,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -4659,7 +4659,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1491,
+ "id": 1508,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -4672,12 +4672,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1457,
+ "target": 1474,
"name": "AuthError.code"
}
},
{
- "id": 1488,
+ "id": 1505,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -4700,7 +4700,7 @@
}
},
{
- "id": 1489,
+ "id": 1506,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -4726,7 +4726,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1459,
+ "target": 1476,
"name": "AuthError.status"
}
}
@@ -4734,11 +4734,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1482]
+ "children": [1499]
},
{
"title": "Properties",
- "children": [1492, 1490, 1488, 1489]
+ "children": [1509, 1507, 1505, 1506]
}
],
"sources": [
@@ -4751,7 +4751,7 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -4759,42 +4759,42 @@
"extendedBy": [
{
"type": "reference",
- "target": 1493,
+ "target": 1510,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1501,
+ "target": 1518,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1509,
+ "target": 1526,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1518,
+ "target": 1535,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1545,
+ "target": 1562,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1572,
+ "target": 1589,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1582,
+ "target": 1599,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1594,
+ "target": 1611,
"name": "AuthInvalidJwtError"
}
]
@@ -6112,7 +6112,7 @@
],
"type": {
"type": "reference",
- "target": 1248,
+ "target": 1250,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -6140,7 +6140,7 @@
],
"type": {
"type": "reference",
- "target": 1374,
+ "target": 1376,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -6217,7 +6217,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 848,
+ "target": 850,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -6232,7 +6232,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6345,7 +6345,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6400,7 +6400,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1058,
+ "target": 1060,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -6415,7 +6415,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1059,
+ "target": 1061,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -6499,7 +6499,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6681,7 +6681,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -6770,7 +6770,7 @@
},
"type": {
"type": "reference",
- "target": 1269,
+ "target": 1271,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -6879,7 +6879,7 @@
},
{
"type": "reference",
- "target": 1262,
+ "target": 1264,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -7000,7 +7000,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7176,7 +7176,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -7277,7 +7277,7 @@
},
"type": {
"type": "reference",
- "target": 848,
+ "target": 850,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -7292,7 +7292,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -7388,7 +7388,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 712,
+ "target": 714,
"name": "GoTrueClientOptions",
"package": "@supabase/auth-js"
}
@@ -7795,7 +7795,7 @@
],
"type": {
"type": "reference",
- "target": 907,
+ "target": 909,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
@@ -7933,7 +7933,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1258,
+ "target": 1260,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -7961,7 +7961,7 @@
],
"type": {
"type": "reference",
- "target": 703,
+ "target": 705,
"name": "LockFunc",
"package": "@supabase/auth-js"
}
@@ -8186,7 +8186,7 @@
],
"type": {
"type": "reference",
- "target": 1118,
+ "target": 1120,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
@@ -8214,7 +8214,7 @@
],
"type": {
"type": "reference",
- "target": 1417,
+ "target": 1427,
"name": "AuthOAuthServerApi",
"package": "@supabase/auth-js"
}
@@ -8304,7 +8304,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1261,
+ "target": 1263,
"name": "CallRefreshTokenResult",
"package": "@supabase/auth-js"
}
@@ -8352,7 +8352,7 @@
},
{
"type": "reference",
- "target": 861,
+ "target": 863,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -8378,7 +8378,7 @@
],
"type": {
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -8499,7 +8499,7 @@
},
{
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -8646,7 +8646,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -8715,7 +8715,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -8907,7 +8907,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9026,7 +9026,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -9077,7 +9077,7 @@
},
"type": {
"type": "reference",
- "target": 1273,
+ "target": 1275,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -9121,7 +9121,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9189,7 +9189,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 842,
+ "target": 844,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -9258,7 +9258,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -9326,7 +9326,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 776,
+ "target": 778,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -9338,7 +9338,7 @@
]
},
{
- "id": 651,
+ "id": 653,
"name": "getClaims",
"variant": "declaration",
"kind": 2048,
@@ -9346,13 +9346,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 572,
+ "line": 582,
"character": 4
}
],
"signatures": [
{
- "id": 652,
+ "id": 654,
"name": "getClaims",
"variant": "signature",
"kind": 4096,
@@ -9394,13 +9394,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 572,
+ "line": 582,
"character": 4
}
],
"parameters": [
{
- "id": 653,
+ "id": 655,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -9430,7 +9430,7 @@
}
},
{
- "id": 654,
+ "id": 656,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -9448,14 +9448,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 655,
+ "id": 657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 657,
+ "id": 659,
"name": "allowExpired",
"variant": "declaration",
"kind": 1024,
@@ -9489,7 +9489,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 578,
+ "line": 588,
"character": 8
}
],
@@ -9499,7 +9499,7 @@
}
},
{
- "id": 658,
+ "id": 660,
"name": "jwks",
"variant": "declaration",
"kind": 1024,
@@ -9517,21 +9517,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 580,
+ "line": 590,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 659,
+ "id": 661,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 660,
+ "id": 662,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -9539,7 +9539,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 581,
+ "line": 591,
"character": 12
}
],
@@ -9547,7 +9547,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9557,13 +9557,13 @@
"groups": [
{
"title": "Properties",
- "children": [660]
+ "children": [662]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 580,
+ "line": 590,
"character": 15
}
]
@@ -9571,7 +9571,7 @@
}
},
{
- "id": 656,
+ "id": 658,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -9595,7 +9595,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 576,
+ "line": 586,
"character": 8
}
],
@@ -9603,7 +9603,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1317,
+ "target": 1319,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -9613,13 +9613,13 @@
"groups": [
{
"title": "Properties",
- "children": [657, 658, 656]
+ "children": [659, 660, 658]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 572,
+ "line": 582,
"character": 38
}
]
@@ -9640,14 +9640,14 @@
{
"type": "reflection",
"declaration": {
- "id": 661,
+ "id": 663,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 662,
+ "id": 664,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -9655,21 +9655,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 584,
+ "line": 594,
"character": 8
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 663,
+ "id": 665,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 664,
+ "id": 666,
"name": "claims",
"variant": "declaration",
"kind": 1024,
@@ -9677,19 +9677,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 585,
+ "line": 595,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 1297,
+ "target": 1299,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
},
{
- "id": 665,
+ "id": 667,
"name": "header",
"variant": "declaration",
"kind": 1024,
@@ -9697,19 +9697,19 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 586,
+ "line": 596,
"character": 12
}
],
"type": {
"type": "reference",
- "target": 1282,
+ "target": 1284,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
},
{
- "id": 666,
+ "id": 668,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -9717,7 +9717,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 587,
+ "line": 597,
"character": 12
}
],
@@ -9735,13 +9735,13 @@
"groups": [
{
"title": "Properties",
- "children": [664, 665, 666]
+ "children": [666, 667, 668]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 584,
+ "line": 594,
"character": 14
}
]
@@ -9749,7 +9749,7 @@
}
},
{
- "id": 667,
+ "id": 669,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -9757,7 +9757,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 589,
+ "line": 599,
"character": 8
}
],
@@ -9770,13 +9770,13 @@
"groups": [
{
"title": "Properties",
- "children": [662, 667]
+ "children": [664, 669]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 583,
+ "line": 593,
"character": 16
}
]
@@ -9785,14 +9785,14 @@
{
"type": "reflection",
"declaration": {
- "id": 668,
+ "id": 670,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 669,
+ "id": 671,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -9800,7 +9800,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 591,
+ "line": 601,
"character": 8
}
],
@@ -9810,7 +9810,7 @@
}
},
{
- "id": 670,
+ "id": 672,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -9818,13 +9818,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 592,
+ "line": 602,
"character": 8
}
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9833,13 +9833,13 @@
"groups": [
{
"title": "Properties",
- "children": [669, 670]
+ "children": [671, 672]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 590,
+ "line": 600,
"character": 8
}
]
@@ -9848,14 +9848,14 @@
{
"type": "reflection",
"declaration": {
- "id": 671,
+ "id": 673,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 672,
+ "id": 674,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -9863,7 +9863,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 594,
+ "line": 604,
"character": 8
}
],
@@ -9873,7 +9873,7 @@
}
},
{
- "id": 673,
+ "id": 675,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -9881,7 +9881,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 595,
+ "line": 605,
"character": 8
}
],
@@ -9894,13 +9894,13 @@
"groups": [
{
"title": "Properties",
- "children": [672, 673]
+ "children": [674, 675]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
- "line": 593,
+ "line": 603,
"character": 8
}
]
@@ -10152,7 +10152,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10349,7 +10349,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10453,7 +10453,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 810,
+ "target": 812,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -10552,7 +10552,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -10626,7 +10626,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1258,
+ "target": 1260,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -10728,7 +10728,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 908,
+ "target": 910,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -10743,7 +10743,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 785,
+ "target": 787,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -10782,7 +10782,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 920,
+ "target": 922,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -10797,7 +10797,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 776,
+ "target": 778,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -10901,7 +10901,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 702,
+ "target": 704,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -10985,7 +10985,7 @@
],
"type": {
"type": "reference",
- "target": 861,
+ "target": 863,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11117,7 +11117,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 702,
+ "target": 704,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
@@ -11212,7 +11212,7 @@
],
"type": {
"type": "reference",
- "target": 861,
+ "target": 863,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -11297,7 +11297,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -11414,7 +11414,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -11469,7 +11469,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1004,
+ "target": 1006,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -11484,7 +11484,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 771,
+ "target": 773,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -11760,7 +11760,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11912,7 +11912,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -11980,7 +11980,7 @@
},
"type": {
"type": "reference",
- "target": 871,
+ "target": 873,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -11995,7 +11995,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12050,7 +12050,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 920,
+ "target": 922,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -12065,7 +12065,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 776,
+ "target": 778,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -12120,7 +12120,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 908,
+ "target": 910,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -12135,7 +12135,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 785,
+ "target": 787,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -12206,7 +12206,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 890,
+ "target": 892,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -12221,7 +12221,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 771,
+ "target": 773,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -12276,7 +12276,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 885,
+ "target": 887,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -12291,7 +12291,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 780,
+ "target": 782,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -12346,7 +12346,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1018,
+ "target": 1020,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -12361,7 +12361,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 798,
+ "target": 800,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -12427,7 +12427,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 981,
+ "target": 983,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -12664,7 +12664,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12780,7 +12780,7 @@
},
"type": {
"type": "reference",
- "target": 1273,
+ "target": 1275,
"name": "SignOut",
"package": "@supabase/auth-js"
}
@@ -12824,7 +12824,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12918,7 +12918,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 877,
+ "target": 879,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -12933,7 +12933,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -12974,7 +12974,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueClientOptions#autoRefreshToken",
- "target": 721
+ "target": 723
},
{
"kind": "text",
@@ -13118,7 +13118,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 810,
+ "target": 812,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -13243,7 +13243,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13317,7 +13317,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 842,
+ "target": 844,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
@@ -13386,7 +13386,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 801,
+ "target": 803,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -13441,7 +13441,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 982,
+ "target": 984,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -13456,7 +13456,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 762,
+ "target": 764,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -13487,7 +13487,7 @@
{
"title": "Methods",
"children": [
- 540, 529, 553, 517, 448, 651, 487, 507, 594, 433, 428, 604, 558, 481, 535, 484, 580,
+ 540, 529, 553, 517, 448, 653, 487, 507, 594, 433, 428, 604, 558, 481, 535, 484, 580,
523, 436, 469, 445, 472, 442, 478, 451, 548, 439, 632, 634, 611, 511, 475
]
}
@@ -13501,7 +13501,7 @@
]
},
{
- "id": 684,
+ "id": 686,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "declaration",
"kind": 128,
@@ -13527,7 +13527,7 @@
},
"children": [
{
- "id": 685,
+ "id": 687,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -13541,7 +13541,7 @@
],
"signatures": [
{
- "id": 686,
+ "id": 688,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "signature",
"kind": 16384,
@@ -13555,7 +13555,7 @@
],
"parameters": [
{
- "id": 687,
+ "id": 689,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -13568,7 +13568,7 @@
],
"type": {
"type": "reference",
- "target": 684,
+ "target": 686,
"name": "NavigatorLockAcquireTimeoutError",
"package": "@supabase/auth-js"
},
@@ -13586,7 +13586,7 @@
}
},
{
- "id": 688,
+ "id": 690,
"name": "isAcquireTimeout",
"variant": "declaration",
"kind": 1024,
@@ -13616,11 +13616,11 @@
"groups": [
{
"title": "Constructors",
- "children": [685]
+ "children": [687]
},
{
"title": "Properties",
- "children": [688]
+ "children": [690]
}
],
"sources": [
@@ -13915,7 +13915,7 @@
]
},
{
- "id": 1620,
+ "id": 1637,
"name": "RealtimeChannel",
"variant": "declaration",
"kind": 128,
@@ -13930,7 +13930,7 @@
},
"children": [
{
- "id": 1621,
+ "id": 1638,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -13944,7 +13944,7 @@
],
"signatures": [
{
- "id": 1622,
+ "id": 1639,
"name": "RealtimeChannel",
"variant": "signature",
"kind": 16384,
@@ -13977,7 +13977,7 @@
],
"parameters": [
{
- "id": 1623,
+ "id": 1640,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -13996,7 +13996,7 @@
}
},
{
- "id": 1624,
+ "id": 1641,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -14010,7 +14010,7 @@
},
{
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -14018,14 +14018,14 @@
}
},
{
- "id": 1625,
+ "id": 1642,
"name": "socket",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14034,7 +14034,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -14043,7 +14043,7 @@
]
},
{
- "id": 1629,
+ "id": 1646,
"name": "bindings",
"variant": "declaration",
"kind": 1024,
@@ -14058,7 +14058,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1630,
+ "id": 1647,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14072,7 +14072,7 @@
],
"indexSignatures": [
{
- "id": 1631,
+ "id": 1648,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14086,7 +14086,7 @@
],
"parameters": [
{
- "id": 1632,
+ "id": 1649,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14102,14 +14102,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 1633,
+ "id": 1650,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1639,
+ "id": 1656,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -14132,7 +14132,7 @@
}
},
{
- "id": 1635,
+ "id": 1652,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -14147,7 +14147,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1636,
+ "id": 1653,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14161,7 +14161,7 @@
],
"indexSignatures": [
{
- "id": 1637,
+ "id": 1654,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -14175,7 +14175,7 @@
],
"parameters": [
{
- "id": 1638,
+ "id": 1655,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -14196,7 +14196,7 @@
}
},
{
- "id": 1640,
+ "id": 1657,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -14216,7 +14216,7 @@
}
},
{
- "id": 1634,
+ "id": 1651,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -14237,7 +14237,7 @@
"groups": [
{
"title": "Properties",
- "children": [1639, 1635, 1640, 1634]
+ "children": [1656, 1652, 1657, 1651]
}
],
"sources": [
@@ -14256,7 +14256,7 @@
}
},
{
- "id": 1648,
+ "id": 1665,
"name": "broadcastEndpointURL",
"variant": "declaration",
"kind": 1024,
@@ -14274,7 +14274,7 @@
}
},
{
- "id": 1643,
+ "id": 1660,
"name": "joinedOnce",
"variant": "declaration",
"kind": 1024,
@@ -14292,7 +14292,7 @@
}
},
{
- "id": 1644,
+ "id": 1661,
"name": "joinPush",
"variant": "declaration",
"kind": 1024,
@@ -14316,7 +14316,7 @@
}
},
{
- "id": 1627,
+ "id": 1644,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -14330,13 +14330,13 @@
],
"type": {
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1647,
+ "id": 1664,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -14350,14 +14350,14 @@
],
"type": {
"type": "reference",
- "target": 1603,
+ "target": 1620,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1650,
+ "id": 1667,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -14375,7 +14375,7 @@
}
},
{
- "id": 1646,
+ "id": 1663,
"name": "pushBuffer",
"variant": "declaration",
"kind": 1024,
@@ -14402,7 +14402,7 @@
}
},
{
- "id": 1645,
+ "id": 1662,
"name": "rejoinTimer",
"variant": "declaration",
"kind": 1024,
@@ -14426,7 +14426,7 @@
}
},
{
- "id": 1628,
+ "id": 1645,
"name": "socket",
"variant": "declaration",
"kind": 1024,
@@ -14440,14 +14440,14 @@
],
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1642,
+ "id": 1659,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -14470,7 +14470,7 @@
}
},
{
- "id": 1649,
+ "id": 1666,
"name": "subTopic",
"variant": "declaration",
"kind": 1024,
@@ -14488,7 +14488,7 @@
}
},
{
- "id": 1641,
+ "id": 1658,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -14506,7 +14506,7 @@
}
},
{
- "id": 1626,
+ "id": 1643,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -14532,7 +14532,7 @@
}
},
{
- "id": 1877,
+ "id": 1894,
"name": "httpSend",
"variant": "declaration",
"kind": 2048,
@@ -14546,7 +14546,7 @@
],
"signatures": [
{
- "id": 1878,
+ "id": 1895,
"name": "httpSend",
"variant": "signature",
"kind": 4096,
@@ -14579,7 +14579,7 @@
],
"parameters": [
{
- "id": 1879,
+ "id": 1896,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -14598,7 +14598,7 @@
}
},
{
- "id": 1880,
+ "id": 1897,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -14617,7 +14617,7 @@
}
},
{
- "id": 1881,
+ "id": 1898,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -14635,14 +14635,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1882,
+ "id": 1899,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1883,
+ "id": 1900,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -14665,7 +14665,7 @@
"groups": [
{
"title": "Properties",
- "children": [1883]
+ "children": [1900]
}
],
"sources": [
@@ -14692,14 +14692,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1884,
+ "id": 1901,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1885,
+ "id": 1902,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -14720,7 +14720,7 @@
"groups": [
{
"title": "Properties",
- "children": [1885]
+ "children": [1902]
}
],
"sources": [
@@ -14735,14 +14735,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1886,
+ "id": 1903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1889,
+ "id": 1906,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -14760,7 +14760,7 @@
}
},
{
- "id": 1888,
+ "id": 1905,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -14778,7 +14778,7 @@
}
},
{
- "id": 1887,
+ "id": 1904,
"name": "success",
"variant": "declaration",
"kind": 1024,
@@ -14799,7 +14799,7 @@
"groups": [
{
"title": "Properties",
- "children": [1889, 1888, 1887]
+ "children": [1906, 1905, 1904]
}
],
"sources": [
@@ -14821,7 +14821,7 @@
]
},
{
- "id": 1682,
+ "id": 1699,
"name": "on",
"variant": "declaration",
"kind": 2048,
@@ -14900,7 +14900,7 @@
],
"signatures": [
{
- "id": 1683,
+ "id": 1700,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -14922,7 +14922,7 @@
],
"parameters": [
{
- "id": 1684,
+ "id": 1701,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -14933,7 +14933,7 @@
}
},
{
- "id": 1685,
+ "id": 1702,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -14941,14 +14941,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1686,
+ "id": 1703,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1687,
+ "id": 1704,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -14969,7 +14969,7 @@
"groups": [
{
"title": "Properties",
- "children": [1687]
+ "children": [1704]
}
],
"sources": [
@@ -14983,7 +14983,7 @@
}
},
{
- "id": 1688,
+ "id": 1705,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -14991,7 +14991,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1689,
+ "id": 1706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15005,7 +15005,7 @@
],
"signatures": [
{
- "id": 1690,
+ "id": 1707,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15029,14 +15029,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1691,
+ "id": 1708,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15058,7 +15058,7 @@
],
"typeParameters": [
{
- "id": 1692,
+ "id": 1709,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15066,7 +15066,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1693,
+ "id": 1710,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15080,7 +15080,7 @@
],
"indexSignatures": [
{
- "id": 1694,
+ "id": 1711,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15094,7 +15094,7 @@
],
"parameters": [
{
- "id": 1695,
+ "id": 1712,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15117,7 +15117,7 @@
],
"parameters": [
{
- "id": 1696,
+ "id": 1713,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15128,7 +15128,7 @@
}
},
{
- "id": 1697,
+ "id": 1714,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15136,14 +15136,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1698,
+ "id": 1715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1699,
+ "id": 1716,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15164,7 +15164,7 @@
"groups": [
{
"title": "Properties",
- "children": [1699]
+ "children": [1716]
}
],
"sources": [
@@ -15178,7 +15178,7 @@
}
},
{
- "id": 1700,
+ "id": 1717,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15186,7 +15186,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1701,
+ "id": 1718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15200,7 +15200,7 @@
],
"signatures": [
{
- "id": 1702,
+ "id": 1719,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15214,18 +15214,18 @@
],
"parameters": [
{
- "id": 1703,
+ "id": 1720,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2117,
+ "target": 2134,
"typeArguments": [
{
"type": "reference",
- "target": 1692,
+ "target": 1709,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15248,14 +15248,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1704,
+ "id": 1721,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15277,7 +15277,7 @@
],
"typeParameters": [
{
- "id": 1705,
+ "id": 1722,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15285,7 +15285,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1706,
+ "id": 1723,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15299,7 +15299,7 @@
],
"indexSignatures": [
{
- "id": 1707,
+ "id": 1724,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15313,7 +15313,7 @@
],
"parameters": [
{
- "id": 1708,
+ "id": 1725,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15336,7 +15336,7 @@
],
"parameters": [
{
- "id": 1709,
+ "id": 1726,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15347,7 +15347,7 @@
}
},
{
- "id": 1710,
+ "id": 1727,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -15355,14 +15355,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1711,
+ "id": 1728,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1712,
+ "id": 1729,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -15383,7 +15383,7 @@
"groups": [
{
"title": "Properties",
- "children": [1712]
+ "children": [1729]
}
],
"sources": [
@@ -15397,7 +15397,7 @@
}
},
{
- "id": 1713,
+ "id": 1730,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15405,7 +15405,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1714,
+ "id": 1731,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15419,7 +15419,7 @@
],
"signatures": [
{
- "id": 1715,
+ "id": 1732,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15433,18 +15433,18 @@
],
"parameters": [
{
- "id": 1716,
+ "id": 1733,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2127,
+ "target": 2144,
"typeArguments": [
{
"type": "reference",
- "target": 1705,
+ "target": 1722,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15467,14 +15467,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1717,
+ "id": 1734,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15496,7 +15496,7 @@
],
"typeParameters": [
{
- "id": 1718,
+ "id": 1735,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15504,7 +15504,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1719,
+ "id": 1736,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15518,7 +15518,7 @@
],
"indexSignatures": [
{
- "id": 1720,
+ "id": 1737,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15532,7 +15532,7 @@
],
"parameters": [
{
- "id": 1721,
+ "id": 1738,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15555,7 +15555,7 @@
],
"parameters": [
{
- "id": 1722,
+ "id": 1739,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15566,14 +15566,14 @@
}
},
{
- "id": 1723,
+ "id": 1740,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -15585,7 +15585,7 @@
}
},
{
- "id": 1724,
+ "id": 1741,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15593,7 +15593,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1725,
+ "id": 1742,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15607,7 +15607,7 @@
],
"signatures": [
{
- "id": 1726,
+ "id": 1743,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15621,18 +15621,18 @@
],
"parameters": [
{
- "id": 1727,
+ "id": 1744,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2083,
+ "target": 2100,
"typeArguments": [
{
"type": "reference",
- "target": 1718,
+ "target": 1735,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15655,14 +15655,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1728,
+ "id": 1745,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15684,7 +15684,7 @@
],
"typeParameters": [
{
- "id": 1729,
+ "id": 1746,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15692,7 +15692,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1730,
+ "id": 1747,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15706,7 +15706,7 @@
],
"indexSignatures": [
{
- "id": 1731,
+ "id": 1748,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15720,7 +15720,7 @@
],
"parameters": [
{
- "id": 1732,
+ "id": 1749,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15743,7 +15743,7 @@
],
"parameters": [
{
- "id": 1733,
+ "id": 1750,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15754,14 +15754,14 @@
}
},
{
- "id": 1734,
+ "id": 1751,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -15773,7 +15773,7 @@
}
},
{
- "id": 1735,
+ "id": 1752,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15781,7 +15781,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1736,
+ "id": 1753,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15795,7 +15795,7 @@
],
"signatures": [
{
- "id": 1737,
+ "id": 1754,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15809,18 +15809,18 @@
],
"parameters": [
{
- "id": 1738,
+ "id": 1755,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2088,
+ "target": 2105,
"typeArguments": [
{
"type": "reference",
- "target": 1729,
+ "target": 1746,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -15843,14 +15843,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1739,
+ "id": 1756,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -15872,7 +15872,7 @@
],
"typeParameters": [
{
- "id": 1740,
+ "id": 1757,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -15880,7 +15880,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1741,
+ "id": 1758,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15894,7 +15894,7 @@
],
"indexSignatures": [
{
- "id": 1742,
+ "id": 1759,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -15908,7 +15908,7 @@
],
"parameters": [
{
- "id": 1743,
+ "id": 1760,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -15931,7 +15931,7 @@
],
"parameters": [
{
- "id": 1744,
+ "id": 1761,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -15942,14 +15942,14 @@
}
},
{
- "id": 1745,
+ "id": 1762,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -15961,7 +15961,7 @@
}
},
{
- "id": 1746,
+ "id": 1763,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -15969,7 +15969,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1747,
+ "id": 1764,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15983,7 +15983,7 @@
],
"signatures": [
{
- "id": 1748,
+ "id": 1765,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -15997,18 +15997,18 @@
],
"parameters": [
{
- "id": 1749,
+ "id": 1766,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2098,
+ "target": 2115,
"typeArguments": [
{
"type": "reference",
- "target": 1740,
+ "target": 1757,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16031,14 +16031,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1750,
+ "id": 1767,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16060,7 +16060,7 @@
],
"typeParameters": [
{
- "id": 1751,
+ "id": 1768,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16068,7 +16068,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1752,
+ "id": 1769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16082,7 +16082,7 @@
],
"indexSignatures": [
{
- "id": 1753,
+ "id": 1770,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16096,7 +16096,7 @@
],
"parameters": [
{
- "id": 1754,
+ "id": 1771,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16119,7 +16119,7 @@
],
"parameters": [
{
- "id": 1755,
+ "id": 1772,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16130,14 +16130,14 @@
}
},
{
- "id": 1756,
+ "id": 1773,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2076,
+ "target": 2093,
"typeArguments": [
{
"type": "literal",
@@ -16149,7 +16149,7 @@
}
},
{
- "id": 1757,
+ "id": 1774,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16157,7 +16157,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1758,
+ "id": 1775,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16171,7 +16171,7 @@
],
"signatures": [
{
- "id": 1759,
+ "id": 1776,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16185,18 +16185,18 @@
],
"parameters": [
{
- "id": 1760,
+ "id": 1777,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2107,
+ "target": 2124,
"typeArguments": [
{
"type": "reference",
- "target": 1751,
+ "target": 1768,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -16219,14 +16219,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1761,
+ "id": 1778,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16248,7 +16248,7 @@
],
"parameters": [
{
- "id": 1762,
+ "id": 1779,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16267,7 +16267,7 @@
}
},
{
- "id": 1763,
+ "id": 1780,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -16283,14 +16283,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1764,
+ "id": 1781,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1765,
+ "id": 1782,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16311,7 +16311,7 @@
"groups": [
{
"title": "Properties",
- "children": [1765]
+ "children": [1782]
}
],
"sources": [
@@ -16325,7 +16325,7 @@
}
},
{
- "id": 1766,
+ "id": 1783,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16341,7 +16341,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1767,
+ "id": 1784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16355,7 +16355,7 @@
],
"signatures": [
{
- "id": 1768,
+ "id": 1785,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16369,7 +16369,7 @@
],
"parameters": [
{
- "id": 1769,
+ "id": 1786,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -16377,14 +16377,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1770,
+ "id": 1787,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1772,
+ "id": 1789,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16402,7 +16402,7 @@
}
},
{
- "id": 1773,
+ "id": 1790,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -16419,14 +16419,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1774,
+ "id": 1791,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1776,
+ "id": 1793,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16444,7 +16444,7 @@
}
},
{
- "id": 1775,
+ "id": 1792,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -16467,7 +16467,7 @@
"groups": [
{
"title": "Properties",
- "children": [1776, 1775]
+ "children": [1793, 1792]
}
],
"sources": [
@@ -16481,7 +16481,7 @@
}
},
{
- "id": 1771,
+ "id": 1788,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -16502,7 +16502,7 @@
"groups": [
{
"title": "Properties",
- "children": [1772, 1773, 1771]
+ "children": [1789, 1790, 1788]
}
],
"sources": [
@@ -16514,7 +16514,7 @@
],
"indexSignatures": [
{
- "id": 1777,
+ "id": 1794,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16528,7 +16528,7 @@
],
"parameters": [
{
- "id": 1778,
+ "id": 1795,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16561,14 +16561,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1779,
+ "id": 1796,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16590,7 +16590,7 @@
],
"typeParameters": [
{
- "id": 1780,
+ "id": 1797,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16598,7 +16598,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1781,
+ "id": 1798,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16612,7 +16612,7 @@
],
"indexSignatures": [
{
- "id": 1782,
+ "id": 1799,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -16626,7 +16626,7 @@
],
"parameters": [
{
- "id": 1783,
+ "id": 1800,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -16649,7 +16649,7 @@
],
"parameters": [
{
- "id": 1784,
+ "id": 1801,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16660,7 +16660,7 @@
}
},
{
- "id": 1785,
+ "id": 1802,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -16668,14 +16668,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1786,
+ "id": 1803,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1787,
+ "id": 1804,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16696,7 +16696,7 @@
"groups": [
{
"title": "Properties",
- "children": [1787]
+ "children": [1804]
}
],
"sources": [
@@ -16710,7 +16710,7 @@
}
},
{
- "id": 1788,
+ "id": 1805,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -16718,7 +16718,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1789,
+ "id": 1806,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -16732,7 +16732,7 @@
],
"signatures": [
{
- "id": 1790,
+ "id": 1807,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -16746,7 +16746,7 @@
],
"parameters": [
{
- "id": 1791,
+ "id": 1808,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -16754,14 +16754,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1792,
+ "id": 1809,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1794,
+ "id": 1811,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -16779,7 +16779,7 @@
}
},
{
- "id": 1795,
+ "id": 1812,
"name": "meta",
"variant": "declaration",
"kind": 1024,
@@ -16796,14 +16796,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1796,
+ "id": 1813,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1798,
+ "id": 1815,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16821,7 +16821,7 @@
}
},
{
- "id": 1797,
+ "id": 1814,
"name": "replayed",
"variant": "declaration",
"kind": 1024,
@@ -16844,7 +16844,7 @@
"groups": [
{
"title": "Properties",
- "children": [1798, 1797]
+ "children": [1815, 1814]
}
],
"sources": [
@@ -16858,7 +16858,7 @@
}
},
{
- "id": 1799,
+ "id": 1816,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -16872,14 +16872,14 @@
],
"type": {
"type": "reference",
- "target": 1780,
+ "target": 1797,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 1793,
+ "id": 1810,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -16900,7 +16900,7 @@
"groups": [
{
"title": "Properties",
- "children": [1794, 1795, 1799, 1793]
+ "children": [1811, 1812, 1816, 1810]
}
],
"sources": [
@@ -16926,14 +16926,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1800,
+ "id": 1817,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -16955,7 +16955,7 @@
],
"typeParameters": [
{
- "id": 1801,
+ "id": 1818,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -16983,7 +16983,7 @@
],
"parameters": [
{
- "id": 1802,
+ "id": 1819,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -16994,7 +16994,7 @@
}
},
{
- "id": 1803,
+ "id": 1820,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17002,14 +17002,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1804,
+ "id": 1821,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1805,
+ "id": 1822,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17023,7 +17023,7 @@
],
"type": {
"type": "reference",
- "target": 2153,
+ "target": 2170,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
@@ -17033,7 +17033,7 @@
"groups": [
{
"title": "Properties",
- "children": [1805]
+ "children": [1822]
}
],
"sources": [
@@ -17047,7 +17047,7 @@
}
},
{
- "id": 1806,
+ "id": 1823,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17055,7 +17055,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1807,
+ "id": 1824,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17069,7 +17069,7 @@
],
"signatures": [
{
- "id": 1808,
+ "id": 1825,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17083,7 +17083,7 @@
],
"parameters": [
{
- "id": 1809,
+ "id": 1826,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17091,14 +17091,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1810,
+ "id": 1827,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1812,
+ "id": 1829,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17112,14 +17112,14 @@
],
"type": {
"type": "reference",
- "target": 2153,
+ "target": 2170,
"name": "ALL",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
}
},
{
- "id": 1813,
+ "id": 1830,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17140,7 +17140,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1801,
+ "target": 1818,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17151,7 +17151,7 @@
}
},
{
- "id": 1811,
+ "id": 1828,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17172,7 +17172,7 @@
"groups": [
{
"title": "Properties",
- "children": [1812, 1813, 1811]
+ "children": [1829, 1830, 1828]
}
],
"sources": [
@@ -17198,14 +17198,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1814,
+ "id": 1831,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17227,7 +17227,7 @@
],
"typeParameters": [
{
- "id": 1815,
+ "id": 1832,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17235,7 +17235,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1816,
+ "id": 1833,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17249,7 +17249,7 @@
],
"indexSignatures": [
{
- "id": 1817,
+ "id": 1834,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17263,7 +17263,7 @@
],
"parameters": [
{
- "id": 1818,
+ "id": 1835,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17286,7 +17286,7 @@
],
"parameters": [
{
- "id": 1819,
+ "id": 1836,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17297,7 +17297,7 @@
}
},
{
- "id": 1820,
+ "id": 1837,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17305,14 +17305,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1821,
+ "id": 1838,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1822,
+ "id": 1839,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17326,7 +17326,7 @@
],
"type": {
"type": "reference",
- "target": 2154,
+ "target": 2171,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
@@ -17336,7 +17336,7 @@
"groups": [
{
"title": "Properties",
- "children": [1822]
+ "children": [1839]
}
],
"sources": [
@@ -17350,7 +17350,7 @@
}
},
{
- "id": 1823,
+ "id": 1840,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17358,7 +17358,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1824,
+ "id": 1841,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17372,7 +17372,7 @@
],
"signatures": [
{
- "id": 1825,
+ "id": 1842,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17386,7 +17386,7 @@
],
"parameters": [
{
- "id": 1826,
+ "id": 1843,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17394,14 +17394,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1827,
+ "id": 1844,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1829,
+ "id": 1846,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17415,14 +17415,14 @@
],
"type": {
"type": "reference",
- "target": 2154,
+ "target": 2171,
"name": "INSERT",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
}
},
{
- "id": 1830,
+ "id": 1847,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17443,7 +17443,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1815,
+ "target": 1832,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17454,7 +17454,7 @@
}
},
{
- "id": 1828,
+ "id": 1845,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17475,7 +17475,7 @@
"groups": [
{
"title": "Properties",
- "children": [1829, 1830, 1828]
+ "children": [1846, 1847, 1845]
}
],
"sources": [
@@ -17501,14 +17501,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1831,
+ "id": 1848,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17530,7 +17530,7 @@
],
"typeParameters": [
{
- "id": 1832,
+ "id": 1849,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17538,7 +17538,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1833,
+ "id": 1850,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17552,7 +17552,7 @@
],
"indexSignatures": [
{
- "id": 1834,
+ "id": 1851,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17566,7 +17566,7 @@
],
"parameters": [
{
- "id": 1835,
+ "id": 1852,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17589,7 +17589,7 @@
],
"parameters": [
{
- "id": 1836,
+ "id": 1853,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17600,7 +17600,7 @@
}
},
{
- "id": 1837,
+ "id": 1854,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17608,14 +17608,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1838,
+ "id": 1855,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1839,
+ "id": 1856,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17629,7 +17629,7 @@
],
"type": {
"type": "reference",
- "target": 2155,
+ "target": 2172,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
@@ -17639,7 +17639,7 @@
"groups": [
{
"title": "Properties",
- "children": [1839]
+ "children": [1856]
}
],
"sources": [
@@ -17653,7 +17653,7 @@
}
},
{
- "id": 1840,
+ "id": 1857,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17661,7 +17661,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1841,
+ "id": 1858,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17675,7 +17675,7 @@
],
"signatures": [
{
- "id": 1842,
+ "id": 1859,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17689,7 +17689,7 @@
],
"parameters": [
{
- "id": 1843,
+ "id": 1860,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -17697,14 +17697,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1844,
+ "id": 1861,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1846,
+ "id": 1863,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17718,14 +17718,14 @@
],
"type": {
"type": "reference",
- "target": 2155,
+ "target": 2172,
"name": "UPDATE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
}
},
{
- "id": 1847,
+ "id": 1864,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -17746,7 +17746,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1832,
+ "target": 1849,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -17757,7 +17757,7 @@
}
},
{
- "id": 1845,
+ "id": 1862,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17778,7 +17778,7 @@
"groups": [
{
"title": "Properties",
- "children": [1846, 1847, 1845]
+ "children": [1863, 1864, 1862]
}
],
"sources": [
@@ -17804,14 +17804,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1848,
+ "id": 1865,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -17833,7 +17833,7 @@
],
"typeParameters": [
{
- "id": 1849,
+ "id": 1866,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -17841,7 +17841,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1850,
+ "id": 1867,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17855,7 +17855,7 @@
],
"indexSignatures": [
{
- "id": 1851,
+ "id": 1868,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -17869,7 +17869,7 @@
],
"parameters": [
{
- "id": 1852,
+ "id": 1869,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -17892,7 +17892,7 @@
],
"parameters": [
{
- "id": 1853,
+ "id": 1870,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -17903,7 +17903,7 @@
}
},
{
- "id": 1854,
+ "id": 1871,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -17911,14 +17911,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1855,
+ "id": 1872,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1856,
+ "id": 1873,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -17932,7 +17932,7 @@
],
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2173,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
@@ -17942,7 +17942,7 @@
"groups": [
{
"title": "Properties",
- "children": [1856]
+ "children": [1873]
}
],
"sources": [
@@ -17956,7 +17956,7 @@
}
},
{
- "id": 1857,
+ "id": 1874,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -17964,7 +17964,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1858,
+ "id": 1875,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -17978,7 +17978,7 @@
],
"signatures": [
{
- "id": 1859,
+ "id": 1876,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -17992,7 +17992,7 @@
],
"parameters": [
{
- "id": 1860,
+ "id": 1877,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18000,14 +18000,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1861,
+ "id": 1878,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1863,
+ "id": 1880,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18021,14 +18021,14 @@
],
"type": {
"type": "reference",
- "target": 2156,
+ "target": 2173,
"name": "DELETE",
"package": "@supabase/realtime-js",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
}
},
{
- "id": 1864,
+ "id": 1881,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18049,7 +18049,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1849,
+ "target": 1866,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18060,7 +18060,7 @@
}
},
{
- "id": 1862,
+ "id": 1879,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18081,7 +18081,7 @@
"groups": [
{
"title": "Properties",
- "children": [1863, 1864, 1862]
+ "children": [1880, 1881, 1879]
}
],
"sources": [
@@ -18107,14 +18107,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1865,
+ "id": 1882,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -18136,7 +18136,7 @@
],
"typeParameters": [
{
- "id": 1866,
+ "id": 1883,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18144,7 +18144,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1867,
+ "id": 1884,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18158,7 +18158,7 @@
],
"indexSignatures": [
{
- "id": 1868,
+ "id": 1885,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18172,7 +18172,7 @@
],
"parameters": [
{
- "id": 1869,
+ "id": 1886,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18195,7 +18195,7 @@
],
"parameters": [
{
- "id": 1870,
+ "id": 1887,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -18206,7 +18206,7 @@
}
},
{
- "id": 1871,
+ "id": 1888,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -18214,7 +18214,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1872,
+ "id": 1889,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18223,7 +18223,7 @@
}
},
{
- "id": 1873,
+ "id": 1890,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18231,7 +18231,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1874,
+ "id": 1891,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18245,7 +18245,7 @@
],
"signatures": [
{
- "id": 1875,
+ "id": 1892,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18259,7 +18259,7 @@
],
"parameters": [
{
- "id": 1876,
+ "id": 1893,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18282,7 +18282,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -18291,7 +18291,7 @@
]
},
{
- "id": 1659,
+ "id": 1676,
"name": "presenceState",
"variant": "declaration",
"kind": 2048,
@@ -18305,7 +18305,7 @@
],
"signatures": [
{
- "id": 1660,
+ "id": 1677,
"name": "presenceState",
"variant": "signature",
"kind": 4096,
@@ -18327,7 +18327,7 @@
],
"typeParameters": [
{
- "id": 1661,
+ "id": 1678,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -18335,7 +18335,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1662,
+ "id": 1679,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18349,7 +18349,7 @@
],
"indexSignatures": [
{
- "id": 1663,
+ "id": 1680,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18363,7 +18363,7 @@
],
"parameters": [
{
- "id": 1664,
+ "id": 1681,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18385,7 +18385,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 1665,
+ "id": 1682,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18396,11 +18396,11 @@
],
"type": {
"type": "reference",
- "target": 2137,
+ "target": 2154,
"typeArguments": [
{
"type": "reference",
- "target": 1661,
+ "target": 1678,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -18413,7 +18413,7 @@
]
},
{
- "id": 1890,
+ "id": 1907,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -18427,7 +18427,7 @@
],
"signatures": [
{
- "id": 1891,
+ "id": 1908,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -18449,7 +18449,7 @@
],
"parameters": [
{
- "id": 1892,
+ "id": 1909,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -18465,14 +18465,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1893,
+ "id": 1910,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1895,
+ "id": 1912,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -18498,7 +18498,7 @@
}
},
{
- "id": 1896,
+ "id": 1913,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -18526,7 +18526,7 @@
}
},
{
- "id": 1894,
+ "id": 1911,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18568,7 +18568,7 @@
"groups": [
{
"title": "Properties",
- "children": [1895, 1896, 1894]
+ "children": [1912, 1913, 1911]
}
],
"sources": [
@@ -18580,7 +18580,7 @@
],
"indexSignatures": [
{
- "id": 1897,
+ "id": 1914,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18594,7 +18594,7 @@
],
"parameters": [
{
- "id": 1898,
+ "id": 1915,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18615,7 +18615,7 @@
}
},
{
- "id": 1899,
+ "id": 1916,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -18633,7 +18633,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1900,
+ "id": 1917,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18647,7 +18647,7 @@
],
"indexSignatures": [
{
- "id": 1901,
+ "id": 1918,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18661,7 +18661,7 @@
],
"parameters": [
{
- "id": 1902,
+ "id": 1919,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18691,7 +18691,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1928,
+ "target": 1945,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -18703,7 +18703,7 @@
]
},
{
- "id": 1651,
+ "id": 1668,
"name": "subscribe",
"variant": "declaration",
"kind": 2048,
@@ -18717,7 +18717,7 @@
],
"signatures": [
{
- "id": 1652,
+ "id": 1669,
"name": "subscribe",
"variant": "signature",
"kind": 4096,
@@ -18739,7 +18739,7 @@
],
"parameters": [
{
- "id": 1653,
+ "id": 1670,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -18749,7 +18749,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1654,
+ "id": 1671,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18763,7 +18763,7 @@
],
"signatures": [
{
- "id": 1655,
+ "id": 1672,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -18777,20 +18777,20 @@
],
"parameters": [
{
- "id": 1656,
+ "id": 1673,
"name": "status",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2161,
+ "target": 2178,
"name": "REALTIME_SUBSCRIBE_STATES",
"package": "@supabase/realtime-js"
}
},
{
- "id": 1657,
+ "id": 1674,
"name": "err",
"variant": "param",
"kind": 32768,
@@ -18818,7 +18818,7 @@
}
},
{
- "id": 1658,
+ "id": 1675,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -18833,7 +18833,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -18842,7 +18842,7 @@
]
},
{
- "id": 1912,
+ "id": 1929,
"name": "teardown",
"variant": "declaration",
"kind": 2048,
@@ -18856,7 +18856,7 @@
],
"signatures": [
{
- "id": 1913,
+ "id": 1930,
"name": "teardown",
"variant": "signature",
"kind": 4096,
@@ -18884,7 +18884,7 @@
]
},
{
- "id": 1666,
+ "id": 1683,
"name": "track",
"variant": "declaration",
"kind": 2048,
@@ -18898,7 +18898,7 @@
],
"signatures": [
{
- "id": 1667,
+ "id": 1684,
"name": "track",
"variant": "signature",
"kind": 4096,
@@ -18928,7 +18928,7 @@
],
"parameters": [
{
- "id": 1668,
+ "id": 1685,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -18936,7 +18936,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1669,
+ "id": 1686,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -18950,7 +18950,7 @@
],
"indexSignatures": [
{
- "id": 1670,
+ "id": 1687,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -18964,7 +18964,7 @@
],
"parameters": [
{
- "id": 1671,
+ "id": 1688,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -18985,7 +18985,7 @@
}
},
{
- "id": 1672,
+ "id": 1689,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -18995,7 +18995,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1673,
+ "id": 1690,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19009,7 +19009,7 @@
],
"indexSignatures": [
{
- "id": 1674,
+ "id": 1691,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19023,7 +19023,7 @@
],
"parameters": [
{
- "id": 1675,
+ "id": 1692,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19053,7 +19053,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1928,
+ "target": 1945,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19065,7 +19065,7 @@
]
},
{
- "id": 1909,
+ "id": 1926,
"name": "unsubscribe",
"variant": "declaration",
"kind": 2048,
@@ -19079,7 +19079,7 @@
],
"signatures": [
{
- "id": 1910,
+ "id": 1927,
"name": "unsubscribe",
"variant": "signature",
"kind": 4096,
@@ -19109,7 +19109,7 @@
],
"parameters": [
{
- "id": 1911,
+ "id": 1928,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -19154,7 +19154,7 @@
]
},
{
- "id": 1676,
+ "id": 1693,
"name": "untrack",
"variant": "declaration",
"kind": 2048,
@@ -19168,7 +19168,7 @@
],
"signatures": [
{
- "id": 1677,
+ "id": 1694,
"name": "untrack",
"variant": "signature",
"kind": 4096,
@@ -19190,7 +19190,7 @@
],
"parameters": [
{
- "id": 1678,
+ "id": 1695,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -19200,7 +19200,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1679,
+ "id": 1696,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19214,7 +19214,7 @@
],
"indexSignatures": [
{
- "id": 1680,
+ "id": 1697,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19228,7 +19228,7 @@
],
"parameters": [
{
- "id": 1681,
+ "id": 1698,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19258,7 +19258,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1928,
+ "target": 1945,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -19270,7 +19270,7 @@
]
},
{
- "id": 1903,
+ "id": 1920,
"name": "updateJoinPayload",
"variant": "declaration",
"kind": 2048,
@@ -19284,7 +19284,7 @@
],
"signatures": [
{
- "id": 1904,
+ "id": 1921,
"name": "updateJoinPayload",
"variant": "signature",
"kind": 4096,
@@ -19306,7 +19306,7 @@
],
"parameters": [
{
- "id": 1905,
+ "id": 1922,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -19314,7 +19314,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1906,
+ "id": 1923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19328,7 +19328,7 @@
],
"indexSignatures": [
{
- "id": 1907,
+ "id": 1924,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -19342,7 +19342,7 @@
],
"parameters": [
{
- "id": 1908,
+ "id": 1925,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -19374,17 +19374,17 @@
"groups": [
{
"title": "Constructors",
- "children": [1621]
+ "children": [1638]
},
{
"title": "Properties",
"children": [
- 1629, 1648, 1643, 1644, 1627, 1647, 1650, 1646, 1645, 1628, 1642, 1649, 1641, 1626
+ 1646, 1665, 1660, 1661, 1644, 1664, 1667, 1663, 1662, 1645, 1659, 1666, 1658, 1643
]
},
{
"title": "Methods",
- "children": [1877, 1682, 1659, 1890, 1651, 1912, 1666, 1909, 1676, 1903]
+ "children": [1894, 1699, 1676, 1907, 1668, 1929, 1683, 1926, 1693, 1920]
}
],
"sources": [
@@ -19396,14 +19396,14 @@
]
},
{
- "id": 1929,
+ "id": 1946,
"name": "RealtimeClient",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1930,
+ "id": 1947,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -19417,7 +19417,7 @@
],
"signatures": [
{
- "id": 1931,
+ "id": 1948,
"name": "RealtimeClient",
"variant": "signature",
"kind": 16384,
@@ -19450,7 +19450,7 @@
],
"parameters": [
{
- "id": 1932,
+ "id": 1949,
"name": "endPoint",
"variant": "param",
"kind": 32768,
@@ -19469,7 +19469,7 @@
}
},
{
- "id": 1933,
+ "id": 1950,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -19478,7 +19478,7 @@
},
"type": {
"type": "reference",
- "target": 2039,
+ "target": 2056,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js",
"highlightedProperties": {
@@ -19574,7 +19574,7 @@
],
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19583,7 +19583,7 @@
]
},
{
- "id": 1981,
+ "id": 1998,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -19605,7 +19605,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1982,
+ "id": 1999,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19619,7 +19619,7 @@
],
"signatures": [
{
- "id": 1983,
+ "id": 2000,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19663,7 +19663,7 @@
}
},
{
- "id": 1934,
+ "id": 1951,
"name": "accessTokenValue",
"variant": "declaration",
"kind": 1024,
@@ -19690,7 +19690,7 @@
}
},
{
- "id": 1935,
+ "id": 1952,
"name": "apiKey",
"variant": "declaration",
"kind": 1024,
@@ -19717,7 +19717,7 @@
}
},
{
- "id": 1936,
+ "id": 1953,
"name": "channels",
"variant": "declaration",
"kind": 1024,
@@ -19733,7 +19733,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -19741,7 +19741,7 @@
}
},
{
- "id": 1964,
+ "id": 1981,
"name": "conn",
"variant": "declaration",
"kind": 1024,
@@ -19762,7 +19762,7 @@
},
{
"type": "reference",
- "target": 2183,
+ "target": 2200,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -19770,7 +19770,7 @@
}
},
{
- "id": 1962,
+ "id": 1979,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -19793,7 +19793,7 @@
}
},
{
- "id": 1961,
+ "id": 1978,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -19816,7 +19816,7 @@
}
},
{
- "id": 1937,
+ "id": 1954,
"name": "endPoint",
"variant": "declaration",
"kind": 1024,
@@ -19834,7 +19834,7 @@
}
},
{
- "id": 1973,
+ "id": 1990,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -19849,7 +19849,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1974,
+ "id": 1991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -19868,7 +19868,7 @@
],
"signatures": [
{
- "id": 1975,
+ "id": 1992,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19890,7 +19890,7 @@
],
"parameters": [
{
- "id": 1976,
+ "id": 1993,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -19920,7 +19920,7 @@
}
},
{
- "id": 1977,
+ "id": 1994,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -19960,7 +19960,7 @@
}
},
{
- "id": 1978,
+ "id": 1995,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -19982,7 +19982,7 @@
],
"parameters": [
{
- "id": 1979,
+ "id": 1996,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -20016,7 +20016,7 @@
}
},
{
- "id": 1980,
+ "id": 1997,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -20060,7 +20060,7 @@
}
},
{
- "id": 1939,
+ "id": 1956,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -20091,7 +20091,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1940,
+ "id": 1957,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20105,7 +20105,7 @@
],
"indexSignatures": [
{
- "id": 1941,
+ "id": 1958,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20119,7 +20119,7 @@
],
"parameters": [
{
- "id": 1942,
+ "id": 1959,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20140,7 +20140,7 @@
}
},
{
- "id": 1952,
+ "id": 1969,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -20155,7 +20155,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1953,
+ "id": 1970,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20169,7 +20169,7 @@
],
"signatures": [
{
- "id": 1954,
+ "id": 1971,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -20183,7 +20183,7 @@
],
"parameters": [
{
- "id": 1955,
+ "id": 1972,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -20209,7 +20209,7 @@
}
},
{
- "id": 1949,
+ "id": 1966,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -20227,7 +20227,7 @@
}
},
{
- "id": 1950,
+ "id": 1967,
"name": "heartbeatTimer",
"variant": "declaration",
"kind": 1024,
@@ -20260,7 +20260,7 @@
}
},
{
- "id": 1938,
+ "id": 1955,
"name": "httpEndpoint",
"variant": "declaration",
"kind": 1024,
@@ -20278,7 +20278,7 @@
}
},
{
- "id": 1959,
+ "id": 1976,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -20301,7 +20301,7 @@
}
},
{
- "id": 1960,
+ "id": 1977,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -20326,7 +20326,7 @@
}
},
{
- "id": 1943,
+ "id": 1960,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -20343,7 +20343,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1944,
+ "id": 1961,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -20357,7 +20357,7 @@
],
"indexSignatures": [
{
- "id": 1945,
+ "id": 1962,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20371,7 +20371,7 @@
],
"parameters": [
{
- "id": 1946,
+ "id": 1963,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20392,7 +20392,7 @@
}
},
{
- "id": 1951,
+ "id": 1968,
"name": "pendingHeartbeatRef",
"variant": "declaration",
"kind": 1024,
@@ -20419,7 +20419,7 @@
}
},
{
- "id": 1963,
+ "id": 1980,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -20442,7 +20442,7 @@
}
},
{
- "id": 1957,
+ "id": 1974,
"name": "reconnectTimer",
"variant": "declaration",
"kind": 1024,
@@ -20475,7 +20475,7 @@
}
},
{
- "id": 1956,
+ "id": 1973,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -20493,7 +20493,7 @@
}
},
{
- "id": 1965,
+ "id": 1982,
"name": "sendBuffer",
"variant": "declaration",
"kind": 1024,
@@ -20519,7 +20519,7 @@
}
},
{
- "id": 1966,
+ "id": 1983,
"name": "serializer",
"variant": "declaration",
"kind": 1024,
@@ -20543,7 +20543,7 @@
}
},
{
- "id": 1967,
+ "id": 1984,
"name": "stateChangeCallbacks",
"variant": "declaration",
"kind": 1024,
@@ -20558,14 +20558,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1968,
+ "id": 1985,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1970,
+ "id": 1987,
"name": "close",
"variant": "declaration",
"kind": 1024,
@@ -20591,7 +20591,7 @@
}
},
{
- "id": 1971,
+ "id": 1988,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -20617,7 +20617,7 @@
}
},
{
- "id": 1972,
+ "id": 1989,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -20643,7 +20643,7 @@
}
},
{
- "id": 1969,
+ "id": 1986,
"name": "open",
"variant": "declaration",
"kind": 1024,
@@ -20672,7 +20672,7 @@
"groups": [
{
"title": "Properties",
- "children": [1970, 1971, 1972, 1969]
+ "children": [1987, 1988, 1989, 1986]
}
],
"sources": [
@@ -20686,7 +20686,7 @@
}
},
{
- "id": 1947,
+ "id": 1964,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -20704,7 +20704,7 @@
}
},
{
- "id": 1948,
+ "id": 1965,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -20725,7 +20725,7 @@
},
{
"type": "reference",
- "target": 2233,
+ "target": 2250,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
@@ -20733,7 +20733,7 @@
}
},
{
- "id": 1958,
+ "id": 1975,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -20751,7 +20751,7 @@
}
},
{
- "id": 1984,
+ "id": 2001,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -20771,7 +20771,7 @@
}
},
{
- "id": 1986,
+ "id": 2003,
"name": "workerRef",
"variant": "declaration",
"kind": 1024,
@@ -20796,7 +20796,7 @@
}
},
{
- "id": 1985,
+ "id": 2002,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -20816,7 +20816,7 @@
}
},
{
- "id": 2018,
+ "id": 2035,
"name": "channel",
"variant": "declaration",
"kind": 2048,
@@ -20830,7 +20830,7 @@
],
"signatures": [
{
- "id": 2019,
+ "id": 2036,
"name": "channel",
"variant": "signature",
"kind": 4096,
@@ -20845,7 +20845,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "RealtimeChannel",
- "target": 1620
+ "target": 1637
},
{
"kind": "text",
@@ -20870,7 +20870,7 @@
],
"parameters": [
{
- "id": 2020,
+ "id": 2037,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -20881,7 +20881,7 @@
}
},
{
- "id": 2021,
+ "id": 2038,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -20890,7 +20890,7 @@
},
"type": {
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
}
@@ -20898,7 +20898,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -20907,7 +20907,7 @@
]
},
{
- "id": 1990,
+ "id": 2007,
"name": "connect",
"variant": "declaration",
"kind": 2048,
@@ -20921,7 +20921,7 @@
],
"signatures": [
{
- "id": 1991,
+ "id": 2008,
"name": "connect",
"variant": "signature",
"kind": 4096,
@@ -20949,7 +20949,7 @@
]
},
{
- "id": 2010,
+ "id": 2027,
"name": "connectionState",
"variant": "declaration",
"kind": 2048,
@@ -20963,7 +20963,7 @@
],
"signatures": [
{
- "id": 2011,
+ "id": 2028,
"name": "connectionState",
"variant": "signature",
"kind": 4096,
@@ -20996,7 +20996,7 @@
]
},
{
- "id": 1994,
+ "id": 2011,
"name": "disconnect",
"variant": "declaration",
"kind": 2048,
@@ -21010,7 +21010,7 @@
],
"signatures": [
{
- "id": 1995,
+ "id": 2012,
"name": "disconnect",
"variant": "signature",
"kind": 4096,
@@ -21032,7 +21032,7 @@
],
"parameters": [
{
- "id": 1996,
+ "id": 2013,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -21053,7 +21053,7 @@
}
},
{
- "id": 1997,
+ "id": 2014,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -21082,7 +21082,7 @@
]
},
{
- "id": 1992,
+ "id": 2009,
"name": "endpointURL",
"variant": "declaration",
"kind": 2048,
@@ -21096,7 +21096,7 @@
],
"signatures": [
{
- "id": 1993,
+ "id": 2010,
"name": "endpointURL",
"variant": "signature",
"kind": 4096,
@@ -21135,7 +21135,7 @@
]
},
{
- "id": 2036,
+ "id": 2053,
"name": "flushSendBuffer",
"variant": "declaration",
"kind": 2048,
@@ -21149,7 +21149,7 @@
],
"signatures": [
{
- "id": 2037,
+ "id": 2054,
"name": "flushSendBuffer",
"variant": "signature",
"kind": 4096,
@@ -21177,7 +21177,7 @@
]
},
{
- "id": 1998,
+ "id": 2015,
"name": "getChannels",
"variant": "declaration",
"kind": 2048,
@@ -21191,7 +21191,7 @@
],
"signatures": [
{
- "id": 1999,
+ "id": 2016,
"name": "getChannels",
"variant": "signature",
"kind": 4096,
@@ -21215,7 +21215,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -21225,7 +21225,7 @@
]
},
{
- "id": 2012,
+ "id": 2029,
"name": "isConnected",
"variant": "declaration",
"kind": 2048,
@@ -21239,7 +21239,7 @@
],
"signatures": [
{
- "id": 2013,
+ "id": 2030,
"name": "isConnected",
"variant": "signature",
"kind": 4096,
@@ -21275,7 +21275,7 @@
]
},
{
- "id": 2014,
+ "id": 2031,
"name": "isConnecting",
"variant": "declaration",
"kind": 2048,
@@ -21289,7 +21289,7 @@
],
"signatures": [
{
- "id": 2015,
+ "id": 2032,
"name": "isConnecting",
"variant": "signature",
"kind": 4096,
@@ -21325,7 +21325,7 @@
]
},
{
- "id": 2016,
+ "id": 2033,
"name": "isDisconnecting",
"variant": "declaration",
"kind": 2048,
@@ -21339,7 +21339,7 @@
],
"signatures": [
{
- "id": 2017,
+ "id": 2034,
"name": "isDisconnecting",
"variant": "signature",
"kind": 4096,
@@ -21375,7 +21375,7 @@
]
},
{
- "id": 2005,
+ "id": 2022,
"name": "log",
"variant": "declaration",
"kind": 2048,
@@ -21389,7 +21389,7 @@
],
"signatures": [
{
- "id": 2006,
+ "id": 2023,
"name": "log",
"variant": "signature",
"kind": 4096,
@@ -21419,7 +21419,7 @@
],
"parameters": [
{
- "id": 2007,
+ "id": 2024,
"name": "kind",
"variant": "param",
"kind": 32768,
@@ -21430,7 +21430,7 @@
}
},
{
- "id": 2008,
+ "id": 2025,
"name": "msg",
"variant": "param",
"kind": 32768,
@@ -21441,7 +21441,7 @@
}
},
{
- "id": 2009,
+ "id": 2026,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -21462,7 +21462,7 @@
]
},
{
- "id": 2030,
+ "id": 2047,
"name": "onHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -21476,7 +21476,7 @@
],
"signatures": [
{
- "id": 2031,
+ "id": 2048,
"name": "onHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -21498,7 +21498,7 @@
],
"parameters": [
{
- "id": 2032,
+ "id": 2049,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -21506,7 +21506,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2033,
+ "id": 2050,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21520,7 +21520,7 @@
],
"signatures": [
{
- "id": 2034,
+ "id": 2051,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -21534,7 +21534,7 @@
],
"parameters": [
{
- "id": 2035,
+ "id": 2052,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -21568,7 +21568,7 @@
]
},
{
- "id": 2022,
+ "id": 2039,
"name": "push",
"variant": "declaration",
"kind": 2048,
@@ -21582,7 +21582,7 @@
],
"signatures": [
{
- "id": 2023,
+ "id": 2040,
"name": "push",
"variant": "signature",
"kind": 4096,
@@ -21604,14 +21604,14 @@
],
"parameters": [
{
- "id": 2024,
+ "id": 2041,
"name": "data",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 2069,
+ "target": 2086,
"name": "RealtimeMessage",
"package": "@supabase/realtime-js"
}
@@ -21625,7 +21625,7 @@
]
},
{
- "id": 2003,
+ "id": 2020,
"name": "removeAllChannels",
"variant": "declaration",
"kind": 2048,
@@ -21639,7 +21639,7 @@
],
"signatures": [
{
- "id": 2004,
+ "id": 2021,
"name": "removeAllChannels",
"variant": "signature",
"kind": 4096,
@@ -21670,7 +21670,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 2146,
+ "target": 2163,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -21683,7 +21683,7 @@
]
},
{
- "id": 2000,
+ "id": 2017,
"name": "removeChannel",
"variant": "declaration",
"kind": 2048,
@@ -21697,7 +21697,7 @@
],
"signatures": [
{
- "id": 2001,
+ "id": 2018,
"name": "removeChannel",
"variant": "signature",
"kind": 4096,
@@ -21719,7 +21719,7 @@
],
"parameters": [
{
- "id": 2002,
+ "id": 2019,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -21734,7 +21734,7 @@
},
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -21750,7 +21750,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2146,
+ "target": 2163,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -21762,7 +21762,7 @@
]
},
{
- "id": 2028,
+ "id": 2045,
"name": "sendHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -21776,7 +21776,7 @@
],
"signatures": [
{
- "id": 2029,
+ "id": 2046,
"name": "sendHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -21815,7 +21815,7 @@
]
},
{
- "id": 2025,
+ "id": 2042,
"name": "setAuth",
"variant": "declaration",
"kind": 2048,
@@ -21829,7 +21829,7 @@
],
"signatures": [
{
- "id": 2026,
+ "id": 2043,
"name": "setAuth",
"variant": "signature",
"kind": 4096,
@@ -21859,7 +21859,7 @@
],
"parameters": [
{
- "id": 2027,
+ "id": 2044,
"name": "token",
"variant": "param",
"kind": 32768,
@@ -21911,21 +21911,21 @@
"groups": [
{
"title": "Constructors",
- "children": [1930]
+ "children": [1947]
},
{
"title": "Properties",
"children": [
- 1981, 1934, 1935, 1936, 1964, 1962, 1961, 1937, 1973, 1939, 1952, 1949, 1950, 1938,
- 1959, 1960, 1943, 1951, 1963, 1957, 1956, 1965, 1966, 1967, 1947, 1948, 1958, 1984,
- 1986, 1985
+ 1998, 1951, 1952, 1953, 1981, 1979, 1978, 1954, 1990, 1956, 1969, 1966, 1967, 1955,
+ 1976, 1977, 1960, 1968, 1980, 1974, 1973, 1982, 1983, 1984, 1964, 1965, 1975, 2001,
+ 2003, 2002
]
},
{
"title": "Methods",
"children": [
- 2018, 1990, 2010, 1994, 1992, 2036, 1998, 2012, 2014, 2016, 2005, 2030, 2022, 2003,
- 2000, 2028, 2025
+ 2035, 2007, 2027, 2011, 2009, 2053, 2015, 2029, 2031, 2033, 2022, 2047, 2039, 2020,
+ 2017, 2045, 2042
]
}
],
@@ -21938,14 +21938,14 @@
]
},
{
- "id": 1603,
+ "id": 1620,
"name": "RealtimePresence",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1604,
+ "id": 1621,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -21959,7 +21959,7 @@
],
"signatures": [
{
- "id": 1605,
+ "id": 1622,
"name": "RealtimePresence",
"variant": "signature",
"kind": 16384,
@@ -21992,7 +21992,7 @@
],
"parameters": [
{
- "id": 1606,
+ "id": 1623,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -22007,14 +22007,14 @@
},
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1607,
+ "id": 1624,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -22050,7 +22050,7 @@
],
"type": {
"type": "reference",
- "target": 1603,
+ "target": 1620,
"name": "RealtimePresence",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -22059,7 +22059,7 @@
]
},
{
- "id": 1613,
+ "id": 1630,
"name": "caller",
"variant": "declaration",
"kind": 1024,
@@ -22074,14 +22074,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1614,
+ "id": 1631,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1615,
+ "id": 1632,
"name": "onJoin",
"variant": "declaration",
"kind": 1024,
@@ -22104,7 +22104,7 @@
}
},
{
- "id": 1616,
+ "id": 1633,
"name": "onLeave",
"variant": "declaration",
"kind": 1024,
@@ -22127,7 +22127,7 @@
}
},
{
- "id": 1617,
+ "id": 1634,
"name": "onSync",
"variant": "declaration",
"kind": 1024,
@@ -22142,7 +22142,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1618,
+ "id": 1635,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -22156,7 +22156,7 @@
],
"signatures": [
{
- "id": 1619,
+ "id": 1636,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -22181,7 +22181,7 @@
"groups": [
{
"title": "Properties",
- "children": [1615, 1616, 1617]
+ "children": [1632, 1633, 1634]
}
],
"sources": [
@@ -22195,7 +22195,7 @@
}
},
{
- "id": 1608,
+ "id": 1625,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -22209,14 +22209,14 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
},
{
- "id": 1612,
+ "id": 1629,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -22234,7 +22234,7 @@
}
},
{
- "id": 1611,
+ "id": 1628,
"name": "joinRef",
"variant": "declaration",
"kind": 1024,
@@ -22261,7 +22261,7 @@
}
},
{
- "id": 1610,
+ "id": 1627,
"name": "pendingDiffs",
"variant": "declaration",
"kind": 1024,
@@ -22287,7 +22287,7 @@
}
},
{
- "id": 1609,
+ "id": 1626,
"name": "state",
"variant": "declaration",
"kind": 1024,
@@ -22301,7 +22301,7 @@
],
"type": {
"type": "reference",
- "target": 2137,
+ "target": 2154,
"name": "RealtimePresenceState",
"package": "@supabase/realtime-js"
}
@@ -22310,11 +22310,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1604]
+ "children": [1621]
},
{
"title": "Properties",
- "children": [1613, 1608, 1612, 1611, 1610, 1609]
+ "children": [1630, 1625, 1629, 1628, 1627, 1626]
}
],
"sources": [
@@ -22351,7 +22351,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"signatures": [
@@ -22385,7 +22385,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L112"
}
],
"typeParameters": [
@@ -22433,7 +22433,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -22453,7 +22453,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -22803,7 +22803,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -22823,7 +22823,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -22904,7 +22904,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -22927,7 +22927,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -22947,7 +22947,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -22965,7 +22965,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -23015,7 +23015,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -23035,7 +23035,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -23071,7 +23071,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -23091,7 +23091,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -23267,7 +23267,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -23283,7 +23283,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"signatures": [
@@ -23298,7 +23298,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 88,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L88"
}
],
"type": {
@@ -23349,7 +23349,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L73"
}
],
"type": {
@@ -23375,7 +23375,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 81,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L81"
}
],
"type": {
@@ -23402,7 +23402,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L87"
}
],
"type": {
@@ -23424,7 +23424,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 86,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L86"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L86"
}
],
"type": {
@@ -23653,7 +23653,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 83,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L83"
}
],
"type": {
@@ -23679,7 +23679,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 90,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L90"
}
],
"type": {
@@ -23713,12 +23713,12 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L74"
}
],
"type": {
"type": "reference",
- "target": 1929,
+ "target": 1946,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -23737,7 +23737,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L80"
}
],
"type": {
@@ -23763,7 +23763,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 84,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L84"
}
],
"type": {
@@ -23822,7 +23822,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L78"
}
],
"type": {
@@ -23848,7 +23848,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 85,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L85"
}
],
"type": {
@@ -23869,7 +23869,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 82,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L82"
}
],
"type": {
@@ -23903,7 +23903,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 114,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L114"
}
],
"type": {
@@ -23932,7 +23932,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 113,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L113"
}
],
"type": {
@@ -23951,7 +23951,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 194,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194"
}
],
"getSignature": {
@@ -23973,7 +23973,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 194,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L194"
}
],
"type": {
@@ -23998,7 +23998,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 308,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308"
}
],
"signatures": [
@@ -24021,7 +24021,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 308,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L308"
}
],
"parameters": [
@@ -24060,7 +24060,7 @@
},
"type": {
"type": "reference",
- "target": 1914,
+ "target": 1931,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
},
@@ -24069,7 +24069,7 @@
],
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24108,19 +24108,19 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206"
},
{
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 214,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L214"
}
],
"signatures": [
@@ -24135,7 +24135,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L202"
}
],
"typeParameters": [
@@ -24237,7 +24237,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 206,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L206"
}
],
"typeParameters": [
@@ -24341,7 +24341,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 315,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315"
}
],
"signatures": [
@@ -24364,14 +24364,14 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 315,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L315"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24391,7 +24391,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 332,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332"
}
],
"signatures": [
@@ -24414,7 +24414,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 332,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L332"
}
],
"type": {
@@ -24462,7 +24462,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 325,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L325"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325"
}
],
"signatures": [
@@ -24485,7 +24485,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 325,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L325"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L325"
}
],
"parameters": [
@@ -24505,7 +24505,7 @@
},
"type": {
"type": "reference",
- "target": 1620,
+ "target": 1637,
"name": "RealtimeChannel",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -24554,7 +24554,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261"
}
],
"signatures": [
@@ -24577,7 +24577,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 261,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L261"
}
],
"typeParameters": [
@@ -24803,7 +24803,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 275,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L275"
}
],
"type": {
@@ -24853,7 +24853,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 274,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L274"
}
],
"type": {
@@ -24898,7 +24898,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 273,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L273"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L273"
}
],
"type": {
@@ -24918,7 +24918,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 272,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L272"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L272"
}
]
}
@@ -25028,7 +25028,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 226,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226"
}
],
"signatures": [
@@ -25051,7 +25051,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 226,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L226"
}
],
"typeParameters": [
@@ -25198,7 +25198,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 37,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L37"
}
],
"typeParameters": [
@@ -25278,7 +25278,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
],
"type": {
@@ -25298,7 +25298,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 44,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L44"
}
]
}
@@ -25768,7 +25768,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
],
"type": {
@@ -25788,7 +25788,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 59,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L59"
}
]
}
@@ -25869,7 +25869,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -25892,7 +25892,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
],
"type": {
@@ -25912,7 +25912,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -25930,7 +25930,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 62,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L62"
}
]
}
@@ -25970,7 +25970,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
],
"type": {
@@ -25990,7 +25990,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 65,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L65"
}
]
}
@@ -26026,7 +26026,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
],
"type": {
@@ -26046,7 +26046,7 @@
"fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
"line": 66,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/SupabaseClient.ts#L66"
}
]
}
@@ -26069,7 +26069,7 @@
]
},
{
- "id": 2167,
+ "id": 2184,
"name": "WebSocketFactory",
"variant": "declaration",
"kind": 128,
@@ -26084,7 +26084,7 @@
},
"children": [
{
- "id": 2175,
+ "id": 2192,
"name": "createWebSocket",
"variant": "declaration",
"kind": 2048,
@@ -26100,7 +26100,7 @@
],
"signatures": [
{
- "id": 2176,
+ "id": 2193,
"name": "createWebSocket",
"variant": "signature",
"kind": 4096,
@@ -26133,7 +26133,7 @@
],
"parameters": [
{
- "id": 2177,
+ "id": 2194,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -26158,7 +26158,7 @@
}
},
{
- "id": 2178,
+ "id": 2195,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -26185,7 +26185,7 @@
],
"type": {
"type": "reference",
- "target": 2183,
+ "target": 2200,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -26193,7 +26193,7 @@
]
},
{
- "id": 2169,
+ "id": 2186,
"name": "getWebSocketConstructor",
"variant": "declaration",
"kind": 2048,
@@ -26209,7 +26209,7 @@
],
"signatures": [
{
- "id": 2170,
+ "id": 2187,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 4096,
@@ -26243,7 +26243,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2171,
+ "id": 2188,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -26257,7 +26257,7 @@
],
"signatures": [
{
- "id": 2172,
+ "id": 2189,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 16384,
@@ -26271,7 +26271,7 @@
],
"parameters": [
{
- "id": 2173,
+ "id": 2190,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -26296,7 +26296,7 @@
}
},
{
- "id": 2174,
+ "id": 2191,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -26338,7 +26338,7 @@
]
},
{
- "id": 2179,
+ "id": 2196,
"name": "isWebSocketSupported",
"variant": "declaration",
"kind": 2048,
@@ -26354,7 +26354,7 @@
],
"signatures": [
{
- "id": 2180,
+ "id": 2197,
"name": "isWebSocketSupported",
"variant": "signature",
"kind": 4096,
@@ -26396,7 +26396,7 @@
"groups": [
{
"title": "Methods",
- "children": [2175, 2169, 2179]
+ "children": [2192, 2186, 2196]
}
],
"sources": [
@@ -26408,14 +26408,14 @@
]
},
{
- "id": 848,
+ "id": 850,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 850,
+ "id": 852,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -26459,7 +26459,7 @@
}
},
{
- "id": 853,
+ "id": 855,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -26487,7 +26487,7 @@
}
},
{
- "id": 858,
+ "id": 860,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -26521,7 +26521,7 @@
}
},
{
- "id": 851,
+ "id": 853,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -26549,7 +26549,7 @@
}
},
{
- "id": 856,
+ "id": 858,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -26593,7 +26593,7 @@
}
},
{
- "id": 857,
+ "id": 859,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -26627,7 +26627,7 @@
}
},
{
- "id": 859,
+ "id": 861,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -26661,7 +26661,7 @@
}
},
{
- "id": 855,
+ "id": 857,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -26697,7 +26697,7 @@
}
},
{
- "id": 860,
+ "id": 862,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -26731,7 +26731,7 @@
}
},
{
- "id": 852,
+ "id": 854,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -26759,7 +26759,7 @@
}
},
{
- "id": 854,
+ "id": 856,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -26819,7 +26819,7 @@
}
},
{
- "id": 849,
+ "id": 851,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -26866,7 +26866,7 @@
"groups": [
{
"title": "Properties",
- "children": [850, 853, 858, 851, 856, 857, 859, 855, 860, 852, 854, 849]
+ "children": [852, 855, 860, 853, 858, 859, 861, 857, 862, 854, 856, 851]
}
],
"sources": [
@@ -26886,7 +26886,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 842,
+ "target": 844,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -26901,7 +26901,7 @@
]
},
{
- "id": 807,
+ "id": 809,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -26921,7 +26921,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1232
+ "target": 1234
},
{
"kind": "text",
@@ -26933,7 +26933,7 @@
},
"children": [
{
- "id": 808,
+ "id": 810,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -26955,13 +26955,13 @@
],
"type": {
"type": "reference",
- "target": 805,
+ "target": 807,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 809,
+ "id": 811,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -26990,7 +26990,7 @@
"groups": [
{
"title": "Properties",
- "children": [808, 809]
+ "children": [810, 811]
}
],
"sources": [
@@ -27002,7 +27002,7 @@
]
},
{
- "id": 1417,
+ "id": 1427,
"name": "AuthOAuthServerApi",
"variant": "declaration",
"kind": 256,
@@ -27017,7 +27017,7 @@
},
"children": [
{
- "id": 1421,
+ "id": 1431,
"name": "approveAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -27025,13 +27025,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1409,
+ "line": 1431,
"character": 4
}
],
"signatures": [
{
- "id": 1422,
+ "id": 1432,
"name": "approveAuthorization",
"variant": "signature",
"kind": 4096,
@@ -27058,13 +27058,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1409,
+ "line": 1431,
"character": 4
}
],
"parameters": [
{
- "id": 1423,
+ "id": 1433,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -27083,7 +27083,7 @@
}
},
{
- "id": 1424,
+ "id": 1434,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -27101,14 +27101,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1425,
+ "id": 1435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1426,
+ "id": 1436,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -27118,7 +27118,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1410,
+ "line": 1432,
"character": 8
}
],
@@ -27131,13 +27131,13 @@
"groups": [
{
"title": "Properties",
- "children": [1426]
+ "children": [1436]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1409,
+ "line": 1431,
"character": 60
}
]
@@ -27154,7 +27154,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1414,
+ "target": 1416,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -27166,7 +27166,7 @@
]
},
{
- "id": 1427,
+ "id": 1437,
"name": "denyAuthorization",
"variant": "declaration",
"kind": 2048,
@@ -27174,13 +27174,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1420,
+ "line": 1442,
"character": 4
}
],
"signatures": [
{
- "id": 1428,
+ "id": 1438,
"name": "denyAuthorization",
"variant": "signature",
"kind": 4096,
@@ -27207,13 +27207,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1420,
+ "line": 1442,
"character": 4
}
],
"parameters": [
{
- "id": 1429,
+ "id": 1439,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -27232,7 +27232,7 @@
}
},
{
- "id": 1430,
+ "id": 1440,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -27250,14 +27250,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1431,
+ "id": 1441,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1432,
+ "id": 1442,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -27267,7 +27267,7 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1421,
+ "line": 1443,
"character": 8
}
],
@@ -27280,13 +27280,13 @@
"groups": [
{
"title": "Properties",
- "children": [1432]
+ "children": [1442]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1420,
+ "line": 1442,
"character": 57
}
]
@@ -27303,7 +27303,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1414,
+ "target": 1416,
"name": "AuthOAuthConsentResponse",
"package": "@supabase/auth-js"
}
@@ -27315,7 +27315,7 @@
]
},
{
- "id": 1418,
+ "id": 1428,
"name": "getAuthorizationDetails",
"variant": "declaration",
"kind": 2048,
@@ -27323,13 +27323,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1400,
+ "line": 1422,
"character": 4
}
],
"signatures": [
{
- "id": 1419,
+ "id": 1429,
"name": "getAuthorizationDetails",
"variant": "signature",
"kind": 4096,
@@ -27356,13 +27356,13 @@
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1400,
+ "line": 1422,
"character": 4
}
],
"parameters": [
{
- "id": 1420,
+ "id": 1430,
"name": "authorizationId",
"variant": "param",
"kind": 32768,
@@ -27390,7 +27390,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1413,
+ "target": 1415,
"name": "AuthOAuthAuthorizationDetailsResponse",
"package": "@supabase/auth-js"
}
@@ -27400,18 +27400,218 @@
}
}
]
+ },
+ {
+ "id": 1443,
+ "name": "listGrants",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1451,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1444,
+ "name": "listGrants",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists all OAuth grants that the authenticated user has authorized.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Response with array of OAuth grants with client information and granted scopes"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1451,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthOAuthGrantsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1445,
+ "name": "revokeGrant",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1463,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1446,
+ "name": "revokeGrant",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Revokes a user's OAuth grant for a specific client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nRevocation marks consent as revoked, deletes active sessions for that OAuth client,\nand invalidates associated refresh tokens."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Empty response on successful revocation"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1463,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1447,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Revocation options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1448,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1449,
+ "name": "clientId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The OAuth client identifier (UUID) to revoke access for"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1464,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1449]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1463,
+ "character": 25
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1425,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
}
],
"groups": [
{
"title": "Methods",
- "children": [1421, 1427, 1418]
+ "children": [1431, 1437, 1428, 1443, 1445]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1387,
+ "line": 1409,
"character": 17
}
]
@@ -27706,7 +27906,7 @@
],
"type": {
"type": "reference",
- "target": 833,
+ "target": 835,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
@@ -27889,7 +28089,7 @@
"types": [
{
"type": "reference",
- "target": 823,
+ "target": 825,
"typeArguments": [
{
"type": "union",
@@ -27918,7 +28118,7 @@
},
{
"type": "reference",
- "target": 823,
+ "target": 825,
"typeArguments": [
{
"type": "union",
@@ -27986,7 +28186,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 810,
+ "target": 812,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -28227,7 +28427,7 @@
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 840,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -28251,14 +28451,14 @@
]
},
{
- "id": 1055,
+ "id": 1057,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1056,
+ "id": 1058,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28302,7 +28502,7 @@
}
},
{
- "id": 1057,
+ "id": 1059,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -28333,7 +28533,7 @@
"groups": [
{
"title": "Properties",
- "children": [1056, 1057]
+ "children": [1058, 1059]
}
],
"sources": [
@@ -28345,7 +28545,7 @@
]
},
{
- "id": 1248,
+ "id": 1250,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -28366,7 +28566,7 @@
},
"children": [
{
- "id": 1252,
+ "id": 1254,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -28380,7 +28580,7 @@
],
"signatures": [
{
- "id": 1253,
+ "id": 1255,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -28400,7 +28600,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1221
+ "target": 1223
}
]
},
@@ -28419,14 +28619,14 @@
],
"parameters": [
{
- "id": 1254,
+ "id": 1256,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1238,
+ "target": 1240,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -28441,7 +28641,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1235,
+ "target": 1237,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -28453,7 +28653,7 @@
]
},
{
- "id": 1249,
+ "id": 1251,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -28467,7 +28667,7 @@
],
"signatures": [
{
- "id": 1250,
+ "id": 1252,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -28489,14 +28689,14 @@
],
"parameters": [
{
- "id": 1251,
+ "id": 1253,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1245,
+ "target": 1247,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -28511,7 +28711,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1242,
+ "target": 1244,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -28526,7 +28726,7 @@
"groups": [
{
"title": "Methods",
- "children": [1252, 1249]
+ "children": [1254, 1251]
}
],
"sources": [
@@ -28538,7 +28738,7 @@
]
},
{
- "id": 1374,
+ "id": 1376,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -28553,7 +28753,7 @@
},
"children": [
{
- "id": 1378,
+ "id": 1380,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -28567,7 +28767,7 @@
],
"signatures": [
{
- "id": 1379,
+ "id": 1381,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -28597,14 +28797,14 @@
],
"parameters": [
{
- "id": 1380,
+ "id": 1382,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1346,
+ "target": 1348,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -28619,7 +28819,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -28631,7 +28831,7 @@
]
},
{
- "id": 1388,
+ "id": 1390,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -28645,7 +28845,7 @@
],
"signatures": [
{
- "id": 1389,
+ "id": 1391,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -28675,7 +28875,7 @@
],
"parameters": [
{
- "id": 1390,
+ "id": 1392,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -28696,14 +28896,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1391,
+ "id": 1393,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1392,
+ "id": 1394,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -28721,7 +28921,7 @@
}
},
{
- "id": 1393,
+ "id": 1395,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -28742,7 +28942,7 @@
},
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -28753,7 +28953,7 @@
"groups": [
{
"title": "Properties",
- "children": [1392, 1393]
+ "children": [1394, 1395]
}
],
"sources": [
@@ -28773,7 +28973,7 @@
]
},
{
- "id": 1381,
+ "id": 1383,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -28787,7 +28987,7 @@
],
"signatures": [
{
- "id": 1382,
+ "id": 1384,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -28817,7 +29017,7 @@
],
"parameters": [
{
- "id": 1383,
+ "id": 1385,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -28837,7 +29037,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -28849,7 +29049,7 @@
]
},
{
- "id": 1375,
+ "id": 1377,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -28863,7 +29063,7 @@
],
"signatures": [
{
- "id": 1376,
+ "id": 1378,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -28893,7 +29093,7 @@
],
"parameters": [
{
- "id": 1377,
+ "id": 1379,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -28902,7 +29102,7 @@
},
"type": {
"type": "reference",
- "target": 1269,
+ "target": 1271,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -28917,7 +29117,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1362,
+ "target": 1364,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -28929,7 +29129,7 @@
]
},
{
- "id": 1394,
+ "id": 1396,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -28943,7 +29143,7 @@
],
"signatures": [
{
- "id": 1395,
+ "id": 1397,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -28973,7 +29173,7 @@
],
"parameters": [
{
- "id": 1396,
+ "id": 1398,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -28993,7 +29193,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -29005,7 +29205,7 @@
]
},
{
- "id": 1384,
+ "id": 1386,
"name": "updateClient",
"variant": "declaration",
"kind": 2048,
@@ -29019,7 +29219,7 @@
],
"signatures": [
{
- "id": 1385,
+ "id": 1387,
"name": "updateClient",
"variant": "signature",
"kind": 4096,
@@ -29049,7 +29249,7 @@
],
"parameters": [
{
- "id": 1386,
+ "id": 1388,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -29060,14 +29260,14 @@
}
},
{
- "id": 1387,
+ "id": 1389,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1354,
+ "target": 1356,
"name": "UpdateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -29082,7 +29282,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1361,
+ "target": 1363,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -29097,7 +29297,7 @@
"groups": [
{
"title": "Methods",
- "children": [1378, 1388, 1381, 1375, 1394, 1384]
+ "children": [1380, 1390, 1383, 1377, 1396, 1386]
}
],
"sources": [
@@ -29109,7 +29309,7 @@
]
},
{
- "id": 1118,
+ "id": 1120,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -29124,7 +29324,7 @@
},
"children": [
{
- "id": 1234,
+ "id": 1236,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -29147,7 +29347,7 @@
}
},
{
- "id": 1139,
+ "id": 1141,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -29176,7 +29376,7 @@
],
"signatures": [
{
- "id": 1140,
+ "id": 1142,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -29198,7 +29398,7 @@
],
"parameters": [
{
- "id": 1141,
+ "id": 1143,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -29206,14 +29406,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1142,
+ "id": 1144,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1143,
+ "id": 1145,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -29242,7 +29442,7 @@
"groups": [
{
"title": "Properties",
- "children": [1143]
+ "children": [1145]
}
],
"sources": [
@@ -29269,14 +29469,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1144,
+ "id": 1146,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1145,
+ "id": 1147,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29294,7 +29494,7 @@
}
},
{
- "id": 1146,
+ "id": 1148,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29308,7 +29508,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -29317,7 +29517,7 @@
"groups": [
{
"title": "Properties",
- "children": [1145, 1146]
+ "children": [1147, 1148]
}
],
"sources": [
@@ -29332,14 +29532,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1147,
+ "id": 1149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1148,
+ "id": 1150,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29354,14 +29554,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1149,
+ "id": 1151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1152,
+ "id": 1154,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -29387,7 +29587,7 @@
}
},
{
- "id": 1150,
+ "id": 1152,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -29413,7 +29613,7 @@
}
},
{
- "id": 1151,
+ "id": 1153,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -29442,7 +29642,7 @@
"groups": [
{
"title": "Properties",
- "children": [1152, 1150, 1151]
+ "children": [1154, 1152, 1153]
}
],
"sources": [
@@ -29456,7 +29656,7 @@
}
},
{
- "id": 1153,
+ "id": 1155,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29477,7 +29677,7 @@
"groups": [
{
"title": "Properties",
- "children": [1148, 1153]
+ "children": [1150, 1155]
}
],
"sources": [
@@ -29497,7 +29697,7 @@
}
},
{
- "id": 1154,
+ "id": 1156,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -29511,7 +29711,7 @@
],
"parameters": [
{
- "id": 1155,
+ "id": 1157,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -29519,14 +29719,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1156,
+ "id": 1158,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1158,
+ "id": 1160,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -29561,7 +29761,7 @@
}
},
{
- "id": 1157,
+ "id": 1159,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -29590,7 +29790,7 @@
"groups": [
{
"title": "Properties",
- "children": [1158, 1157]
+ "children": [1160, 1159]
}
],
"sources": [
@@ -29617,14 +29817,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1159,
+ "id": 1161,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1160,
+ "id": 1162,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29642,7 +29842,7 @@
}
},
{
- "id": 1161,
+ "id": 1163,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29656,7 +29856,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -29665,7 +29865,7 @@
"groups": [
{
"title": "Properties",
- "children": [1160, 1161]
+ "children": [1162, 1163]
}
],
"sources": [
@@ -29680,14 +29880,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1162,
+ "id": 1164,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1163,
+ "id": 1165,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29702,14 +29902,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1164,
+ "id": 1166,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1167,
+ "id": 1169,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -29735,7 +29935,7 @@
}
},
{
- "id": 1165,
+ "id": 1167,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -29761,7 +29961,7 @@
}
},
{
- "id": 1166,
+ "id": 1168,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -29790,7 +29990,7 @@
"groups": [
{
"title": "Properties",
- "children": [1167, 1165, 1166]
+ "children": [1169, 1167, 1168]
}
],
"sources": [
@@ -29804,7 +30004,7 @@
}
},
{
- "id": 1168,
+ "id": 1170,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29825,7 +30025,7 @@
"groups": [
{
"title": "Properties",
- "children": [1163, 1168]
+ "children": [1165, 1170]
}
],
"sources": [
@@ -29845,7 +30045,7 @@
}
},
{
- "id": 1169,
+ "id": 1171,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -29859,7 +30059,7 @@
],
"parameters": [
{
- "id": 1170,
+ "id": 1172,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -29867,14 +30067,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1171,
+ "id": 1173,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1172,
+ "id": 1174,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -29900,7 +30100,7 @@
}
},
{
- "id": 1173,
+ "id": 1175,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -29915,14 +30115,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1174,
+ "id": 1176,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1175,
+ "id": 1177,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -29948,7 +30148,7 @@
}
},
{
- "id": 1176,
+ "id": 1178,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -29982,7 +30182,7 @@
"groups": [
{
"title": "Properties",
- "children": [1175, 1176]
+ "children": [1177, 1178]
}
],
"sources": [
@@ -29999,7 +30199,7 @@
"groups": [
{
"title": "Properties",
- "children": [1172, 1173]
+ "children": [1174, 1175]
}
],
"sources": [
@@ -30026,14 +30226,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1177,
+ "id": 1179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1178,
+ "id": 1180,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30051,7 +30251,7 @@
}
},
{
- "id": 1179,
+ "id": 1181,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30065,7 +30265,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30074,7 +30274,7 @@
"groups": [
{
"title": "Properties",
- "children": [1178, 1179]
+ "children": [1180, 1181]
}
],
"sources": [
@@ -30089,14 +30289,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1180,
+ "id": 1182,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1181,
+ "id": 1183,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30111,14 +30311,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1182,
+ "id": 1184,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1185,
+ "id": 1187,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -30144,7 +30344,7 @@
}
},
{
- "id": 1183,
+ "id": 1185,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -30170,7 +30370,7 @@
}
},
{
- "id": 1184,
+ "id": 1186,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30196,7 +30396,7 @@
}
},
{
- "id": 1186,
+ "id": 1188,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -30214,14 +30414,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1187,
+ "id": 1189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1189,
+ "id": 1191,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -30236,14 +30436,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1190,
+ "id": 1192,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1191,
+ "id": 1193,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -30269,7 +30469,7 @@
"groups": [
{
"title": "Properties",
- "children": [1191]
+ "children": [1193]
}
],
"sources": [
@@ -30283,7 +30483,7 @@
}
},
{
- "id": 1188,
+ "id": 1190,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30304,7 +30504,7 @@
"groups": [
{
"title": "Properties",
- "children": [1189, 1188]
+ "children": [1191, 1190]
}
],
"sources": [
@@ -30319,14 +30519,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1192,
+ "id": 1194,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1194,
+ "id": 1196,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -30341,14 +30541,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1195,
+ "id": 1197,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1196,
+ "id": 1198,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -30374,7 +30574,7 @@
"groups": [
{
"title": "Properties",
- "children": [1196]
+ "children": [1198]
}
],
"sources": [
@@ -30388,7 +30588,7 @@
}
},
{
- "id": 1193,
+ "id": 1195,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -30409,7 +30609,7 @@
"groups": [
{
"title": "Properties",
- "children": [1194, 1193]
+ "children": [1196, 1195]
}
],
"sources": [
@@ -30428,7 +30628,7 @@
"groups": [
{
"title": "Properties",
- "children": [1185, 1183, 1184, 1186]
+ "children": [1187, 1185, 1186, 1188]
}
],
"sources": [
@@ -30442,7 +30642,7 @@
}
},
{
- "id": 1197,
+ "id": 1199,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30463,7 +30663,7 @@
"groups": [
{
"title": "Properties",
- "children": [1181, 1197]
+ "children": [1183, 1199]
}
],
"sources": [
@@ -30483,7 +30683,7 @@
}
},
{
- "id": 1198,
+ "id": 1200,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -30497,14 +30697,14 @@
],
"parameters": [
{
- "id": 1199,
+ "id": 1201,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1088,
+ "target": 1090,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -30519,7 +30719,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1107,
+ "target": 1109,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -30531,7 +30731,7 @@
]
},
{
- "id": 1224,
+ "id": 1226,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -30545,7 +30745,7 @@
],
"signatures": [
{
- "id": 1225,
+ "id": 1227,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -30567,7 +30767,7 @@
],
"parameters": [
{
- "id": 1226,
+ "id": 1228,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30575,14 +30775,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1227,
+ "id": 1229,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1229,
+ "id": 1231,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -30608,7 +30808,7 @@
}
},
{
- "id": 1228,
+ "id": 1230,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -30637,7 +30837,7 @@
"groups": [
{
"title": "Properties",
- "children": [1229, 1228]
+ "children": [1231, 1230]
}
],
"sources": [
@@ -30660,7 +30860,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -30672,7 +30872,7 @@
]
},
{
- "id": 1119,
+ "id": 1121,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -30701,7 +30901,7 @@
],
"signatures": [
{
- "id": 1120,
+ "id": 1122,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -30739,7 +30939,7 @@
],
"parameters": [
{
- "id": 1121,
+ "id": 1123,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30747,14 +30947,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1122,
+ "id": 1124,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1123,
+ "id": 1125,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -30780,7 +30980,7 @@
}
},
{
- "id": 1124,
+ "id": 1126,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -30808,7 +31008,7 @@
}
},
{
- "id": 1125,
+ "id": 1127,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -30839,7 +31039,7 @@
"groups": [
{
"title": "Properties",
- "children": [1123, 1124, 1125]
+ "children": [1125, 1126, 1127]
}
],
"sources": [
@@ -30862,7 +31062,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1279,
+ "target": 1281,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -30872,7 +31072,7 @@
}
},
{
- "id": 1126,
+ "id": 1128,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -30886,7 +31086,7 @@
],
"parameters": [
{
- "id": 1127,
+ "id": 1129,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -30894,14 +31094,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1128,
+ "id": 1130,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1129,
+ "id": 1131,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -30927,7 +31127,7 @@
}
},
{
- "id": 1130,
+ "id": 1132,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -30955,7 +31155,7 @@
}
},
{
- "id": 1131,
+ "id": 1133,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -30984,7 +31184,7 @@
"groups": [
{
"title": "Properties",
- "children": [1129, 1130, 1131]
+ "children": [1131, 1132, 1133]
}
],
"sources": [
@@ -31007,7 +31207,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1280,
+ "target": 1282,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -31017,7 +31217,7 @@
}
},
{
- "id": 1132,
+ "id": 1134,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -31031,7 +31231,7 @@
],
"parameters": [
{
- "id": 1133,
+ "id": 1135,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31039,14 +31239,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1134,
+ "id": 1136,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1135,
+ "id": 1137,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -31072,7 +31272,7 @@
}
},
{
- "id": 1136,
+ "id": 1138,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -31103,7 +31303,7 @@
"groups": [
{
"title": "Properties",
- "children": [1135, 1136]
+ "children": [1137, 1138]
}
],
"sources": [
@@ -31126,7 +31326,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1281,
+ "target": 1283,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -31136,7 +31336,7 @@
}
},
{
- "id": 1137,
+ "id": 1139,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -31150,14 +31350,14 @@
],
"parameters": [
{
- "id": 1138,
+ "id": 1140,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1071,
+ "target": 1073,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -31172,7 +31372,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1098,
+ "target": 1100,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -31184,7 +31384,7 @@
]
},
{
- "id": 1232,
+ "id": 1234,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -31198,7 +31398,7 @@
],
"signatures": [
{
- "id": 1233,
+ "id": 1235,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -31251,7 +31451,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1113,
+ "target": 1115,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -31263,7 +31463,7 @@
]
},
{
- "id": 1230,
+ "id": 1232,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -31277,7 +31477,7 @@
],
"signatures": [
{
- "id": 1231,
+ "id": 1233,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -31301,7 +31501,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1119
+ "target": 1121
},
{
"kind": "text",
@@ -31315,7 +31515,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1232
+ "target": 1234
},
{
"kind": "text",
@@ -31355,7 +31555,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1108,
+ "target": 1110,
"typeArguments": [
{
"type": "typeOperator",
@@ -31390,7 +31590,7 @@
]
},
{
- "id": 1221,
+ "id": 1223,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -31404,7 +31604,7 @@
],
"signatures": [
{
- "id": 1222,
+ "id": 1224,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -31442,14 +31642,14 @@
],
"parameters": [
{
- "id": 1223,
+ "id": 1225,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1072,
+ "target": 1074,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -31464,7 +31664,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1099,
+ "target": 1101,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -31476,7 +31676,7 @@
]
},
{
- "id": 1200,
+ "id": 1202,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -31505,7 +31705,7 @@
],
"signatures": [
{
- "id": 1201,
+ "id": 1203,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31527,7 +31727,7 @@
],
"parameters": [
{
- "id": 1202,
+ "id": 1204,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31535,14 +31735,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1203,
+ "id": 1205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1205,
+ "id": 1207,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -31568,7 +31768,7 @@
}
},
{
- "id": 1206,
+ "id": 1208,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -31594,7 +31794,7 @@
}
},
{
- "id": 1204,
+ "id": 1206,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31623,7 +31823,7 @@
"groups": [
{
"title": "Properties",
- "children": [1205, 1206, 1204]
+ "children": [1207, 1208, 1206]
}
],
"sources": [
@@ -31646,7 +31846,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31656,7 +31856,7 @@
}
},
{
- "id": 1207,
+ "id": 1209,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31670,7 +31870,7 @@
],
"parameters": [
{
- "id": 1208,
+ "id": 1210,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31678,14 +31878,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1209,
+ "id": 1211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1211,
+ "id": 1213,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -31711,7 +31911,7 @@
}
},
{
- "id": 1212,
+ "id": 1214,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -31737,7 +31937,7 @@
}
},
{
- "id": 1210,
+ "id": 1212,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31766,7 +31966,7 @@
"groups": [
{
"title": "Properties",
- "children": [1211, 1212, 1210]
+ "children": [1213, 1214, 1212]
}
],
"sources": [
@@ -31789,7 +31989,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31799,7 +31999,7 @@
}
},
{
- "id": 1213,
+ "id": 1215,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31813,7 +32013,7 @@
],
"parameters": [
{
- "id": 1214,
+ "id": 1216,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -31821,14 +32021,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1215,
+ "id": 1217,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1217,
+ "id": 1219,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -31854,7 +32054,7 @@
}
},
{
- "id": 1216,
+ "id": 1218,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -31880,7 +32080,7 @@
}
},
{
- "id": 1218,
+ "id": 1220,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -31935,7 +32135,7 @@
"groups": [
{
"title": "Properties",
- "children": [1217, 1216, 1218]
+ "children": [1219, 1218, 1220]
}
],
"sources": [
@@ -31958,7 +32158,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -31968,7 +32168,7 @@
}
},
{
- "id": 1219,
+ "id": 1221,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -31982,14 +32182,14 @@
],
"parameters": [
{
- "id": 1220,
+ "id": 1222,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1083,
+ "target": 1085,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -32004,7 +32204,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1099,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -32019,11 +32219,11 @@
"groups": [
{
"title": "Properties",
- "children": [1234]
+ "children": [1236]
},
{
"title": "Methods",
- "children": [1139, 1224, 1119, 1232, 1230, 1221, 1200]
+ "children": [1141, 1226, 1121, 1234, 1232, 1223, 1202]
}
],
"sources": [
@@ -32035,14 +32235,14 @@
]
},
{
- "id": 1317,
+ "id": 1319,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1320,
+ "id": 1322,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -32062,7 +32262,7 @@
}
},
{
- "id": 1319,
+ "id": 1321,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -32083,7 +32283,7 @@
}
},
{
- "id": 1321,
+ "id": 1323,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -32103,7 +32303,7 @@
}
},
{
- "id": 1318,
+ "id": 1320,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -32137,7 +32337,7 @@
"groups": [
{
"title": "Properties",
- "children": [1320, 1319, 1321, 1318]
+ "children": [1322, 1321, 1323, 1320]
}
],
"sources": [
@@ -32149,7 +32349,7 @@
],
"indexSignatures": [
{
- "id": 1322,
+ "id": 1324,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -32163,7 +32363,7 @@
],
"parameters": [
{
- "id": 1323,
+ "id": 1325,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -32182,7 +32382,7 @@
]
},
{
- "id": 1297,
+ "id": 1299,
"name": "JwtPayload",
"variant": "declaration",
"kind": 256,
@@ -32208,7 +32408,7 @@
},
"children": [
{
- "id": 1313,
+ "id": 1315,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -32224,7 +32424,7 @@
],
"type": {
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -32235,7 +32435,7 @@
}
},
{
- "id": 1305,
+ "id": 1307,
"name": "amr",
"variant": "declaration",
"kind": 1024,
@@ -32253,14 +32453,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 807,
+ "target": 809,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1303,
+ "id": 1305,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -32276,13 +32476,13 @@
],
"type": {
"type": "reference",
- "target": 833,
+ "target": 835,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 1309,
+ "id": 1311,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -32319,7 +32519,7 @@
}
},
{
- "id": 1298,
+ "id": 1300,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -32339,7 +32539,7 @@
}
},
{
- "id": 1310,
+ "id": 1312,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -32364,7 +32564,7 @@
}
},
{
- "id": 1311,
+ "id": 1313,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -32389,7 +32589,7 @@
}
},
{
- "id": 1300,
+ "id": 1302,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -32409,7 +32609,7 @@
}
},
{
- "id": 1307,
+ "id": 1309,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -32434,7 +32634,7 @@
}
},
{
- "id": 1301,
+ "id": 1303,
"name": "jti",
"variant": "declaration",
"kind": 1024,
@@ -32454,7 +32654,7 @@
}
},
{
- "id": 1302,
+ "id": 1304,
"name": "nbf",
"variant": "declaration",
"kind": 1024,
@@ -32474,7 +32674,7 @@
}
},
{
- "id": 1299,
+ "id": 1301,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -32494,7 +32694,7 @@
}
},
{
- "id": 1306,
+ "id": 1308,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -32514,7 +32714,7 @@
}
},
{
- "id": 1312,
+ "id": 1314,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -32539,7 +32739,7 @@
}
},
{
- "id": 1314,
+ "id": 1316,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -32564,7 +32764,7 @@
}
},
{
- "id": 1308,
+ "id": 1310,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -32589,7 +32789,7 @@
}
},
{
- "id": 1304,
+ "id": 1306,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -32605,7 +32805,7 @@
],
"type": {
"type": "reference",
- "target": 838,
+ "target": 840,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -32615,8 +32815,8 @@
{
"title": "Properties",
"children": [
- 1313, 1305, 1303, 1309, 1298, 1310, 1311, 1300, 1307, 1301, 1302, 1299, 1306, 1312,
- 1314, 1308, 1304
+ 1315, 1307, 1305, 1311, 1300, 1312, 1313, 1302, 1309, 1303, 1304, 1301, 1308, 1314,
+ 1316, 1310, 1306
]
}
],
@@ -32629,7 +32829,7 @@
],
"indexSignatures": [
{
- "id": 1315,
+ "id": 1317,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -32643,7 +32843,7 @@
],
"parameters": [
{
- "id": 1316,
+ "id": 1318,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -32663,21 +32863,21 @@
"extendedTypes": [
{
"type": "reference",
- "target": 1287,
+ "target": 1289,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 861,
+ "id": 863,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 863,
+ "id": 865,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -32700,7 +32900,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 864,
+ "id": 866,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32714,7 +32914,7 @@
],
"signatures": [
{
- "id": 865,
+ "id": 867,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -32728,20 +32928,20 @@
],
"parameters": [
{
- "id": 866,
+ "id": 868,
"name": "event",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 702,
+ "target": 704,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
},
{
- "id": 867,
+ "id": 869,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -32773,7 +32973,7 @@
}
},
{
- "id": 862,
+ "id": 864,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -32808,7 +33008,7 @@
}
},
{
- "id": 868,
+ "id": 870,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -32831,7 +33031,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 869,
+ "id": 871,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32845,7 +33045,7 @@
],
"signatures": [
{
- "id": 870,
+ "id": 872,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -32870,7 +33070,7 @@
"groups": [
{
"title": "Properties",
- "children": [863, 862, 868]
+ "children": [865, 864, 870]
}
],
"sources": [
@@ -32882,14 +33082,14 @@
]
},
{
- "id": 833,
+ "id": 835,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 834,
+ "id": 836,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -32917,7 +33117,7 @@
}
},
{
- "id": 835,
+ "id": 837,
"name": "providers",
"variant": "declaration",
"kind": 1024,
@@ -32951,7 +33151,7 @@
"groups": [
{
"title": "Properties",
- "children": [834, 835]
+ "children": [836, 837]
}
],
"sources": [
@@ -32963,7 +33163,7 @@
],
"indexSignatures": [
{
- "id": 836,
+ "id": 838,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -32977,7 +33177,7 @@
],
"parameters": [
{
- "id": 837,
+ "id": 839,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -32996,14 +33196,14 @@
]
},
{
- "id": 842,
+ "id": 844,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 847,
+ "id": 849,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -33047,7 +33247,7 @@
}
},
{
- "id": 843,
+ "id": 845,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -33075,7 +33275,7 @@
}
},
{
- "id": 846,
+ "id": 848,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -33103,7 +33303,7 @@
}
},
{
- "id": 845,
+ "id": 847,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -33131,7 +33331,7 @@
}
},
{
- "id": 844,
+ "id": 846,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -33162,7 +33362,7 @@
"groups": [
{
"title": "Properties",
- "children": [847, 843, 846, 845, 844]
+ "children": [849, 845, 848, 847, 846]
}
],
"sources": [
@@ -33174,14 +33374,14 @@
]
},
{
- "id": 810,
+ "id": 812,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 819,
+ "id": 821,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -33201,7 +33401,7 @@
}
},
{
- "id": 811,
+ "id": 813,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -33219,7 +33419,7 @@
}
},
{
- "id": 813,
+ "id": 815,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -33236,7 +33436,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 814,
+ "id": 816,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -33250,7 +33450,7 @@
],
"indexSignatures": [
{
- "id": 815,
+ "id": 817,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33264,7 +33464,7 @@
],
"parameters": [
{
- "id": 816,
+ "id": 818,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33285,7 +33485,7 @@
}
},
{
- "id": 817,
+ "id": 819,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -33303,7 +33503,7 @@
}
},
{
- "id": 820,
+ "id": 822,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -33323,7 +33523,7 @@
}
},
{
- "id": 818,
+ "id": 820,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -33341,7 +33541,7 @@
}
},
{
- "id": 821,
+ "id": 823,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -33361,7 +33561,7 @@
}
},
{
- "id": 812,
+ "id": 814,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -33382,7 +33582,7 @@
"groups": [
{
"title": "Properties",
- "children": [819, 811, 813, 817, 820, 818, 821, 812]
+ "children": [821, 813, 815, 819, 822, 820, 823, 814]
}
],
"sources": [
@@ -33394,7 +33594,7 @@
]
},
{
- "id": 838,
+ "id": 840,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -33408,7 +33608,7 @@
],
"indexSignatures": [
{
- "id": 839,
+ "id": 841,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -33422,7 +33622,7 @@
],
"parameters": [
{
- "id": 840,
+ "id": 842,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -33441,14 +33641,14 @@
]
},
{
- "id": 991,
+ "id": 993,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 992,
+ "id": 994,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -33474,7 +33674,7 @@
}
},
{
- "id": 995,
+ "id": 997,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -33491,14 +33691,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 996,
+ "id": 998,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 998,
+ "id": 1000,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -33532,7 +33732,7 @@
}
},
{
- "id": 997,
+ "id": 999,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -33563,7 +33763,7 @@
"groups": [
{
"title": "Properties",
- "children": [998, 997]
+ "children": [1000, 999]
}
],
"sources": [
@@ -33577,7 +33777,7 @@
}
},
{
- "id": 993,
+ "id": 995,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -33603,7 +33803,7 @@
}
},
{
- "id": 994,
+ "id": 996,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -33625,7 +33825,7 @@
],
"type": {
"type": "reference",
- "target": 1003,
+ "target": 1005,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -33634,7 +33834,7 @@
"groups": [
{
"title": "Properties",
- "children": [992, 995, 993, 994]
+ "children": [994, 997, 995, 996]
}
],
"sources": [
@@ -33646,14 +33846,14 @@
]
},
{
- "id": 983,
+ "id": 985,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 987,
+ "id": 989,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -33670,14 +33870,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 988,
+ "id": 990,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 990,
+ "id": 992,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -33711,7 +33911,7 @@
}
},
{
- "id": 989,
+ "id": 991,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -33742,7 +33942,7 @@
"groups": [
{
"title": "Properties",
- "children": [990, 989]
+ "children": [992, 991]
}
],
"sources": [
@@ -33756,7 +33956,7 @@
}
},
{
- "id": 984,
+ "id": 986,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -33782,7 +33982,7 @@
}
},
{
- "id": 985,
+ "id": 987,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -33808,7 +34008,7 @@
}
},
{
- "id": 986,
+ "id": 988,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -33830,7 +34030,7 @@
],
"type": {
"type": "reference",
- "target": 1002,
+ "target": 1004,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -33839,7 +34039,7 @@
"groups": [
{
"title": "Properties",
- "children": [987, 984, 985, 986]
+ "children": [989, 986, 987, 988]
}
],
"sources": [
@@ -33851,14 +34051,14 @@
]
},
{
- "id": 999,
+ "id": 1001,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1000,
+ "id": 1002,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -33884,7 +34084,7 @@
}
},
{
- "id": 1001,
+ "id": 1003,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -33906,7 +34106,7 @@
],
"type": {
"type": "reference",
- "target": 1003,
+ "target": 1005,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -33915,7 +34115,7 @@
"groups": [
{
"title": "Properties",
- "children": [1000, 1001]
+ "children": [1002, 1003]
}
],
"sources": [
@@ -33927,14 +34127,14 @@
]
},
{
- "id": 2183,
+ "id": 2200,
"name": "WebSocketLike",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 2226,
+ "id": 2243,
"name": "binaryType",
"variant": "declaration",
"kind": 1024,
@@ -33954,7 +34154,7 @@
}
},
{
- "id": 2227,
+ "id": 2244,
"name": "bufferedAmount",
"variant": "declaration",
"kind": 1024,
@@ -33974,7 +34174,7 @@
}
},
{
- "id": 2187,
+ "id": 2204,
"name": "CLOSED",
"variant": "declaration",
"kind": 1024,
@@ -33994,7 +34194,7 @@
}
},
{
- "id": 2186,
+ "id": 2203,
"name": "CLOSING",
"variant": "declaration",
"kind": 1024,
@@ -34014,7 +34214,7 @@
}
},
{
- "id": 2184,
+ "id": 2201,
"name": "CONNECTING",
"variant": "declaration",
"kind": 1024,
@@ -34034,7 +34234,7 @@
}
},
{
- "id": 2229,
+ "id": 2246,
"name": "dispatchEvent",
"variant": "declaration",
"kind": 1024,
@@ -34051,7 +34251,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2230,
+ "id": 2247,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34065,7 +34265,7 @@
],
"signatures": [
{
- "id": 2231,
+ "id": 2248,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34079,7 +34279,7 @@
],
"parameters": [
{
- "id": 2232,
+ "id": 2249,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -34105,7 +34305,7 @@
}
},
{
- "id": 2228,
+ "id": 2245,
"name": "extensions",
"variant": "declaration",
"kind": 1024,
@@ -34125,7 +34325,7 @@
}
},
{
- "id": 2208,
+ "id": 2225,
"name": "onclose",
"variant": "declaration",
"kind": 1024,
@@ -34147,7 +34347,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2209,
+ "id": 2226,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34161,7 +34361,7 @@
],
"signatures": [
{
- "id": 2210,
+ "id": 2227,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34175,7 +34375,7 @@
],
"parameters": [
{
- "id": 2211,
+ "id": 2228,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34186,7 +34386,7 @@
}
},
{
- "id": 2212,
+ "id": 2229,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34214,7 +34414,7 @@
}
},
{
- "id": 2213,
+ "id": 2230,
"name": "onerror",
"variant": "declaration",
"kind": 1024,
@@ -34236,7 +34436,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2214,
+ "id": 2231,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34250,7 +34450,7 @@
],
"signatures": [
{
- "id": 2215,
+ "id": 2232,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34264,7 +34464,7 @@
],
"parameters": [
{
- "id": 2216,
+ "id": 2233,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34275,7 +34475,7 @@
}
},
{
- "id": 2217,
+ "id": 2234,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34303,7 +34503,7 @@
}
},
{
- "id": 2203,
+ "id": 2220,
"name": "onmessage",
"variant": "declaration",
"kind": 1024,
@@ -34325,7 +34525,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2204,
+ "id": 2221,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34339,7 +34539,7 @@
],
"signatures": [
{
- "id": 2205,
+ "id": 2222,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34353,7 +34553,7 @@
],
"parameters": [
{
- "id": 2206,
+ "id": 2223,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34364,7 +34564,7 @@
}
},
{
- "id": 2207,
+ "id": 2224,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34392,7 +34592,7 @@
}
},
{
- "id": 2198,
+ "id": 2215,
"name": "onopen",
"variant": "declaration",
"kind": 1024,
@@ -34414,7 +34614,7 @@
{
"type": "reflection",
"declaration": {
- "id": 2199,
+ "id": 2216,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34428,7 +34628,7 @@
],
"signatures": [
{
- "id": 2200,
+ "id": 2217,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34442,7 +34642,7 @@
],
"parameters": [
{
- "id": 2201,
+ "id": 2218,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -34453,7 +34653,7 @@
}
},
{
- "id": 2202,
+ "id": 2219,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -34481,7 +34681,7 @@
}
},
{
- "id": 2185,
+ "id": 2202,
"name": "OPEN",
"variant": "declaration",
"kind": 1024,
@@ -34501,7 +34701,7 @@
}
},
{
- "id": 2190,
+ "id": 2207,
"name": "protocol",
"variant": "declaration",
"kind": 1024,
@@ -34521,7 +34721,7 @@
}
},
{
- "id": 2188,
+ "id": 2205,
"name": "readyState",
"variant": "declaration",
"kind": 1024,
@@ -34541,7 +34741,7 @@
}
},
{
- "id": 2189,
+ "id": 2206,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -34561,7 +34761,7 @@
}
},
{
- "id": 2218,
+ "id": 2235,
"name": "addEventListener",
"variant": "declaration",
"kind": 2048,
@@ -34575,7 +34775,7 @@
],
"signatures": [
{
- "id": 2219,
+ "id": 2236,
"name": "addEventListener",
"variant": "signature",
"kind": 4096,
@@ -34597,7 +34797,7 @@
],
"parameters": [
{
- "id": 2220,
+ "id": 2237,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -34608,7 +34808,7 @@
}
},
{
- "id": 2221,
+ "id": 2238,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -34632,7 +34832,7 @@
]
},
{
- "id": 2191,
+ "id": 2208,
"name": "close",
"variant": "declaration",
"kind": 2048,
@@ -34646,7 +34846,7 @@
],
"signatures": [
{
- "id": 2192,
+ "id": 2209,
"name": "close",
"variant": "signature",
"kind": 4096,
@@ -34668,7 +34868,7 @@
],
"parameters": [
{
- "id": 2193,
+ "id": 2210,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -34681,7 +34881,7 @@
}
},
{
- "id": 2194,
+ "id": 2211,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -34702,7 +34902,7 @@
]
},
{
- "id": 2222,
+ "id": 2239,
"name": "removeEventListener",
"variant": "declaration",
"kind": 2048,
@@ -34716,7 +34916,7 @@
],
"signatures": [
{
- "id": 2223,
+ "id": 2240,
"name": "removeEventListener",
"variant": "signature",
"kind": 4096,
@@ -34738,7 +34938,7 @@
],
"parameters": [
{
- "id": 2224,
+ "id": 2241,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -34749,7 +34949,7 @@
}
},
{
- "id": 2225,
+ "id": 2242,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -34773,7 +34973,7 @@
]
},
{
- "id": 2195,
+ "id": 2212,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -34787,7 +34987,7 @@
],
"signatures": [
{
- "id": 2196,
+ "id": 2213,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -34809,7 +35009,7 @@
],
"parameters": [
{
- "id": 2197,
+ "id": 2214,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -34875,12 +35075,12 @@
{
"title": "Properties",
"children": [
- 2226, 2227, 2187, 2186, 2184, 2229, 2228, 2208, 2213, 2203, 2198, 2185, 2190, 2188, 2189
+ 2243, 2244, 2204, 2203, 2201, 2246, 2245, 2225, 2230, 2220, 2215, 2202, 2207, 2205, 2206
]
},
{
"title": "Methods",
- "children": [2218, 2191, 2222, 2195]
+ "children": [2235, 2208, 2239, 2212]
}
],
"sources": [
@@ -34892,7 +35092,7 @@
]
},
{
- "id": 2233,
+ "id": 2250,
"name": "WebSocketLikeConstructor",
"variant": "declaration",
"kind": 256,
@@ -34915,7 +35115,7 @@
},
"children": [
{
- "id": 2234,
+ "id": 2251,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -34929,7 +35129,7 @@
],
"signatures": [
{
- "id": 2235,
+ "id": 2252,
"name": "WebSocketLikeConstructor",
"variant": "signature",
"kind": 16384,
@@ -34943,7 +35143,7 @@
],
"parameters": [
{
- "id": 2236,
+ "id": 2253,
"name": "address",
"variant": "param",
"kind": 32768,
@@ -34968,7 +35168,7 @@
}
},
{
- "id": 2237,
+ "id": 2254,
"name": "subprotocols",
"variant": "param",
"kind": 32768,
@@ -34995,7 +35195,7 @@
],
"type": {
"type": "reference",
- "target": 2183,
+ "target": 2200,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -35006,7 +35206,7 @@
"groups": [
{
"title": "Constructors",
- "children": [2234]
+ "children": [2251]
}
],
"sources": [
@@ -35018,7 +35218,7 @@
],
"indexSignatures": [
{
- "id": 2238,
+ "id": 2255,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -35032,7 +35232,7 @@
],
"parameters": [
{
- "id": 2239,
+ "id": 2256,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -35051,7 +35251,7 @@
]
},
{
- "id": 805,
+ "id": 807,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -35096,7 +35296,7 @@
{
"type": "reflection",
"declaration": {
- "id": 806,
+ "id": 808,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -35116,7 +35316,7 @@
}
},
{
- "id": 702,
+ "id": 704,
"name": "AuthChangeEvent",
"variant": "declaration",
"kind": 2097152,
@@ -35157,7 +35357,7 @@
},
{
"type": "reference",
- "target": 701,
+ "target": 703,
"name": "AuthChangeEventMFA",
"package": "@supabase/auth-js"
}
@@ -35165,7 +35365,7 @@
}
},
{
- "id": 701,
+ "id": 703,
"name": "AuthChangeEventMFA",
"variant": "declaration",
"kind": 2097152,
@@ -35183,7 +35383,7 @@
}
},
{
- "id": 1112,
+ "id": 1114,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -35210,7 +35410,7 @@
}
},
{
- "id": 907,
+ "id": 909,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -35237,7 +35437,7 @@
}
},
{
- "id": 1238,
+ "id": 1240,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -35261,14 +35461,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1239,
+ "id": 1241,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1240,
+ "id": 1242,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -35294,7 +35494,7 @@
}
},
{
- "id": 1241,
+ "id": 1243,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -35323,7 +35523,7 @@
"groups": [
{
"title": "Properties",
- "children": [1240, 1241]
+ "children": [1242, 1243]
}
],
"sources": [
@@ -35337,7 +35537,7 @@
}
},
{
- "id": 1235,
+ "id": 1237,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35360,19 +35560,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1236,
+ "id": 1238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1237,
+ "id": 1239,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -35401,7 +35601,7 @@
"groups": [
{
"title": "Properties",
- "children": [1237]
+ "children": [1239]
}
],
"sources": [
@@ -35419,7 +35619,7 @@
}
},
{
- "id": 1245,
+ "id": 1247,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -35443,14 +35643,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1246,
+ "id": 1248,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1247,
+ "id": 1249,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -35479,7 +35679,7 @@
"groups": [
{
"title": "Properties",
- "children": [1247]
+ "children": [1249]
}
],
"sources": [
@@ -35493,7 +35693,7 @@
}
},
{
- "id": 1242,
+ "id": 1244,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35516,19 +35716,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1243,
+ "id": 1245,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1244,
+ "id": 1246,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -35552,7 +35752,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 823,
+ "target": 825,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -35562,7 +35762,7 @@
"groups": [
{
"title": "Properties",
- "children": [1244]
+ "children": [1246]
}
],
"sources": [
@@ -35580,7 +35780,7 @@
}
},
{
- "id": 1103,
+ "id": 1105,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35594,11 +35794,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35639,7 +35839,7 @@
}
},
{
- "id": 1107,
+ "id": 1109,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35656,19 +35856,19 @@
"types": [
{
"type": "reference",
- "target": 1102,
+ "target": 1104,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1103,
+ "target": 1105,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1104,
+ "target": 1106,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -35676,7 +35876,7 @@
}
},
{
- "id": 1102,
+ "id": 1104,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35690,11 +35890,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35735,7 +35935,7 @@
}
},
{
- "id": 1104,
+ "id": 1106,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35770,11 +35970,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35815,7 +36015,7 @@
}
},
{
- "id": 1105,
+ "id": 1107,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -35837,7 +36037,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35874,7 +36074,7 @@
}
},
{
- "id": 1106,
+ "id": 1108,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35896,11 +36096,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1105,
+ "target": 1107,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -35910,7 +36110,7 @@
}
},
{
- "id": 1280,
+ "id": 1282,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35924,11 +36124,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -35969,7 +36169,7 @@
}
},
{
- "id": 1098,
+ "id": 1100,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35986,19 +36186,19 @@
"types": [
{
"type": "reference",
- "target": 1279,
+ "target": 1281,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1280,
+ "target": 1282,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1281,
+ "target": 1283,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -36006,7 +36206,7 @@
}
},
{
- "id": 1279,
+ "id": 1281,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36020,11 +36220,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -36065,7 +36265,7 @@
}
},
{
- "id": 1281,
+ "id": 1283,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36100,11 +36300,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -36145,7 +36345,7 @@
}
},
{
- "id": 1113,
+ "id": 1115,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36159,19 +36359,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1114,
+ "id": 1116,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1117,
+ "id": 1119,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -36195,14 +36395,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 807,
+ "target": 809,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1115,
+ "id": 1117,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -36227,7 +36427,7 @@
"types": [
{
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -36239,7 +36439,7 @@
}
},
{
- "id": 1116,
+ "id": 1118,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -36259,7 +36459,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1139
+ "target": 1141
}
]
}
@@ -36277,7 +36477,7 @@
"types": [
{
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -36292,7 +36492,7 @@
"groups": [
{
"title": "Properties",
- "children": [1117, 1115, 1116]
+ "children": [1119, 1117, 1118]
}
],
"sources": [
@@ -36310,7 +36510,7 @@
}
},
{
- "id": 1108,
+ "id": 1110,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36332,7 +36532,7 @@
],
"typeParameters": [
{
- "id": 1111,
+ "id": 1113,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -36367,7 +36567,7 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "intersection",
@@ -36375,14 +36575,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1109,
+ "id": 1111,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1110,
+ "id": 1112,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -36406,11 +36606,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 825,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -36424,7 +36624,7 @@
"groups": [
{
"title": "Properties",
- "children": [1110]
+ "children": [1112]
}
],
"sources": [
@@ -36447,7 +36647,7 @@
},
"objectType": {
"type": "reference",
- "target": 1111,
+ "target": 1113,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -36457,11 +36657,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "reference",
- "target": 823,
+ "target": 825,
"typeArguments": [
{
"type": "reference",
@@ -36495,7 +36695,7 @@
}
},
{
- "id": 1099,
+ "id": 1101,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36509,19 +36709,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1100,
+ "id": 1102,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1101,
+ "id": 1103,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -36550,7 +36750,7 @@
"groups": [
{
"title": "Properties",
- "children": [1101]
+ "children": [1103]
}
],
"sources": [
@@ -36568,7 +36768,7 @@
}
},
{
- "id": 1097,
+ "id": 1099,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36590,11 +36790,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1090,
+ "target": 1092,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -36604,7 +36804,7 @@
}
},
{
- "id": 1090,
+ "id": 1092,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -36627,14 +36827,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1091,
+ "id": 1093,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1092,
+ "id": 1094,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -36660,7 +36860,7 @@
}
},
{
- "id": 1094,
+ "id": 1096,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -36686,7 +36886,7 @@
}
},
{
- "id": 1095,
+ "id": 1097,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -36712,7 +36912,7 @@
}
},
{
- "id": 1093,
+ "id": 1095,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -36746,7 +36946,7 @@
}
},
{
- "id": 1096,
+ "id": 1098,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -36777,7 +36977,7 @@
"groups": [
{
"title": "Properties",
- "children": [1092, 1094, 1095, 1093, 1096]
+ "children": [1094, 1096, 1097, 1095, 1098]
}
],
"sources": [
@@ -36791,7 +36991,7 @@
}
},
{
- "id": 1413,
+ "id": 1415,
"name": "AuthOAuthAuthorizationDetailsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36813,11 +37013,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1403,
+ "target": 1405,
"name": "OAuthAuthorizationDetails",
"package": "@supabase/auth-js"
}
@@ -36827,7 +37027,7 @@
}
},
{
- "id": 1414,
+ "id": 1416,
"name": "AuthOAuthConsentResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36849,19 +37049,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1415,
+ "id": 1417,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1416,
+ "id": 1418,
"name": "redirect_url",
"variant": "declaration",
"kind": 1024,
@@ -36890,7 +37090,7 @@
"groups": [
{
"title": "Properties",
- "children": [1416]
+ "children": [1418]
}
],
"sources": [
@@ -36908,7 +37108,93 @@
}
},
{
- "id": 771,
+ "id": 1424,
+ "name": "AuthOAuthGrantsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for listing user's OAuth grants.\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": 1397,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 747,
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1419,
+ "name": "OAuthGrant",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1425,
+ "name": "AuthOAuthRevokeGrantResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for revoking an OAuth grant.\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": 1402,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 747,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1426,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1402,
+ "character": 57
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 773,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -36935,19 +37221,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 772,
+ "id": 774,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 775,
+ "id": 777,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -36976,7 +37262,7 @@
}
},
{
- "id": 774,
+ "id": 776,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -36994,7 +37280,7 @@
}
},
{
- "id": 773,
+ "id": 775,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37015,7 +37301,7 @@
"groups": [
{
"title": "Properties",
- "children": [775, 774, 773]
+ "children": [777, 776, 775]
}
],
"sources": [
@@ -37033,7 +37319,7 @@
}
},
{
- "id": 762,
+ "id": 764,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37047,19 +37333,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 763,
+ "id": 765,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 765,
+ "id": 767,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37088,7 +37374,7 @@
}
},
{
- "id": 764,
+ "id": 766,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37120,7 +37406,7 @@
"groups": [
{
"title": "Properties",
- "children": [765, 764]
+ "children": [767, 766]
}
],
"sources": [
@@ -37138,7 +37424,7 @@
}
},
{
- "id": 766,
+ "id": 768,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -37152,19 +37438,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 767,
+ "id": 769,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 769,
+ "id": 771,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37193,7 +37479,7 @@
}
},
{
- "id": 768,
+ "id": 770,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37222,7 +37508,7 @@
}
},
{
- "id": 770,
+ "id": 772,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -37241,7 +37527,7 @@
"types": [
{
"type": "reference",
- "target": 736,
+ "target": 738,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -37256,7 +37542,7 @@
"groups": [
{
"title": "Properties",
- "children": [769, 768, 770]
+ "children": [771, 770, 772]
}
],
"sources": [
@@ -37274,7 +37560,7 @@
}
},
{
- "id": 776,
+ "id": 778,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -37288,19 +37574,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 777,
+ "id": 779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 779,
+ "id": 781,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37320,7 +37606,7 @@
}
},
{
- "id": 778,
+ "id": 780,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37343,7 +37629,7 @@
"groups": [
{
"title": "Properties",
- "children": [779, 778]
+ "children": [781, 780]
}
],
"sources": [
@@ -37361,7 +37647,7 @@
}
},
{
- "id": 780,
+ "id": 782,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -37375,19 +37661,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 781,
+ "id": 783,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 783,
+ "id": 785,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -37407,7 +37693,7 @@
}
},
{
- "id": 782,
+ "id": 784,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -37427,7 +37713,7 @@
}
},
{
- "id": 784,
+ "id": 786,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -37443,7 +37729,7 @@
],
"type": {
"type": "reference",
- "target": 736,
+ "target": 738,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -37452,7 +37738,7 @@
"groups": [
{
"title": "Properties",
- "children": [783, 782, 784]
+ "children": [785, 784, 786]
}
],
"sources": [
@@ -37470,7 +37756,7 @@
}
},
{
- "id": 1261,
+ "id": 1263,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -37484,7 +37770,7 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
@@ -37498,7 +37784,7 @@
}
},
{
- "id": 1346,
+ "id": 1348,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -37521,14 +37807,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1347,
+ "id": 1349,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1348,
+ "id": 1350,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -37554,7 +37840,7 @@
}
},
{
- "id": 1349,
+ "id": 1351,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -37582,7 +37868,7 @@
}
},
{
- "id": 1351,
+ "id": 1353,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -37608,14 +37894,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1326,
+ "target": 1328,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1350,
+ "id": 1352,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -37644,7 +37930,7 @@
}
},
{
- "id": 1352,
+ "id": 1354,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -37670,14 +37956,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1327,
+ "target": 1329,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1353,
+ "id": 1355,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -37708,7 +37994,7 @@
"groups": [
{
"title": "Properties",
- "children": [1348, 1349, 1351, 1350, 1352, 1353]
+ "children": [1350, 1351, 1353, 1352, 1354, 1355]
}
],
"sources": [
@@ -37722,7 +38008,7 @@
}
},
{
- "id": 1003,
+ "id": 1005,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -37765,7 +38051,7 @@
}
},
{
- "id": 963,
+ "id": 965,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -37788,7 +38074,7 @@
}
},
{
- "id": 964,
+ "id": 966,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -37806,14 +38092,14 @@
{
"type": "reflection",
"declaration": {
- "id": 965,
+ "id": 967,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 966,
+ "id": 968,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -37831,7 +38117,7 @@
}
},
{
- "id": 969,
+ "id": 971,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -37848,14 +38134,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 970,
+ "id": 972,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 972,
+ "id": 974,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -37883,7 +38169,7 @@
}
},
{
- "id": 973,
+ "id": 975,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -37951,7 +38237,7 @@
}
},
{
- "id": 971,
+ "id": 973,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -37982,7 +38268,7 @@
"groups": [
{
"title": "Properties",
- "children": [972, 973, 971]
+ "children": [974, 975, 973]
}
],
"sources": [
@@ -37996,7 +38282,7 @@
}
},
{
- "id": 968,
+ "id": 970,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -38024,7 +38310,7 @@
}
},
{
- "id": 967,
+ "id": 969,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -38056,7 +38342,7 @@
],
"type": {
"type": "reference",
- "target": 963,
+ "target": 965,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -38065,7 +38351,7 @@
"groups": [
{
"title": "Properties",
- "children": [966, 969, 968, 967]
+ "children": [968, 971, 970, 969]
}
],
"sources": [
@@ -38080,14 +38366,14 @@
{
"type": "reflection",
"declaration": {
- "id": 974,
+ "id": 976,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 975,
+ "id": 977,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -38105,7 +38391,7 @@
}
},
{
- "id": 976,
+ "id": 978,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -38155,7 +38441,7 @@
}
},
{
- "id": 978,
+ "id": 980,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -38172,14 +38458,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 979,
+ "id": 981,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 980,
+ "id": 982,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -38210,7 +38496,7 @@
"groups": [
{
"title": "Properties",
- "children": [980]
+ "children": [982]
}
],
"sources": [
@@ -38224,7 +38510,7 @@
}
},
{
- "id": 977,
+ "id": 979,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -38258,7 +38544,7 @@
"groups": [
{
"title": "Properties",
- "children": [975, 976, 978, 977]
+ "children": [977, 978, 980, 979]
}
],
"sources": [
@@ -38274,7 +38560,7 @@
}
},
{
- "id": 823,
+ "id": 825,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -38298,7 +38584,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1119
+ "target": 1121
},
{
"kind": "text",
@@ -38312,7 +38598,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1230
+ "target": 1232
},
{
"kind": "text",
@@ -38344,26 +38630,26 @@
],
"typeParameters": [
{
- "id": 831,
+ "id": 833,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 822,
+ "target": 824,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 822,
+ "target": 824,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 832,
+ "id": 834,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -38402,14 +38688,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 824,
+ "id": 826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 829,
+ "id": 831,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -38427,7 +38713,7 @@
}
},
{
- "id": 827,
+ "id": 829,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -38465,14 +38751,14 @@
],
"type": {
"type": "reference",
- "target": 831,
+ "target": 833,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 826,
+ "id": 828,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -38500,7 +38786,7 @@
}
},
{
- "id": 825,
+ "id": 827,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -38526,7 +38812,7 @@
}
},
{
- "id": 828,
+ "id": 830,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -38576,14 +38862,14 @@
],
"type": {
"type": "reference",
- "target": 832,
+ "target": 834,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 830,
+ "id": 832,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -38604,7 +38890,7 @@
"groups": [
{
"title": "Properties",
- "children": [829, 827, 826, 825, 828, 830]
+ "children": [831, 829, 828, 827, 830, 832]
}
],
"sources": [
@@ -38618,7 +38904,7 @@
}
},
{
- "id": 822,
+ "id": 824,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -39037,7 +39323,7 @@
}
},
{
- "id": 1049,
+ "id": 1051,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39052,14 +39338,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1050,
+ "id": 1052,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1052,
+ "id": 1054,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39085,7 +39371,7 @@
}
},
{
- "id": 1053,
+ "id": 1055,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -39111,7 +39397,7 @@
}
},
{
- "id": 1054,
+ "id": 1056,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39134,7 +39420,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39148,7 +39434,7 @@
}
},
{
- "id": 1051,
+ "id": 1053,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39178,7 +39464,7 @@
"groups": [
{
"title": "Properties",
- "children": [1052, 1053, 1054, 1051]
+ "children": [1054, 1055, 1056, 1053]
}
],
"sources": [
@@ -39192,7 +39478,7 @@
}
},
{
- "id": 1039,
+ "id": 1041,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39207,14 +39493,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1040,
+ "id": 1042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1042,
+ "id": 1044,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39240,7 +39526,7 @@
}
},
{
- "id": 1043,
+ "id": 1045,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39263,7 +39549,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39286,7 +39572,7 @@
}
},
{
- "id": 1041,
+ "id": 1043,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39316,7 +39602,7 @@
"groups": [
{
"title": "Properties",
- "children": [1042, 1043, 1041]
+ "children": [1044, 1045, 1043]
}
],
"sources": [
@@ -39330,7 +39616,7 @@
}
},
{
- "id": 1058,
+ "id": 1060,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39347,25 +39633,25 @@
"types": [
{
"type": "reference",
- "target": 1033,
+ "target": 1035,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1039,
+ "target": 1041,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1044,
+ "target": 1046,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1049,
+ "target": 1051,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -39373,7 +39659,7 @@
}
},
{
- "id": 1063,
+ "id": 1065,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -39396,14 +39682,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1064,
+ "id": 1066,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1065,
+ "id": 1067,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -39429,7 +39715,7 @@
}
},
{
- "id": 1066,
+ "id": 1068,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -39455,7 +39741,7 @@
}
},
{
- "id": 1067,
+ "id": 1069,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -39481,7 +39767,7 @@
}
},
{
- "id": 1068,
+ "id": 1070,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -39507,7 +39793,7 @@
}
},
{
- "id": 1069,
+ "id": 1071,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -39529,7 +39815,7 @@
],
"type": {
"type": "reference",
- "target": 1070,
+ "target": 1072,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -39538,7 +39824,7 @@
"groups": [
{
"title": "Properties",
- "children": [1065, 1066, 1067, 1068, 1069]
+ "children": [1067, 1068, 1069, 1070, 1071]
}
],
"sources": [
@@ -39552,7 +39838,7 @@
}
},
{
- "id": 1059,
+ "id": 1061,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -39566,19 +39852,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1060,
+ "id": 1062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1061,
+ "id": 1063,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -39592,13 +39878,13 @@
],
"type": {
"type": "reference",
- "target": 1063,
+ "target": 1065,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1062,
+ "id": 1064,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -39621,7 +39907,7 @@
"groups": [
{
"title": "Properties",
- "children": [1061, 1062]
+ "children": [1063, 1064]
}
],
"sources": [
@@ -39639,7 +39925,7 @@
}
},
{
- "id": 1070,
+ "id": 1072,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -39682,7 +39968,7 @@
}
},
{
- "id": 1044,
+ "id": 1046,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39697,14 +39983,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1045,
+ "id": 1047,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1047,
+ "id": 1049,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39730,7 +40016,7 @@
}
},
{
- "id": 1048,
+ "id": 1050,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39753,7 +40039,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39767,7 +40053,7 @@
}
},
{
- "id": 1046,
+ "id": 1048,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39788,7 +40074,7 @@
"groups": [
{
"title": "Properties",
- "children": [1047, 1048, 1046]
+ "children": [1049, 1050, 1048]
}
],
"sources": [
@@ -39802,7 +40088,7 @@
}
},
{
- "id": 1033,
+ "id": 1035,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -39817,14 +40103,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1034,
+ "id": 1036,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1036,
+ "id": 1038,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -39842,7 +40128,7 @@
}
},
{
- "id": 1038,
+ "id": 1040,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -39865,7 +40151,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1055,
+ "target": 1057,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -39888,7 +40174,7 @@
}
},
{
- "id": 1037,
+ "id": 1039,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -39906,7 +40192,7 @@
}
},
{
- "id": 1035,
+ "id": 1037,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -39927,7 +40213,7 @@
"groups": [
{
"title": "Properties",
- "children": [1036, 1038, 1037, 1035]
+ "children": [1038, 1040, 1039, 1037]
}
],
"sources": [
@@ -39941,7 +40227,7 @@
}
},
{
- "id": 712,
+ "id": 714,
"name": "GoTrueClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -39956,14 +40242,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 713,
+ "id": 715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 721,
+ "id": 723,
"name": "autoRefreshToken",
"variant": "declaration",
"kind": 1024,
@@ -39983,7 +40269,7 @@
}
},
{
- "id": 727,
+ "id": 729,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -40007,7 +40293,7 @@
{
"type": "reflection",
"declaration": {
- "id": 728,
+ "id": 730,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40021,14 +40307,14 @@
],
"signatures": [
{
- "id": 729,
+ "id": 731,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 730,
+ "id": 732,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -40039,7 +40325,7 @@
}
},
{
- "id": 731,
+ "id": 733,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -40067,7 +40353,7 @@
}
},
{
- "id": 720,
+ "id": 722,
"name": "detectSessionInUrl",
"variant": "declaration",
"kind": 1024,
@@ -40087,7 +40373,7 @@
}
},
{
- "id": 725,
+ "id": 727,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -40112,7 +40398,7 @@
}
},
{
- "id": 726,
+ "id": 728,
"name": "flowType",
"variant": "declaration",
"kind": 1024,
@@ -40128,13 +40414,13 @@
],
"type": {
"type": "reference",
- "target": 907,
+ "target": 909,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
},
{
- "id": 733,
+ "id": 735,
"name": "hasCustomAuthorizationHeader",
"variant": "declaration",
"kind": 1024,
@@ -40163,7 +40449,7 @@
}
},
{
- "id": 715,
+ "id": 717,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -40180,7 +40466,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 716,
+ "id": 718,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40194,7 +40480,7 @@
],
"indexSignatures": [
{
- "id": 717,
+ "id": 719,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -40208,7 +40494,7 @@
],
"parameters": [
{
- "id": 718,
+ "id": 720,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -40229,7 +40515,7 @@
}
},
{
- "id": 732,
+ "id": 734,
"name": "lock",
"variant": "declaration",
"kind": 1024,
@@ -40254,13 +40540,13 @@
],
"type": {
"type": "reference",
- "target": 703,
+ "target": 705,
"name": "LockFunc",
"package": "@supabase/auth-js"
}
},
{
- "id": 722,
+ "id": 724,
"name": "persistSession",
"variant": "declaration",
"kind": 1024,
@@ -40280,7 +40566,7 @@
}
},
{
- "id": 723,
+ "id": 725,
"name": "storage",
"variant": "declaration",
"kind": 1024,
@@ -40296,13 +40582,13 @@
],
"type": {
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
},
{
- "id": 719,
+ "id": 721,
"name": "storageKey",
"variant": "declaration",
"kind": 1024,
@@ -40322,7 +40608,7 @@
}
},
{
- "id": 734,
+ "id": 736,
"name": "throwOnError",
"variant": "declaration",
"kind": 1024,
@@ -40350,7 +40636,7 @@
}
},
{
- "id": 714,
+ "id": 716,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -40370,7 +40656,7 @@
}
},
{
- "id": 724,
+ "id": 726,
"name": "userStorage",
"variant": "declaration",
"kind": 1024,
@@ -40435,7 +40721,7 @@
],
"type": {
"type": "reference",
- "target": 1255,
+ "target": 1257,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -40444,7 +40730,7 @@
"groups": [
{
"title": "Properties",
- "children": [721, 727, 720, 725, 726, 733, 715, 732, 722, 723, 719, 734, 714, 724]
+ "children": [723, 729, 722, 727, 728, 735, 717, 734, 724, 725, 721, 736, 716, 726]
}
],
"sources": [
@@ -40458,7 +40744,7 @@
}
},
{
- "id": 1258,
+ "id": 1260,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -40473,14 +40759,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1259,
+ "id": 1261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1260,
+ "id": 1262,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -40497,7 +40783,7 @@
"types": [
{
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -40512,7 +40798,7 @@
"groups": [
{
"title": "Properties",
- "children": [1260]
+ "children": [1262]
}
],
"sources": [
@@ -40526,7 +40812,7 @@
}
},
{
- "id": 1282,
+ "id": 1284,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -40541,14 +40827,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1283,
+ "id": 1285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1284,
+ "id": 1286,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -40579,7 +40865,7 @@
}
},
{
- "id": 1285,
+ "id": 1287,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -40597,7 +40883,7 @@
}
},
{
- "id": 1286,
+ "id": 1288,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -40618,7 +40904,7 @@
"groups": [
{
"title": "Properties",
- "children": [1284, 1285, 1286]
+ "children": [1286, 1287, 1288]
}
],
"sources": [
@@ -40632,7 +40918,7 @@
}
},
{
- "id": 703,
+ "id": 705,
"name": "LockFunc",
"variant": "declaration",
"kind": 2097152,
@@ -40664,7 +40950,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 704,
+ "id": 706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40678,14 +40964,14 @@
],
"signatures": [
{
- "id": 705,
+ "id": 707,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"typeParameters": [
{
- "id": 711,
+ "id": 713,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -40694,7 +40980,7 @@
],
"parameters": [
{
- "id": 706,
+ "id": 708,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -40713,7 +40999,7 @@
}
},
{
- "id": 707,
+ "id": 709,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -40740,7 +41026,7 @@
}
},
{
- "id": 708,
+ "id": 710,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -40756,7 +41042,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 709,
+ "id": 711,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -40770,7 +41056,7 @@
],
"signatures": [
{
- "id": 710,
+ "id": 712,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -40784,7 +41070,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 711,
+ "target": 713,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -40808,7 +41094,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 711,
+ "target": 713,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -40823,7 +41109,7 @@
}
},
{
- "id": 1089,
+ "id": 1091,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -40846,7 +41132,7 @@
}
},
{
- "id": 1088,
+ "id": 1090,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -40863,19 +41149,19 @@
"types": [
{
"type": "reference",
- "target": 1085,
+ "target": 1087,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1086,
+ "target": 1088,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1087,
+ "target": 1089,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -40883,7 +41169,7 @@
}
},
{
- "id": 1086,
+ "id": 1088,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -40897,7 +41183,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -40928,7 +41214,7 @@
}
},
{
- "id": 1085,
+ "id": 1087,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -40942,7 +41228,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "reference",
@@ -40959,7 +41245,7 @@
}
},
{
- "id": 1087,
+ "id": 1089,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -40994,7 +41280,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41025,7 +41311,7 @@
}
},
{
- "id": 1071,
+ "id": 1073,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -41042,19 +41328,19 @@
"types": [
{
"type": "reference",
- "target": 1276,
+ "target": 1278,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1277,
+ "target": 1279,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1278,
+ "target": 1280,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -41062,7 +41348,7 @@
}
},
{
- "id": 1277,
+ "id": 1279,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -41076,7 +41362,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41113,7 +41399,7 @@
}
},
{
- "id": 1276,
+ "id": 1278,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -41127,7 +41413,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41164,7 +41450,7 @@
}
},
{
- "id": 1278,
+ "id": 1280,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -41199,7 +41485,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41236,7 +41522,7 @@
}
},
{
- "id": 1084,
+ "id": 1086,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -41270,7 +41556,7 @@
}
},
{
- "id": 1072,
+ "id": 1074,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -41285,14 +41571,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1073,
+ "id": 1075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1074,
+ "id": 1076,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -41321,7 +41607,7 @@
"groups": [
{
"title": "Properties",
- "children": [1074]
+ "children": [1076]
}
],
"sources": [
@@ -41335,7 +41621,7 @@
}
},
{
- "id": 1083,
+ "id": 1085,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -41352,19 +41638,19 @@
"types": [
{
"type": "reference",
- "target": 1075,
+ "target": 1077,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1076,
+ "target": 1078,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1081,
+ "target": 1083,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -41372,7 +41658,7 @@
}
},
{
- "id": 1076,
+ "id": 1078,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -41386,7 +41672,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41417,7 +41703,7 @@
}
},
{
- "id": 1075,
+ "id": 1077,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -41431,7 +41717,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41462,7 +41748,7 @@
}
},
{
- "id": 1077,
+ "id": 1079,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -41484,7 +41770,7 @@
],
"typeParameters": [
{
- "id": 1080,
+ "id": 1082,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -41528,14 +41814,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1078,
+ "id": 1080,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1079,
+ "id": 1081,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -41568,7 +41854,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1080,
+ "target": 1082,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -41584,7 +41870,7 @@
"groups": [
{
"title": "Properties",
- "children": [1079]
+ "children": [1081]
}
],
"sources": [
@@ -41598,7 +41884,7 @@
}
},
{
- "id": 1081,
+ "id": 1083,
"name": "MFAVerifyWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -41633,7 +41919,7 @@
],
"typeParameters": [
{
- "id": 1082,
+ "id": 1084,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -41676,7 +41962,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -41692,11 +41978,11 @@
},
{
"type": "reference",
- "target": 1077,
+ "target": 1079,
"typeArguments": [
{
"type": "reference",
- "target": 1082,
+ "target": 1084,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -41713,7 +41999,7 @@
}
},
{
- "id": 1002,
+ "id": 1004,
"name": "MobileOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -41740,7 +42026,7 @@
}
},
{
- "id": 1397,
+ "id": 1399,
"name": "OAuthAuthorizationClient",
"variant": "declaration",
"kind": 2097152,
@@ -41763,15 +42049,15 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1398,
+ "id": 1400,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1399,
- "name": "client_id",
+ "id": 1401,
+ "name": "id",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41796,8 +42082,8 @@
}
},
{
- "id": 1400,
- "name": "client_name",
+ "id": 1404,
+ "name": "logo_uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41805,14 +42091,14 @@
"summary": [
{
"kind": "text",
- "text": "Human-readable name of the OAuth client"
+ "text": "URI of the OAuth client's logo"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1341,
+ "line": 1345,
"character": 4
}
],
@@ -41822,8 +42108,8 @@
}
},
{
- "id": 1401,
- "name": "client_uri",
+ "id": 1402,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41831,14 +42117,14 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's website"
+ "text": "Human-readable name of the OAuth client"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1343,
+ "line": 1341,
"character": 4
}
],
@@ -41848,8 +42134,8 @@
}
},
{
- "id": 1402,
- "name": "logo_uri",
+ "id": 1403,
+ "name": "uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
@@ -41857,14 +42143,14 @@
"summary": [
{
"kind": "text",
- "text": "URI of the OAuth client's logo"
+ "text": "URI of the OAuth client's website"
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 1345,
+ "line": 1343,
"character": 4
}
],
@@ -41877,7 +42163,7 @@
"groups": [
{
"title": "Properties",
- "children": [1399, 1400, 1401, 1402]
+ "children": [1401, 1404, 1402, 1403]
}
],
"sources": [
@@ -41891,7 +42177,7 @@
}
},
{
- "id": 1403,
+ "id": 1405,
"name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
@@ -41914,14 +42200,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1404,
+ "id": 1406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1405,
+ "id": 1407,
"name": "authorization_id",
"variant": "declaration",
"kind": 1024,
@@ -41947,7 +42233,7 @@
}
},
{
- "id": 1407,
+ "id": 1409,
"name": "client",
"variant": "declaration",
"kind": 1024,
@@ -41969,13 +42255,13 @@
],
"type": {
"type": "reference",
- "target": 1397,
+ "target": 1399,
"name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
}
},
{
- "id": 1406,
+ "id": 1408,
"name": "redirect_uri",
"variant": "declaration",
"kind": 1024,
@@ -42003,7 +42289,7 @@
}
},
{
- "id": 1412,
+ "id": 1414,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -42029,7 +42315,7 @@
}
},
{
- "id": 1408,
+ "id": 1410,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -42052,14 +42338,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1409,
+ "id": 1411,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1411,
+ "id": 1413,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -42085,7 +42371,7 @@
}
},
{
- "id": 1410,
+ "id": 1412,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -42114,7 +42400,7 @@
"groups": [
{
"title": "Properties",
- "children": [1411, 1410]
+ "children": [1413, 1412]
}
],
"sources": [
@@ -42131,7 +42417,7 @@
"groups": [
{
"title": "Properties",
- "children": [1405, 1407, 1406, 1412, 1408]
+ "children": [1407, 1409, 1408, 1414, 1410]
}
],
"sources": [
@@ -42145,7 +42431,7 @@
}
},
{
- "id": 1330,
+ "id": 1332,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -42168,14 +42454,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1331,
+ "id": 1333,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1332,
+ "id": 1334,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -42201,7 +42487,7 @@
}
},
{
- "id": 1333,
+ "id": 1335,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -42227,7 +42513,7 @@
}
},
{
- "id": 1334,
+ "id": 1336,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -42255,7 +42541,7 @@
}
},
{
- "id": 1335,
+ "id": 1337,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -42277,13 +42563,13 @@
],
"type": {
"type": "reference",
- "target": 1328,
+ "target": 1330,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1338,
+ "id": 1340,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -42311,7 +42597,7 @@
}
},
{
- "id": 1344,
+ "id": 1346,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -42337,7 +42623,7 @@
}
},
{
- "id": 1341,
+ "id": 1343,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -42361,14 +42647,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1326,
+ "target": 1328,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1339,
+ "id": 1341,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -42396,7 +42682,7 @@
}
},
{
- "id": 1340,
+ "id": 1342,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -42425,7 +42711,7 @@
}
},
{
- "id": 1337,
+ "id": 1339,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -42447,13 +42733,13 @@
],
"type": {
"type": "reference",
- "target": 1329,
+ "target": 1331,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1342,
+ "id": 1344,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -42477,14 +42763,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1327,
+ "target": 1329,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1343,
+ "id": 1345,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -42512,7 +42798,7 @@
}
},
{
- "id": 1336,
+ "id": 1338,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -42538,7 +42824,7 @@
}
},
{
- "id": 1345,
+ "id": 1347,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -42568,7 +42854,7 @@
{
"title": "Properties",
"children": [
- 1332, 1333, 1334, 1335, 1338, 1344, 1341, 1339, 1340, 1337, 1342, 1343, 1336, 1345
+ 1334, 1335, 1336, 1337, 1340, 1346, 1343, 1341, 1342, 1339, 1344, 1345, 1338, 1347
]
}
],
@@ -42583,7 +42869,7 @@
}
},
{
- "id": 1326,
+ "id": 1328,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -42618,7 +42904,7 @@
}
},
{
- "id": 1362,
+ "id": 1364,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -42644,14 +42930,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1363,
+ "id": 1365,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1364,
+ "id": 1366,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -42669,14 +42955,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1365,
+ "id": 1367,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1367,
+ "id": 1369,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -42694,7 +42980,7 @@
}
},
{
- "id": 1366,
+ "id": 1368,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -42710,7 +42996,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1330,
+ "target": 1332,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -42720,7 +43006,7 @@
"groups": [
{
"title": "Properties",
- "children": [1367, 1366]
+ "children": [1369, 1368]
}
],
"sources": [
@@ -42734,7 +43020,7 @@
},
{
"type": "reference",
- "target": 1262,
+ "target": 1264,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -42742,7 +43028,7 @@
}
},
{
- "id": 1368,
+ "id": 1370,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -42763,7 +43049,7 @@
"groups": [
{
"title": "Properties",
- "children": [1364, 1368]
+ "children": [1366, 1370]
}
],
"sources": [
@@ -42778,14 +43064,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1369,
+ "id": 1371,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1370,
+ "id": 1372,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -42800,14 +43086,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1371,
+ "id": 1373,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1372,
+ "id": 1374,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -42827,7 +43113,7 @@
"groups": [
{
"title": "Properties",
- "children": [1372]
+ "children": [1374]
}
],
"sources": [
@@ -42841,7 +43127,7 @@
}
},
{
- "id": 1373,
+ "id": 1375,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -42855,7 +43141,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -42864,7 +43150,7 @@
"groups": [
{
"title": "Properties",
- "children": [1370, 1373]
+ "children": [1372, 1375]
}
],
"sources": [
@@ -42880,7 +43166,7 @@
}
},
{
- "id": 1329,
+ "id": 1331,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -42915,7 +43201,7 @@
}
},
{
- "id": 1361,
+ "id": 1363,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -42937,11 +43223,11 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reference",
- "target": 1330,
+ "target": 1332,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -42951,7 +43237,7 @@
}
},
{
- "id": 1327,
+ "id": 1329,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -42977,7 +43263,7 @@
}
},
{
- "id": 1328,
+ "id": 1330,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -43012,7 +43298,137 @@
}
},
{
- "id": 785,
+ "id": 1419,
+ "name": "OAuthGrant",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An OAuth grant representing a user's authorization of an 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": 1385,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1420,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1421,
+ "name": "client",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client information"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1387,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1399,
+ "name": "OAuthAuthorizationClient",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1423,
+ "name": "granted_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the grant was created (ISO 8601 date-time)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1391,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1422,
+ "name": "scopes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of scopes granted to this client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1389,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1421, 1423, 1422]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1385,
+ "character": 25
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 787,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -43030,14 +43446,14 @@
{
"type": "reflection",
"declaration": {
- "id": 786,
+ "id": 788,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 787,
+ "id": 789,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -43052,14 +43468,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 788,
+ "id": 790,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 789,
+ "id": 791,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -43073,13 +43489,13 @@
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 702,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 790,
+ "id": 792,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -43100,7 +43516,7 @@
"groups": [
{
"title": "Properties",
- "children": [789, 790]
+ "children": [791, 792]
}
],
"sources": [
@@ -43114,7 +43530,7 @@
}
},
{
- "id": 791,
+ "id": 793,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -43135,7 +43551,7 @@
"groups": [
{
"title": "Properties",
- "children": [787, 791]
+ "children": [789, 793]
}
],
"sources": [
@@ -43150,14 +43566,14 @@
{
"type": "reflection",
"declaration": {
- "id": 792,
+ "id": 794,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 793,
+ "id": 795,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -43172,14 +43588,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 794,
+ "id": 796,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 795,
+ "id": 797,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -43193,13 +43609,13 @@
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 702,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 796,
+ "id": 798,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -43220,7 +43636,7 @@
"groups": [
{
"title": "Properties",
- "children": [795, 796]
+ "children": [797, 798]
}
],
"sources": [
@@ -43234,7 +43650,7 @@
}
},
{
- "id": 797,
+ "id": 799,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -43248,7 +43664,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -43257,7 +43673,7 @@
"groups": [
{
"title": "Properties",
- "children": [793, 797]
+ "children": [795, 799]
}
],
"sources": [
@@ -43273,7 +43689,7 @@
}
},
{
- "id": 1269,
+ "id": 1271,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -43288,14 +43704,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1270,
+ "id": 1272,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1271,
+ "id": 1273,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -43323,7 +43739,7 @@
}
},
{
- "id": 1272,
+ "id": 1274,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -43354,7 +43770,7 @@
"groups": [
{
"title": "Properties",
- "children": [1271, 1272]
+ "children": [1273, 1274]
}
],
"sources": [
@@ -43368,7 +43784,7 @@
}
},
{
- "id": 1262,
+ "id": 1264,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -43383,14 +43799,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1263,
+ "id": 1265,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1265,
+ "id": 1267,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -43408,7 +43824,7 @@
}
},
{
- "id": 1264,
+ "id": 1266,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -43435,7 +43851,7 @@
}
},
{
- "id": 1266,
+ "id": 1268,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -43456,7 +43872,7 @@
"groups": [
{
"title": "Properties",
- "children": [1265, 1264, 1266]
+ "children": [1267, 1266, 1268]
}
],
"sources": [
@@ -43468,7 +43884,7 @@
],
"indexSignatures": [
{
- "id": 1267,
+ "id": 1269,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -43482,7 +43898,7 @@
],
"parameters": [
{
- "id": 1268,
+ "id": 1270,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -43646,7 +44062,7 @@
}
},
{
- "id": 740,
+ "id": 742,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -43668,7 +44084,7 @@
],
"typeParameters": [
{
- "id": 741,
+ "id": 743,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -43679,7 +44095,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43695,7 +44111,7 @@
},
"trueType": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43708,7 +44124,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43728,7 +44144,7 @@
},
"objectType": {
"type": "reference",
- "target": 741,
+ "target": 743,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -43738,7 +44154,7 @@
}
},
{
- "id": 700,
+ "id": 702,
"name": "Provider",
"variant": "declaration",
"kind": 2097152,
@@ -43863,7 +44279,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 118,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118"
}
],
"typeParameters": [
@@ -43911,7 +44327,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 118,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118"
}
],
"type": {
@@ -43931,7 +44347,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 118,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L118"
}
]
}
@@ -43982,7 +44398,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 119,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L119"
}
],
"type": {
@@ -44012,7 +44428,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 117,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L117"
}
],
"typeParameters": [
@@ -44065,7 +44481,7 @@
}
},
{
- "id": 1914,
+ "id": 1931,
"name": "RealtimeChannelOptions",
"variant": "declaration",
"kind": 2097152,
@@ -44080,14 +44496,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1915,
+ "id": 1932,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1916,
+ "id": 1933,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -44102,14 +44518,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1917,
+ "id": 1934,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1918,
+ "id": 1935,
"name": "broadcast",
"variant": "declaration",
"kind": 1024,
@@ -44134,14 +44550,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1919,
+ "id": 1936,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1921,
+ "id": 1938,
"name": "ack",
"variant": "declaration",
"kind": 1024,
@@ -44161,7 +44577,7 @@
}
},
{
- "id": 1922,
+ "id": 1939,
"name": "replay",
"variant": "declaration",
"kind": 1024,
@@ -44186,7 +44602,7 @@
}
},
{
- "id": 1920,
+ "id": 1937,
"name": "self",
"variant": "declaration",
"kind": 1024,
@@ -44209,7 +44625,7 @@
"groups": [
{
"title": "Properties",
- "children": [1921, 1922, 1920]
+ "children": [1938, 1939, 1937]
}
],
"sources": [
@@ -44223,7 +44639,7 @@
}
},
{
- "id": 1923,
+ "id": 1940,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -44248,14 +44664,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1924,
+ "id": 1941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1926,
+ "id": 1943,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -44275,7 +44691,7 @@
}
},
{
- "id": 1925,
+ "id": 1942,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -44298,7 +44714,7 @@
"groups": [
{
"title": "Properties",
- "children": [1926, 1925]
+ "children": [1943, 1942]
}
],
"sources": [
@@ -44312,7 +44728,7 @@
}
},
{
- "id": 1927,
+ "id": 1944,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -44343,7 +44759,7 @@
"groups": [
{
"title": "Properties",
- "children": [1918, 1923, 1927]
+ "children": [1935, 1940, 1944]
}
],
"sources": [
@@ -44360,7 +44776,7 @@
"groups": [
{
"title": "Properties",
- "children": [1916]
+ "children": [1933]
}
],
"sources": [
@@ -44374,7 +44790,7 @@
}
},
{
- "id": 1928,
+ "id": 1945,
"name": "RealtimeChannelSendResponse",
"variant": "declaration",
"kind": 2097152,
@@ -44405,7 +44821,7 @@
}
},
{
- "id": 2039,
+ "id": 2056,
"name": "RealtimeClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -44420,14 +44836,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2040,
+ "id": 2057,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2066,
+ "id": 2083,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -44444,7 +44860,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2067,
+ "id": 2084,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44458,7 +44874,7 @@
],
"signatures": [
{
- "id": 2068,
+ "id": 2085,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -44493,7 +44909,7 @@
}
},
{
- "id": 2051,
+ "id": 2068,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -44518,7 +44934,7 @@
}
},
{
- "id": 2050,
+ "id": 2067,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -44543,7 +44959,7 @@
}
},
{
- "id": 2063,
+ "id": 2080,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -44568,7 +44984,7 @@
}
},
{
- "id": 2053,
+ "id": 2070,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -44585,7 +45001,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2054,
+ "id": 2071,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44599,7 +45015,7 @@
],
"indexSignatures": [
{
- "id": 2055,
+ "id": 2072,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -44613,7 +45029,7 @@
],
"parameters": [
{
- "id": 2056,
+ "id": 2073,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -44634,7 +45050,7 @@
}
},
{
- "id": 2044,
+ "id": 2061,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -44651,7 +45067,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2045,
+ "id": 2062,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44665,14 +45081,14 @@
],
"signatures": [
{
- "id": 2046,
+ "id": 2063,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 2047,
+ "id": 2064,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -44698,7 +45114,7 @@
}
},
{
- "id": 2043,
+ "id": 2060,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -44718,7 +45134,7 @@
}
},
{
- "id": 2061,
+ "id": 2078,
"name": "log_level",
"variant": "declaration",
"kind": 1024,
@@ -44743,7 +45159,7 @@
}
},
{
- "id": 2049,
+ "id": 2066,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -44768,7 +45184,7 @@
}
},
{
- "id": 2062,
+ "id": 2079,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -44793,7 +45209,7 @@
}
},
{
- "id": 2057,
+ "id": 2074,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -44810,7 +45226,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2058,
+ "id": 2075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -44824,7 +45240,7 @@
],
"indexSignatures": [
{
- "id": 2059,
+ "id": 2076,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -44838,7 +45254,7 @@
],
"parameters": [
{
- "id": 2060,
+ "id": 2077,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -44859,7 +45275,7 @@
}
},
{
- "id": 2052,
+ "id": 2069,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -44884,7 +45300,7 @@
}
},
{
- "id": 2042,
+ "id": 2059,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -44904,7 +45320,7 @@
}
},
{
- "id": 2041,
+ "id": 2058,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -44920,13 +45336,13 @@
],
"type": {
"type": "reference",
- "target": 2233,
+ "target": 2250,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
},
{
- "id": 2048,
+ "id": 2065,
"name": "vsn",
"variant": "declaration",
"kind": 1024,
@@ -44946,7 +45362,7 @@
}
},
{
- "id": 2064,
+ "id": 2081,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -44966,7 +45382,7 @@
}
},
{
- "id": 2065,
+ "id": 2082,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -44990,8 +45406,8 @@
{
"title": "Properties",
"children": [
- 2066, 2051, 2050, 2063, 2053, 2044, 2043, 2061, 2049, 2062, 2057, 2052, 2042, 2041,
- 2048, 2064, 2065
+ 2083, 2068, 2067, 2080, 2070, 2061, 2060, 2078, 2066, 2079, 2074, 2069, 2059, 2058,
+ 2065, 2081, 2082
]
}
],
@@ -45006,7 +45422,7 @@
}
},
{
- "id": 2069,
+ "id": 2086,
"name": "RealtimeMessage",
"variant": "declaration",
"kind": 2097152,
@@ -45021,14 +45437,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2070,
+ "id": 2087,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2072,
+ "id": 2089,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -45046,7 +45462,7 @@
}
},
{
- "id": 2075,
+ "id": 2092,
"name": "join_ref",
"variant": "declaration",
"kind": 1024,
@@ -45066,7 +45482,7 @@
}
},
{
- "id": 2073,
+ "id": 2090,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -45084,7 +45500,7 @@
}
},
{
- "id": 2074,
+ "id": 2091,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -45102,7 +45518,7 @@
}
},
{
- "id": 2071,
+ "id": 2088,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -45123,7 +45539,7 @@
"groups": [
{
"title": "Properties",
- "children": [2072, 2075, 2073, 2074, 2071]
+ "children": [2089, 2092, 2090, 2091, 2088]
}
],
"sources": [
@@ -45137,7 +45553,7 @@
}
},
{
- "id": 2076,
+ "id": 2093,
"name": "RealtimePostgresChangesFilter",
"variant": "declaration",
"kind": 2097152,
@@ -45151,7 +45567,7 @@
],
"typeParameters": [
{
- "id": 2082,
+ "id": 2099,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45163,7 +45579,7 @@
[
{
"type": "reference",
- "target": 2152,
+ "target": 2169,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"package": "@supabase/realtime-js"
},
@@ -45176,14 +45592,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2077,
+ "id": 2094,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2078,
+ "id": 2095,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -45205,14 +45621,14 @@
],
"type": {
"type": "reference",
- "target": 2082,
+ "target": 2099,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2081,
+ "id": 2098,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -45240,7 +45656,7 @@
}
},
{
- "id": 2079,
+ "id": 2096,
"name": "schema",
"variant": "declaration",
"kind": 1024,
@@ -45266,7 +45682,7 @@
}
},
{
- "id": 2080,
+ "id": 2097,
"name": "table",
"variant": "declaration",
"kind": 1024,
@@ -45297,7 +45713,7 @@
"groups": [
{
"title": "Properties",
- "children": [2078, 2081, 2079, 2080]
+ "children": [2095, 2098, 2096, 2097]
}
],
"sources": [
@@ -45311,7 +45727,7 @@
}
},
{
- "id": 2083,
+ "id": 2100,
"name": "RealtimePostgresChangesPayload",
"variant": "declaration",
"kind": 2097152,
@@ -45325,7 +45741,7 @@
],
"typeParameters": [
{
- "id": 2084,
+ "id": 2101,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45333,7 +45749,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2085,
+ "id": 2102,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45347,7 +45763,7 @@
],
"indexSignatures": [
{
- "id": 2086,
+ "id": 2103,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45361,7 +45777,7 @@
],
"parameters": [
{
- "id": 2087,
+ "id": 2104,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45387,11 +45803,11 @@
"types": [
{
"type": "reference",
- "target": 2088,
+ "target": 2105,
"typeArguments": [
{
"type": "reference",
- "target": 2084,
+ "target": 2101,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45402,11 +45818,11 @@
},
{
"type": "reference",
- "target": 2098,
+ "target": 2115,
"typeArguments": [
{
"type": "reference",
- "target": 2084,
+ "target": 2101,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45417,11 +45833,11 @@
},
{
"type": "reference",
- "target": 2107,
+ "target": 2124,
"typeArguments": [
{
"type": "reference",
- "target": 2084,
+ "target": 2101,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45434,7 +45850,7 @@
}
},
{
- "id": 2107,
+ "id": 2124,
"name": "RealtimePostgresDeletePayload",
"variant": "declaration",
"kind": 2097152,
@@ -45448,7 +45864,7 @@
],
"typeParameters": [
{
- "id": 2113,
+ "id": 2130,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45456,7 +45872,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2114,
+ "id": 2131,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45470,7 +45886,7 @@
],
"indexSignatures": [
{
- "id": 2115,
+ "id": 2132,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45484,7 +45900,7 @@
],
"parameters": [
{
- "id": 2116,
+ "id": 2133,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45520,14 +45936,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2108,
+ "id": 2125,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2109,
+ "id": 2126,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -45546,7 +45962,7 @@
[
{
"type": "reference",
- "target": 2156,
+ "target": 2173,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE",
"package": "@supabase/realtime-js"
},
@@ -45556,7 +45972,7 @@
}
},
{
- "id": 2110,
+ "id": 2127,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -45571,7 +45987,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2111,
+ "id": 2128,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45587,7 +46003,7 @@
}
},
{
- "id": 2112,
+ "id": 2129,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -45608,7 +46024,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2113,
+ "target": 2130,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -45622,7 +46038,7 @@
"groups": [
{
"title": "Properties",
- "children": [2109, 2110, 2112]
+ "children": [2126, 2127, 2129]
}
],
"sources": [
@@ -45638,7 +46054,7 @@
}
},
{
- "id": 2088,
+ "id": 2105,
"name": "RealtimePostgresInsertPayload",
"variant": "declaration",
"kind": 2097152,
@@ -45652,7 +46068,7 @@
],
"typeParameters": [
{
- "id": 2094,
+ "id": 2111,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45660,7 +46076,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2095,
+ "id": 2112,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45674,7 +46090,7 @@
],
"indexSignatures": [
{
- "id": 2096,
+ "id": 2113,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45688,7 +46104,7 @@
],
"parameters": [
{
- "id": 2097,
+ "id": 2114,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45724,14 +46140,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2089,
+ "id": 2106,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2090,
+ "id": 2107,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -45750,7 +46166,7 @@
[
{
"type": "reference",
- "target": 2154,
+ "target": 2171,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT",
"package": "@supabase/realtime-js"
},
@@ -45760,7 +46176,7 @@
}
},
{
- "id": 2091,
+ "id": 2108,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -45774,14 +46190,14 @@
],
"type": {
"type": "reference",
- "target": 2094,
+ "target": 2111,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2092,
+ "id": 2109,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -45796,7 +46212,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2093,
+ "id": 2110,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45815,7 +46231,7 @@
"groups": [
{
"title": "Properties",
- "children": [2090, 2091, 2092]
+ "children": [2107, 2108, 2109]
}
],
"sources": [
@@ -45831,7 +46247,7 @@
}
},
{
- "id": 2098,
+ "id": 2115,
"name": "RealtimePostgresUpdatePayload",
"variant": "declaration",
"kind": 2097152,
@@ -45845,7 +46261,7 @@
],
"typeParameters": [
{
- "id": 2103,
+ "id": 2120,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -45853,7 +46269,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2104,
+ "id": 2121,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -45867,7 +46283,7 @@
],
"indexSignatures": [
{
- "id": 2105,
+ "id": 2122,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -45881,7 +46297,7 @@
],
"parameters": [
{
- "id": 2106,
+ "id": 2123,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -45917,14 +46333,14 @@
{
"type": "reflection",
"declaration": {
- "id": 2099,
+ "id": 2116,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2100,
+ "id": 2117,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -45943,7 +46359,7 @@
[
{
"type": "reference",
- "target": 2155,
+ "target": 2172,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE",
"package": "@supabase/realtime-js"
},
@@ -45953,7 +46369,7 @@
}
},
{
- "id": 2101,
+ "id": 2118,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -45967,14 +46383,14 @@
],
"type": {
"type": "reference",
- "target": 2103,
+ "target": 2120,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 2102,
+ "id": 2119,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -45995,7 +46411,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2103,
+ "target": 2120,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46009,7 +46425,7 @@
"groups": [
{
"title": "Properties",
- "children": [2100, 2101, 2102]
+ "children": [2117, 2118, 2119]
}
],
"sources": [
@@ -46025,7 +46441,7 @@
}
},
{
- "id": 2117,
+ "id": 2134,
"name": "RealtimePresenceJoinPayload",
"variant": "declaration",
"kind": 2097152,
@@ -46039,7 +46455,7 @@
],
"typeParameters": [
{
- "id": 2123,
+ "id": 2140,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46047,7 +46463,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2124,
+ "id": 2141,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46061,7 +46477,7 @@
],
"indexSignatures": [
{
- "id": 2125,
+ "id": 2142,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46075,7 +46491,7 @@
],
"parameters": [
{
- "id": 2126,
+ "id": 2143,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46099,14 +46515,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2118,
+ "id": 2135,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2121,
+ "id": 2138,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -46129,7 +46545,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2123,
+ "target": 2140,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46141,7 +46557,7 @@
}
},
{
- "id": 2119,
+ "id": 2136,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -46160,7 +46576,7 @@
[
{
"type": "reference",
- "target": 2159,
+ "target": 2176,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN",
"package": "@supabase/realtime-js"
},
@@ -46170,7 +46586,7 @@
}
},
{
- "id": 2120,
+ "id": 2137,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -46188,7 +46604,7 @@
}
},
{
- "id": 2122,
+ "id": 2139,
"name": "newPresences",
"variant": "declaration",
"kind": 1024,
@@ -46211,7 +46627,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2123,
+ "target": 2140,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46226,7 +46642,7 @@
"groups": [
{
"title": "Properties",
- "children": [2121, 2119, 2120, 2122]
+ "children": [2138, 2136, 2137, 2139]
}
],
"sources": [
@@ -46240,7 +46656,7 @@
}
},
{
- "id": 2127,
+ "id": 2144,
"name": "RealtimePresenceLeavePayload",
"variant": "declaration",
"kind": 2097152,
@@ -46254,7 +46670,7 @@
],
"typeParameters": [
{
- "id": 2133,
+ "id": 2150,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46262,7 +46678,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2134,
+ "id": 2151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46276,7 +46692,7 @@
],
"indexSignatures": [
{
- "id": 2135,
+ "id": 2152,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46290,7 +46706,7 @@
],
"parameters": [
{
- "id": 2136,
+ "id": 2153,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46314,14 +46730,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2128,
+ "id": 2145,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 2131,
+ "id": 2148,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -46344,7 +46760,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2133,
+ "target": 2150,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46356,7 +46772,7 @@
}
},
{
- "id": 2129,
+ "id": 2146,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -46375,7 +46791,7 @@
[
{
"type": "reference",
- "target": 2160,
+ "target": 2177,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE",
"package": "@supabase/realtime-js"
},
@@ -46385,7 +46801,7 @@
}
},
{
- "id": 2130,
+ "id": 2147,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -46403,7 +46819,7 @@
}
},
{
- "id": 2132,
+ "id": 2149,
"name": "leftPresences",
"variant": "declaration",
"kind": 1024,
@@ -46426,7 +46842,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2133,
+ "target": 2150,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46441,7 +46857,7 @@
"groups": [
{
"title": "Properties",
- "children": [2131, 2129, 2130, 2132]
+ "children": [2148, 2146, 2147, 2149]
}
],
"sources": [
@@ -46455,7 +46871,7 @@
}
},
{
- "id": 2137,
+ "id": 2154,
"name": "RealtimePresenceState",
"variant": "declaration",
"kind": 2097152,
@@ -46469,7 +46885,7 @@
],
"typeParameters": [
{
- "id": 2141,
+ "id": 2158,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46477,7 +46893,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2142,
+ "id": 2159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46491,7 +46907,7 @@
],
"indexSignatures": [
{
- "id": 2143,
+ "id": 2160,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46505,7 +46921,7 @@
],
"parameters": [
{
- "id": 2144,
+ "id": 2161,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46527,7 +46943,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 2145,
+ "id": 2162,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46546,7 +46962,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 2138,
+ "id": 2155,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -46560,7 +46976,7 @@
],
"indexSignatures": [
{
- "id": 2139,
+ "id": 2156,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -46574,7 +46990,7 @@
],
"parameters": [
{
- "id": 2140,
+ "id": 2157,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -46596,7 +47012,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 2141,
+ "target": 2158,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -46612,7 +47028,7 @@
}
},
{
- "id": 2146,
+ "id": 2163,
"name": "RealtimeRemoveChannelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -46643,7 +47059,7 @@
}
},
{
- "id": 745,
+ "id": 747,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -46665,14 +47081,14 @@
],
"typeParameters": [
{
- "id": 752,
+ "id": 754,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 753,
+ "id": 755,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -46688,7 +47104,7 @@
},
"default": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -46700,14 +47116,14 @@
{
"type": "reflection",
"declaration": {
- "id": 746,
+ "id": 748,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 747,
+ "id": 749,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46721,14 +47137,14 @@
],
"type": {
"type": "reference",
- "target": 752,
+ "target": 754,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 748,
+ "id": 750,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -46749,7 +47165,7 @@
"groups": [
{
"title": "Properties",
- "children": [747, 748]
+ "children": [749, 750]
}
],
"sources": [
@@ -46764,14 +47180,14 @@
{
"type": "reflection",
"declaration": {
- "id": 749,
+ "id": 751,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 750,
+ "id": 752,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46789,7 +47205,7 @@
}
},
{
- "id": 751,
+ "id": 753,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -46814,19 +47230,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 753,
+ "target": 755,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -46837,7 +47253,7 @@
"groups": [
{
"title": "Properties",
- "children": [750, 751]
+ "children": [752, 753]
}
],
"sources": [
@@ -46853,7 +47269,7 @@
}
},
{
- "id": 754,
+ "id": 756,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -46880,7 +47296,7 @@
],
"typeParameters": [
{
- "id": 761,
+ "id": 763,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -46893,14 +47309,14 @@
{
"type": "reflection",
"declaration": {
- "id": 755,
+ "id": 757,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 756,
+ "id": 758,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46914,14 +47330,14 @@
],
"type": {
"type": "reference",
- "target": 761,
+ "target": 763,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 757,
+ "id": 759,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -46942,7 +47358,7 @@
"groups": [
{
"title": "Properties",
- "children": [756, 757]
+ "children": [758, 759]
}
],
"sources": [
@@ -46957,14 +47373,14 @@
{
"type": "reflection",
"declaration": {
- "id": 758,
+ "id": 760,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 759,
+ "id": 761,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -46980,7 +47396,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 761,
+ "target": 763,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -46997,7 +47413,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 761,
+ "target": 763,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -47015,7 +47431,7 @@
}
},
{
- "id": 760,
+ "id": 762,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -47029,7 +47445,7 @@
],
"type": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -47038,7 +47454,7 @@
"groups": [
{
"title": "Properties",
- "children": [759, 760]
+ "children": [761, 762]
}
],
"sources": [
@@ -47054,7 +47470,7 @@
}
},
{
- "id": 1287,
+ "id": 1289,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -47069,14 +47485,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1288,
+ "id": 1290,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1295,
+ "id": 1297,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -47090,13 +47506,13 @@
],
"type": {
"type": "reference",
- "target": 1112,
+ "target": 1114,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1291,
+ "id": 1293,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -47126,7 +47542,7 @@
}
},
{
- "id": 1292,
+ "id": 1294,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -47144,7 +47560,7 @@
}
},
{
- "id": 1293,
+ "id": 1295,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -47162,7 +47578,7 @@
}
},
{
- "id": 1289,
+ "id": 1291,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -47180,7 +47596,7 @@
}
},
{
- "id": 1294,
+ "id": 1296,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -47198,7 +47614,7 @@
}
},
{
- "id": 1296,
+ "id": 1298,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -47216,7 +47632,7 @@
}
},
{
- "id": 1290,
+ "id": 1292,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -47237,7 +47653,7 @@
"groups": [
{
"title": "Properties",
- "children": [1295, 1291, 1292, 1293, 1289, 1294, 1296, 1290]
+ "children": [1297, 1293, 1294, 1295, 1291, 1296, 1298, 1292]
}
],
"sources": [
@@ -47252,13 +47668,13 @@
"extendedBy": [
{
"type": "reference",
- "target": 1297,
+ "target": 1299,
"name": "JwtPayload"
}
]
},
{
- "id": 1004,
+ "id": 1006,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -47276,14 +47692,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1005,
+ "id": 1007,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1007,
+ "id": 1009,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -47301,7 +47717,7 @@
}
},
{
- "id": 1008,
+ "id": 1010,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47318,14 +47734,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1009,
+ "id": 1011,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1011,
+ "id": 1013,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47353,7 +47769,7 @@
}
},
{
- "id": 1010,
+ "id": 1012,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -47384,7 +47800,7 @@
"groups": [
{
"title": "Properties",
- "children": [1011, 1010]
+ "children": [1013, 1012]
}
],
"sources": [
@@ -47398,7 +47814,7 @@
}
},
{
- "id": 1006,
+ "id": 1008,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -47419,7 +47835,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1003,
+ "target": 1005,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -47445,7 +47861,7 @@
"groups": [
{
"title": "Properties",
- "children": [1007, 1008, 1006]
+ "children": [1009, 1010, 1008]
}
],
"sources": [
@@ -47460,14 +47876,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1012,
+ "id": 1014,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1015,
+ "id": 1017,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47484,14 +47900,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1016,
+ "id": 1018,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1017,
+ "id": 1019,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47522,7 +47938,7 @@
"groups": [
{
"title": "Properties",
- "children": [1017]
+ "children": [1019]
}
],
"sources": [
@@ -47536,7 +47952,7 @@
}
},
{
- "id": 1014,
+ "id": 1016,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -47554,7 +47970,7 @@
}
},
{
- "id": 1013,
+ "id": 1015,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -47575,7 +47991,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1002,
+ "target": 1004,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -47601,7 +48017,7 @@
"groups": [
{
"title": "Properties",
- "children": [1015, 1014, 1013]
+ "children": [1017, 1016, 1015]
}
],
"sources": [
@@ -47617,7 +48033,7 @@
}
},
{
- "id": 871,
+ "id": 873,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -47632,14 +48048,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 872,
+ "id": 874,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 873,
+ "id": 875,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47656,14 +48072,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 874,
+ "id": 876,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 876,
+ "id": 878,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47691,7 +48107,7 @@
}
},
{
- "id": 875,
+ "id": 877,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -47738,7 +48154,7 @@
"groups": [
{
"title": "Properties",
- "children": [876, 875]
+ "children": [878, 877]
}
],
"sources": [
@@ -47755,7 +48171,7 @@
"groups": [
{
"title": "Properties",
- "children": [873]
+ "children": [875]
}
],
"sources": [
@@ -47769,7 +48185,7 @@
}
},
{
- "id": 920,
+ "id": 922,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -47784,14 +48200,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 921,
+ "id": 923,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 925,
+ "id": 927,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -47827,7 +48243,7 @@
}
},
{
- "id": 926,
+ "id": 928,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -47863,7 +48279,7 @@
}
},
{
- "id": 927,
+ "id": 929,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -47880,14 +48296,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 928,
+ "id": 930,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 929,
+ "id": 931,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -47918,7 +48334,7 @@
"groups": [
{
"title": "Properties",
- "children": [929]
+ "children": [931]
}
],
"sources": [
@@ -47932,7 +48348,7 @@
}
},
{
- "id": 922,
+ "id": 924,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -48041,7 +48457,7 @@
{
"type": "reflection",
"declaration": {
- "id": 923,
+ "id": 925,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48061,7 +48477,7 @@
}
},
{
- "id": 924,
+ "id": 926,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -48122,7 +48538,7 @@
"groups": [
{
"title": "Properties",
- "children": [925, 926, 927, 922, 924]
+ "children": [927, 928, 929, 924, 926]
}
],
"sources": [
@@ -48136,7 +48552,7 @@
}
},
{
- "id": 908,
+ "id": 910,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -48151,14 +48567,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 909,
+ "id": 911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 911,
+ "id": 913,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -48175,14 +48591,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 912,
+ "id": 914,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 915,
+ "id": 917,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -48207,7 +48623,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 916,
+ "id": 918,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -48221,7 +48637,7 @@
],
"indexSignatures": [
{
- "id": 917,
+ "id": 919,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -48235,7 +48651,7 @@
],
"parameters": [
{
- "id": 918,
+ "id": 920,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -48256,7 +48672,7 @@
}
},
{
- "id": 913,
+ "id": 915,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -48284,7 +48700,7 @@
}
},
{
- "id": 914,
+ "id": 916,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -48312,7 +48728,7 @@
}
},
{
- "id": 919,
+ "id": 921,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -48343,7 +48759,7 @@
"groups": [
{
"title": "Properties",
- "children": [915, 913, 914, 919]
+ "children": [917, 915, 916, 921]
}
],
"sources": [
@@ -48357,7 +48773,7 @@
}
},
{
- "id": 910,
+ "id": 912,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -48379,7 +48795,7 @@
],
"type": {
"type": "reference",
- "target": 700,
+ "target": 702,
"name": "Provider",
"package": "@supabase/auth-js"
}
@@ -48388,7 +48804,7 @@
"groups": [
{
"title": "Properties",
- "children": [911, 910]
+ "children": [913, 912]
}
],
"sources": [
@@ -48402,7 +48818,7 @@
}
},
{
- "id": 885,
+ "id": 887,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -48429,14 +48845,14 @@
{
"type": "reflection",
"declaration": {
- "id": 886,
+ "id": 888,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 887,
+ "id": 889,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -48453,14 +48869,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 888,
+ "id": 890,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 889,
+ "id": 891,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -48483,7 +48899,7 @@
"groups": [
{
"title": "Properties",
- "children": [889]
+ "children": [891]
}
],
"sources": [
@@ -48500,7 +48916,7 @@
"groups": [
{
"title": "Properties",
- "children": [887]
+ "children": [889]
}
],
"sources": [
@@ -48516,7 +48932,7 @@
}
},
{
- "id": 890,
+ "id": 892,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -48534,14 +48950,14 @@
{
"type": "reflection",
"declaration": {
- "id": 891,
+ "id": 893,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 892,
+ "id": 894,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -48567,7 +48983,7 @@
}
},
{
- "id": 893,
+ "id": 895,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -48584,14 +49000,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 894,
+ "id": 896,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 898,
+ "id": 900,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -48618,239 +49034,239 @@
"name": "string"
}
},
+ {
+ "id": 899,
+ "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": 453,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
{
"id": 897,
- "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": 453,
- "character": 8
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "object"
- }
- },
- {
- "id": 895,
- "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": 445,
- "character": 8
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 896,
- "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": 447,
- "character": 8
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [898, 897, 895, 896]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 443,
- "character": 14
- }
- ]
- }
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [892, 893]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 440,
- "character": 48
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 899,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 901,
- "name": "options",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
- "line": 460,
- "character": 4
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 902,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 905,
- "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": 470,
- "character": 8
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 906,
- "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": 472,
- "character": 8
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "sms"
- },
- {
- "type": "literal",
- "value": "whatsapp"
- }
- ]
- }
- },
- {
- "id": 904,
+ "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": 445,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 898,
+ "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": 447,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [900, 899, 897, 898]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 443,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [894, 895]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 440,
+ "character": 48
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 901,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 903,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 460,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 904,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 907,
+ "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": 470,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 908,
+ "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": 472,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ }
+ },
+ {
+ "id": 906,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -48894,7 +49310,7 @@
}
},
{
- "id": 903,
+ "id": 905,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -48925,7 +49341,7 @@
"groups": [
{
"title": "Properties",
- "children": [905, 906, 904, 903]
+ "children": [907, 908, 906, 905]
}
],
"sources": [
@@ -48939,7 +49355,7 @@
}
},
{
- "id": 900,
+ "id": 902,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -48968,7 +49384,7 @@
"groups": [
{
"title": "Properties",
- "children": [901, 900]
+ "children": [903, 902]
}
],
"sources": [
@@ -48984,7 +49400,7 @@
}
},
{
- "id": 1018,
+ "id": 1020,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -49002,14 +49418,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1019,
+ "id": 1021,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1021,
+ "id": 1023,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49026,14 +49442,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1022,
+ "id": 1024,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1024,
+ "id": 1026,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49061,7 +49477,7 @@
}
},
{
- "id": 1023,
+ "id": 1025,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49089,7 +49505,7 @@
}
},
{
- "id": 1025,
+ "id": 1027,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -49120,7 +49536,7 @@
"groups": [
{
"title": "Properties",
- "children": [1024, 1023, 1025]
+ "children": [1026, 1025, 1027]
}
],
"sources": [
@@ -49134,7 +49550,7 @@
}
},
{
- "id": 1020,
+ "id": 1022,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -49163,7 +49579,7 @@
"groups": [
{
"title": "Properties",
- "children": [1021, 1020]
+ "children": [1023, 1022]
}
],
"sources": [
@@ -49178,14 +49594,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1026,
+ "id": 1028,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1027,
+ "id": 1029,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -49211,7 +49627,7 @@
}
},
{
- "id": 1028,
+ "id": 1030,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49228,14 +49644,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1029,
+ "id": 1031,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1031,
+ "id": 1033,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49263,7 +49679,7 @@
}
},
{
- "id": 1030,
+ "id": 1032,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49291,7 +49707,7 @@
}
},
{
- "id": 1032,
+ "id": 1034,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -49322,7 +49738,7 @@
"groups": [
{
"title": "Properties",
- "children": [1031, 1030, 1032]
+ "children": [1033, 1032, 1034]
}
],
"sources": [
@@ -49339,7 +49755,7 @@
"groups": [
{
"title": "Properties",
- "children": [1027, 1028]
+ "children": [1029, 1030]
}
],
"sources": [
@@ -49355,7 +49771,7 @@
}
},
{
- "id": 1273,
+ "id": 1275,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -49370,14 +49786,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1274,
+ "id": 1276,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1275,
+ "id": 1277,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -49421,7 +49837,7 @@
"groups": [
{
"title": "Properties",
- "children": [1275]
+ "children": [1277]
}
],
"sources": [
@@ -49435,7 +49851,7 @@
}
},
{
- "id": 1325,
+ "id": 1327,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -49457,7 +49873,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1324,
+ "target": 1326,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -49465,7 +49881,7 @@
}
},
{
- "id": 877,
+ "id": 879,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -49479,7 +49895,7 @@
],
"type": {
"type": "reference",
- "target": 740,
+ "target": 742,
"typeArguments": [
{
"type": "intersection",
@@ -49496,14 +49912,14 @@
{
"type": "reflection",
"declaration": {
- "id": 878,
+ "id": 880,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 879,
+ "id": 881,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -49520,14 +49936,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 880,
+ "id": 882,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 883,
+ "id": 885,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -49547,7 +49963,7 @@
}
},
{
- "id": 884,
+ "id": 886,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -49576,7 +49992,7 @@
}
},
{
- "id": 882,
+ "id": 884,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -49596,7 +50012,7 @@
}
},
{
- "id": 881,
+ "id": 883,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -49619,7 +50035,7 @@
"groups": [
{
"title": "Properties",
- "children": [883, 884, 882, 881]
+ "children": [885, 886, 884, 883]
}
],
"sources": [
@@ -49636,7 +50052,7 @@
"groups": [
{
"title": "Properties",
- "children": [879]
+ "children": [881]
}
],
"sources": [
@@ -49656,7 +50072,7 @@
}
},
{
- "id": 930,
+ "id": 932,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -49671,14 +50087,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 931,
+ "id": 933,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 936,
+ "id": 938,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -49698,14 +50114,14 @@
{
"type": "reflection",
"declaration": {
- "id": 937,
+ "id": 939,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 938,
+ "id": 940,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -49720,7 +50136,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 939,
+ "id": 941,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49734,7 +50150,7 @@
],
"signatures": [
{
- "id": 940,
+ "id": 942,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -49752,7 +50168,7 @@
"groups": [
{
"title": "Properties",
- "children": [938]
+ "children": [940]
}
],
"sources": [
@@ -49772,7 +50188,7 @@
}
},
{
- "id": 932,
+ "id": 934,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -49789,7 +50205,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 933,
+ "id": 935,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49803,14 +50219,14 @@
],
"signatures": [
{
- "id": 934,
+ "id": 936,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 935,
+ "id": 937,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -49874,7 +50290,7 @@
}
},
{
- "id": 941,
+ "id": 943,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -49891,7 +50307,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 942,
+ "id": 944,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -49905,14 +50321,14 @@
],
"signatures": [
{
- "id": 943,
+ "id": 945,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 944,
+ "id": 946,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -49928,7 +50344,7 @@
}
},
{
- "id": 945,
+ "id": 947,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -49988,7 +50404,7 @@
"groups": [
{
"title": "Properties",
- "children": [936, 932, 941]
+ "children": [938, 934, 943]
}
],
"sources": [
@@ -50002,7 +50418,7 @@
}
},
{
- "id": 946,
+ "id": 948,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -50020,14 +50436,14 @@
{
"type": "reflection",
"declaration": {
- "id": 947,
+ "id": 949,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 948,
+ "id": 950,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -50045,7 +50461,7 @@
}
},
{
- "id": 951,
+ "id": 953,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50062,14 +50478,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 952,
+ "id": 954,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 954,
+ "id": 956,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50097,7 +50513,7 @@
}
},
{
- "id": 955,
+ "id": 957,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -50169,7 +50585,7 @@
}
},
{
- "id": 953,
+ "id": 955,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -50200,7 +50616,7 @@
"groups": [
{
"title": "Properties",
- "children": [954, 955, 953]
+ "children": [956, 957, 955]
}
],
"sources": [
@@ -50214,7 +50630,7 @@
}
},
{
- "id": 950,
+ "id": 952,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -50242,7 +50658,7 @@
}
},
{
- "id": 949,
+ "id": 951,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -50274,7 +50690,7 @@
],
"type": {
"type": "reference",
- "target": 930,
+ "target": 932,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -50283,7 +50699,7 @@
"groups": [
{
"title": "Properties",
- "children": [948, 951, 950, 949]
+ "children": [950, 953, 952, 951]
}
],
"sources": [
@@ -50298,14 +50714,14 @@
{
"type": "reflection",
"declaration": {
- "id": 956,
+ "id": 958,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 957,
+ "id": 959,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -50323,7 +50739,7 @@
}
},
{
- "id": 958,
+ "id": 960,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -50373,7 +50789,7 @@
}
},
{
- "id": 960,
+ "id": 962,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -50390,14 +50806,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 961,
+ "id": 963,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 962,
+ "id": 964,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -50428,7 +50844,7 @@
"groups": [
{
"title": "Properties",
- "children": [962]
+ "children": [964]
}
],
"sources": [
@@ -50442,7 +50858,7 @@
}
},
{
- "id": 959,
+ "id": 961,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -50476,7 +50892,7 @@
"groups": [
{
"title": "Properties",
- "children": [957, 958, 960, 959]
+ "children": [959, 960, 962, 961]
}
],
"sources": [
@@ -50492,7 +50908,7 @@
}
},
{
- "id": 798,
+ "id": 800,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -50506,19 +50922,19 @@
],
"type": {
"type": "reference",
- "target": 745,
+ "target": 747,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 799,
+ "id": 801,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 800,
+ "id": 802,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -50555,7 +50971,7 @@
"groups": [
{
"title": "Properties",
- "children": [800]
+ "children": [802]
}
],
"sources": [
@@ -50573,7 +50989,7 @@
}
},
{
- "id": 742,
+ "id": 744,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -50595,14 +51011,14 @@
],
"typeParameters": [
{
- "id": 743,
+ "id": 745,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 744,
+ "id": 746,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -50612,7 +51028,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 743,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -50629,14 +51045,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 743,
+ "target": 745,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 744,
+ "target": 746,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -50657,7 +51073,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28"
}
],
"typeParameters": [
@@ -50707,7 +51123,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 111,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111"
}
],
"type": {
@@ -50723,7 +51139,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 111,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L111"
}
],
"signatures": [
@@ -50775,7 +51191,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36"
}
],
"type": {
@@ -50808,7 +51224,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L40"
}
],
"type": {
@@ -50837,7 +51253,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 72,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -50878,7 +51294,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 52,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L52"
}
],
"type": {
@@ -50907,7 +51323,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 68,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L68"
}
],
"type": {
@@ -50949,7 +51365,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 78,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -50990,7 +51406,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 48,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L48"
}
],
"type": {
@@ -51019,7 +51435,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 56,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L56"
}
],
"type": {
@@ -51060,7 +51476,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 44,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -51089,7 +51505,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 83,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L83"
}
],
"type": {
@@ -51131,7 +51547,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 64,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L64"
}
],
"type": {
@@ -51163,7 +51579,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 36,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L36"
}
]
}
@@ -51198,7 +51614,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32"
}
],
"type": {
@@ -51223,7 +51639,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 33,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L33"
}
],
"type": {
@@ -51246,7 +51662,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 32,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L32"
}
]
}
@@ -51265,7 +51681,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90"
}
],
"type": {
@@ -51306,7 +51722,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 94,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -51340,7 +51756,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 98,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -51375,7 +51791,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 90,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L90"
}
]
}
@@ -51402,12 +51818,12 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L88"
}
],
"type": {
"type": "reference",
- "target": 2039,
+ "target": 2056,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js"
}
@@ -51425,7 +51841,7 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L89"
}
],
"type": {
@@ -51450,14 +51866,14 @@
"fileName": "packages/core/supabase-js/src/lib/types.ts",
"line": 28,
"character": 48,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/lib/types.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/lib/types.ts#L28"
}
]
}
}
},
{
- "id": 1255,
+ "id": 1257,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -51523,14 +51939,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1256,
+ "id": 1258,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1257,
+ "id": 1259,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -51569,7 +51985,7 @@
"groups": [
{
"title": "Properties",
- "children": [1257]
+ "children": [1259]
}
],
"sources": [
@@ -51585,7 +52001,7 @@
}
},
{
- "id": 1354,
+ "id": 1356,
"name": "UpdateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -51608,14 +52024,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1355,
+ "id": 1357,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1356,
+ "id": 1358,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -51643,7 +52059,7 @@
}
},
{
- "id": 1357,
+ "id": 1359,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -51671,7 +52087,7 @@
}
},
{
- "id": 1360,
+ "id": 1362,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -51697,14 +52113,14 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 1326,
+ "target": 1328,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1358,
+ "id": 1360,
"name": "logo_uri",
"variant": "declaration",
"kind": 1024,
@@ -51732,7 +52148,7 @@
}
},
{
- "id": 1359,
+ "id": 1361,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -51766,7 +52182,7 @@
"groups": [
{
"title": "Properties",
- "children": [1356, 1357, 1360, 1358, 1359]
+ "children": [1358, 1359, 1362, 1360, 1361]
}
],
"sources": [
@@ -51780,7 +52196,7 @@
}
},
{
- "id": 801,
+ "id": 803,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -51794,19 +52210,19 @@
],
"type": {
"type": "reference",
- "target": 754,
+ "target": 756,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 802,
+ "id": 804,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 803,
+ "id": 805,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -51829,7 +52245,7 @@
"groups": [
{
"title": "Properties",
- "children": [803]
+ "children": [805]
}
],
"sources": [
@@ -51847,7 +52263,7 @@
}
},
{
- "id": 982,
+ "id": 984,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -51864,19 +52280,19 @@
"types": [
{
"type": "reference",
- "target": 983,
+ "target": 985,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 991,
+ "target": 993,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 999,
+ "target": 1001,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -51884,7 +52300,7 @@
}
},
{
- "id": 736,
+ "id": 738,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -51899,14 +52315,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 737,
+ "id": 739,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 739,
+ "id": 741,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -51924,7 +52340,7 @@
}
},
{
- "id": 738,
+ "id": 740,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -51940,7 +52356,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 735,
+ "target": 737,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -51950,7 +52366,7 @@
"groups": [
{
"title": "Properties",
- "children": [739, 738]
+ "children": [741, 740]
}
],
"sources": [
@@ -51964,7 +52380,7 @@
}
},
{
- "id": 735,
+ "id": 737,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -51998,7 +52414,7 @@
}
},
{
- "id": 981,
+ "id": 983,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -52015,13 +52431,13 @@
"types": [
{
"type": "reference",
- "target": 946,
+ "target": 948,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 964,
+ "target": 966,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -52029,7 +52445,7 @@
}
},
{
- "id": 674,
+ "id": 676,
"name": "AuthAdminApi",
"variant": "declaration",
"kind": 32,
@@ -52055,7 +52471,7 @@
}
},
{
- "id": 675,
+ "id": 677,
"name": "AuthClient",
"variant": "declaration",
"kind": 32,
@@ -52081,7 +52497,7 @@
}
},
{
- "id": 689,
+ "id": 691,
"name": "lockInternals",
"variant": "declaration",
"kind": 32,
@@ -52102,14 +52518,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 690,
+ "id": 692,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 691,
+ "id": 693,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -52134,7 +52550,7 @@
"groups": [
{
"title": "Properties",
- "children": [691]
+ "children": [693]
}
],
"sources": [
@@ -52148,7 +52564,7 @@
}
},
{
- "id": 2166,
+ "id": 2183,
"name": "REALTIME_CHANNEL_STATES",
"variant": "declaration",
"kind": 32,
@@ -52177,7 +52593,7 @@
}
},
{
- "id": 1324,
+ "id": 1326,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -52243,7 +52659,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35"
}
],
"signatures": [
@@ -52258,7 +52674,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 35,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L35"
}
],
"typeParameters": [
@@ -52306,7 +52722,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 39,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39"
}
],
"type": {
@@ -52326,7 +52742,7 @@
"fileName": "packages/core/supabase-js/src/index.ts",
"line": 39,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/a66387e9923255160031a1c55545cf7ab27b3aaf/packages/core/supabase-js/src/index.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/afdbbfd91c4150b1e5d37aae1f69e94b7882c443/packages/core/supabase-js/src/index.ts#L39"
}
]
}
@@ -52648,7 +53064,7 @@
]
},
{
- "id": 1436,
+ "id": 1453,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -52662,7 +53078,7 @@
],
"signatures": [
{
- "id": 1437,
+ "id": 1454,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -52676,7 +53092,7 @@
],
"parameters": [
{
- "id": 1438,
+ "id": 1455,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52693,7 +53109,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1461,
+ "target": 1478,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -52702,7 +53118,7 @@
]
},
{
- "id": 1433,
+ "id": 1450,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -52716,7 +53132,7 @@
],
"signatures": [
{
- "id": 1434,
+ "id": 1451,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -52730,7 +53146,7 @@
],
"parameters": [
{
- "id": 1435,
+ "id": 1452,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52747,7 +53163,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1451,
+ "target": 1468,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -52756,7 +53172,7 @@
]
},
{
- "id": 1442,
+ "id": 1459,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -52770,7 +53186,7 @@
],
"signatures": [
{
- "id": 1443,
+ "id": 1460,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -52784,7 +53200,7 @@
],
"parameters": [
{
- "id": 1444,
+ "id": 1461,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52801,7 +53217,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1518,
+ "target": 1535,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -52810,7 +53226,7 @@
]
},
{
- "id": 1445,
+ "id": 1462,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -52824,7 +53240,7 @@
],
"signatures": [
{
- "id": 1446,
+ "id": 1463,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -52838,7 +53254,7 @@
],
"parameters": [
{
- "id": 1447,
+ "id": 1464,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52855,7 +53271,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1572,
+ "target": 1589,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -52864,7 +53280,7 @@
]
},
{
- "id": 1439,
+ "id": 1456,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -52878,7 +53294,7 @@
],
"signatures": [
{
- "id": 1440,
+ "id": 1457,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -52892,7 +53308,7 @@
],
"parameters": [
{
- "id": 1441,
+ "id": 1458,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52909,7 +53325,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1493,
+ "target": 1510,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -52918,7 +53334,7 @@
]
},
{
- "id": 1448,
+ "id": 1465,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -52932,7 +53348,7 @@
],
"signatures": [
{
- "id": 1449,
+ "id": 1466,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -52946,7 +53362,7 @@
],
"parameters": [
{
- "id": 1450,
+ "id": 1467,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -52963,7 +53379,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1582,
+ "target": 1599,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -52972,7 +53388,7 @@
]
},
{
- "id": 676,
+ "id": 678,
"name": "navigatorLock",
"variant": "declaration",
"kind": 64,
@@ -52986,7 +53402,7 @@
],
"signatures": [
{
- "id": 677,
+ "id": 679,
"name": "navigatorLock",
"variant": "signature",
"kind": 4096,
@@ -53061,7 +53477,7 @@
],
"typeParameters": [
{
- "id": 678,
+ "id": 680,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -53070,7 +53486,7 @@
],
"parameters": [
{
- "id": 679,
+ "id": 681,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -53089,7 +53505,7 @@
}
},
{
- "id": 680,
+ "id": 682,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -53116,7 +53532,7 @@
}
},
{
- "id": 681,
+ "id": 683,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -53132,7 +53548,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 682,
+ "id": 684,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -53146,7 +53562,7 @@
],
"signatures": [
{
- "id": 683,
+ "id": 685,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -53167,7 +53583,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 678,
+ "target": 680,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -53191,7 +53607,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 678,
+ "target": 680,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -53204,7 +53620,7 @@
]
},
{
- "id": 692,
+ "id": 694,
"name": "processLock",
"variant": "declaration",
"kind": 64,
@@ -53218,7 +53634,7 @@
],
"signatures": [
{
- "id": 693,
+ "id": 695,
"name": "processLock",
"variant": "signature",
"kind": 4096,
@@ -53260,7 +53676,7 @@
],
"typeParameters": [
{
- "id": 694,
+ "id": 696,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -53269,7 +53685,7 @@
],
"parameters": [
{
- "id": 695,
+ "id": 697,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -53288,7 +53704,7 @@
}
},
{
- "id": 696,
+ "id": 698,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -53315,7 +53731,7 @@
}
},
{
- "id": 697,
+ "id": 699,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -53331,7 +53747,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 698,
+ "id": 700,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -53345,7 +53761,7 @@
],
"signatures": [
{
- "id": 699,
+ "id": 701,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -53366,7 +53782,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 694,
+ "target": 696,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -53390,7 +53806,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 694,
+ "target": 696,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -53403,7 +53819,7 @@
]
},
{
- "id": 804,
+ "id": 806,
"name": "Session",
"variant": "reference",
"kind": 4194304,
@@ -53418,7 +53834,7 @@
"target": 37
},
{
- "id": 841,
+ "id": 843,
"name": "User",
"variant": "reference",
"kind": 4194304,
@@ -53436,46 +53852,47 @@
"groups": [
{
"title": "Enumerations",
- "children": [97, 2147, 2152, 2157, 2161]
+ "children": [97, 2164, 2169, 2174, 2178]
},
{
"title": "Classes",
"children": [
- 1461, 1451, 1518, 1509, 1594, 1501, 1545, 1572, 1493, 1471, 1582, 1481, 79, 69, 64, 74, 277,
- 363, 684, 52, 1620, 1929, 1603, 113, 2167
+ 1478, 1468, 1535, 1526, 1611, 1518, 1562, 1589, 1510, 1488, 1599, 1498, 79, 69, 64, 74, 277,
+ 363, 686, 52, 1637, 1946, 1620, 113, 2184
]
},
{
"title": "Interfaces",
"children": [
- 848, 807, 1417, 37, 11, 1055, 1248, 1374, 1118, 1317, 1297, 861, 833, 842, 810, 838, 991,
- 983, 999, 2183, 2233
+ 850, 809, 1427, 37, 11, 1057, 1250, 1376, 1120, 1319, 1299, 863, 835, 844, 812, 840, 993,
+ 985, 1001, 2200, 2250
]
},
{
"title": "Type Aliases",
"children": [
- 805, 702, 701, 1112, 907, 1238, 1235, 1245, 1242, 1103, 1107, 1102, 1104, 1105, 1106, 1280,
- 1098, 1279, 1281, 1113, 1108, 1099, 1097, 1090, 1413, 1414, 771, 762, 766, 776, 780, 1261,
- 1346, 1003, 963, 964, 823, 822, 86, 1049, 1039, 1058, 1063, 1059, 1070, 1044, 1033, 712,
- 1258, 1282, 703, 1089, 1088, 1086, 1085, 1087, 1071, 1277, 1276, 1278, 1084, 1072, 1083,
- 1076, 1075, 1077, 1081, 1002, 1397, 1403, 1330, 1326, 1362, 1329, 1361, 1327, 1328, 785,
- 1269, 1262, 50, 46, 48, 740, 700, 272, 276, 270, 1914, 1928, 2039, 2069, 2076, 2083, 2107,
- 2088, 2098, 2117, 2127, 2137, 2146, 745, 754, 1287, 1004, 871, 920, 908, 885, 890, 1018,
- 1273, 1325, 877, 930, 946, 798, 742, 243, 1255, 1354, 801, 982, 736, 735, 981
+ 807, 704, 703, 1114, 909, 1240, 1237, 1247, 1244, 1105, 1109, 1104, 1106, 1107, 1108, 1282,
+ 1100, 1281, 1283, 1115, 1110, 1101, 1099, 1092, 1415, 1416, 1424, 1425, 773, 764, 768, 778,
+ 782, 1263, 1348, 1005, 965, 966, 825, 824, 86, 1051, 1041, 1060, 1065, 1061, 1072, 1046,
+ 1035, 714, 1260, 1284, 705, 1091, 1090, 1088, 1087, 1089, 1073, 1279, 1278, 1280, 1086,
+ 1074, 1085, 1078, 1077, 1079, 1083, 1004, 1399, 1405, 1332, 1328, 1364, 1331, 1363, 1329,
+ 1330, 1419, 787, 1271, 1264, 50, 46, 48, 742, 702, 272, 276, 270, 1931, 1945, 2056, 2086,
+ 2093, 2100, 2124, 2105, 2115, 2134, 2144, 2154, 2163, 747, 756, 1289, 1006, 873, 922, 910,
+ 887, 892, 1020, 1275, 1327, 879, 932, 948, 800, 744, 243, 1257, 1356, 803, 984, 738, 737,
+ 983
]
},
{
"title": "Variables",
- "children": [674, 675, 689, 2166, 1324]
+ "children": [676, 677, 691, 2183, 1326]
},
{
"title": "Functions",
- "children": [1, 1436, 1433, 1442, 1445, 1439, 1448, 676, 692]
+ "children": [1, 1453, 1450, 1459, 1462, 1456, 1465, 678, 694]
},
{
"title": "References",
- "children": [804, 841]
+ "children": [806, 843]
}
],
"packageName": "@supabase/supabase-js",
@@ -55952,873 +56369,865 @@
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "default.stopAutoRefresh"
},
- "651": {
+ "653": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "652": {
+ "654": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "653": {
+ "655": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "jwt"
},
- "654": {
+ "656": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "655": {
+ "657": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "656": {
+ "658": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "657": {
+ "659": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.allowExpired"
},
- "658": {
+ "660": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.jwks"
},
- "659": {
+ "661": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "660": {
+ "662": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "661": {
+ "663": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "662": {
+ "664": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "663": {
+ "665": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "664": {
+ "666": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.claims"
},
- "665": {
+ "667": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.header"
},
- "666": {
+ "668": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.signature"
},
- "667": {
+ "669": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "668": {
+ "670": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "669": {
+ "671": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "670": {
+ "672": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "671": {
+ "673": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "672": {
+ "674": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "673": {
+ "675": {
"sourceFileName": "../auth-js/src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "674": {
+ "676": {
"sourceFileName": "../auth-js/src/AuthAdminApi.ts",
"qualifiedName": "AuthAdminApi"
},
- "675": {
+ "677": {
"sourceFileName": "../auth-js/src/AuthClient.ts",
"qualifiedName": "AuthClient"
},
- "676": {
+ "678": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "677": {
+ "679": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "678": {
+ "680": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "R"
},
- "679": {
+ "681": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "name"
},
- "680": {
+ "682": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "681": {
+ "683": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "fn"
},
- "682": {
+ "684": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "683": {
+ "685": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "684": {
+ "686": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "685": {
+ "687": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.__constructor"
},
- "686": {
+ "688": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "687": {
+ "689": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "message"
},
- "688": {
+ "690": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout"
},
- "689": {
+ "691": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "internals"
},
- "690": {
+ "692": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "691": {
+ "693": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type.debug"
},
- "692": {
+ "694": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "693": {
+ "695": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "694": {
+ "696": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "R"
},
- "695": {
+ "697": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "name"
},
- "696": {
+ "698": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "697": {
+ "699": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "fn"
},
- "698": {
+ "700": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "699": {
+ "701": {
"sourceFileName": "../auth-js/src/lib/locks.ts",
"qualifiedName": "__type"
},
- "700": {
+ "702": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Provider"
},
- "701": {
+ "703": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthChangeEventMFA"
},
- "702": {
+ "704": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthChangeEvent"
},
- "703": {
+ "705": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "LockFunc"
},
- "704": {
+ "706": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "705": {
+ "707": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "706": {
+ "708": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "name"
},
- "707": {
+ "709": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "acquireTimeout"
},
- "708": {
+ "710": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "fn"
},
- "709": {
+ "711": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "710": {
+ "712": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "711": {
+ "713": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "R"
},
- "712": {
+ "714": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "GoTrueClientOptions"
},
- "713": {
+ "715": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "714": {
+ "716": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "715": {
+ "717": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.headers"
},
- "716": {
+ "718": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "717": {
+ "719": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "719": {
+ "721": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.storageKey"
},
- "720": {
+ "722": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.detectSessionInUrl"
},
- "721": {
+ "723": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.autoRefreshToken"
},
- "722": {
+ "724": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.persistSession"
},
- "723": {
+ "725": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.storage"
},
- "724": {
+ "726": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.userStorage"
},
- "725": {
+ "727": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.fetch"
},
- "726": {
+ "728": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.flowType"
},
- "727": {
+ "729": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.debug"
},
- "728": {
+ "730": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "729": {
+ "731": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "730": {
+ "732": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "message"
},
- "731": {
+ "733": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "args"
},
- "732": {
+ "734": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.lock"
},
- "733": {
+ "735": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.hasCustomAuthorizationHeader"
},
- "734": {
+ "736": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.throwOnError"
},
- "735": {
+ "737": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "WeakPasswordReasons"
},
- "736": {
+ "738": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "WeakPassword"
},
- "737": {
+ "739": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "738": {
+ "740": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.reasons"
},
- "739": {
+ "741": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.message"
},
- "740": {
+ "742": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Prettify"
},
- "741": {
+ "743": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "742": {
+ "744": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "StrictOmit"
},
- "743": {
+ "745": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "744": {
+ "746": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "K"
},
- "745": {
+ "747": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequestResult"
},
- "746": {
+ "748": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "747": {
+ "749": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "748": {
+ "750": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "749": {
+ "751": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "750": {
+ "752": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "751": {
+ "753": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "752": {
+ "754": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "753": {
+ "755": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "ErrorType"
},
- "754": {
+ "756": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequestResultSafeDestructure"
},
- "755": {
+ "757": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "756": {
+ "758": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "757": {
+ "759": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "758": {
+ "760": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "759": {
+ "761": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "760": {
+ "762": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "761": {
+ "763": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "T"
},
- "762": {
+ "764": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthResponse"
},
- "763": {
+ "765": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "764": {
+ "766": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "765": {
+ "767": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "766": {
+ "768": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthResponsePassword"
},
- "767": {
+ "769": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "768": {
+ "770": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "769": {
+ "771": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "770": {
+ "772": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.weak_password"
},
- "771": {
+ "773": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthOtpResponse"
},
- "772": {
+ "774": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "773": {
+ "775": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "774": {
+ "776": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "775": {
+ "777": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.messageId"
},
- "776": {
+ "778": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthTokenResponse"
},
- "777": {
+ "779": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "778": {
+ "780": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "779": {
+ "781": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "780": {
+ "782": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthTokenResponsePassword"
},
- "781": {
+ "783": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "782": {
+ "784": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "783": {
+ "785": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "784": {
+ "786": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.weakPassword"
},
- "785": {
+ "787": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "OAuthResponse"
},
- "786": {
+ "788": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "787": {
+ "789": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "788": {
+ "790": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "789": {
+ "791": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "790": {
+ "792": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "791": {
+ "793": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "792": {
+ "794": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "793": {
+ "795": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "794": {
+ "796": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "795": {
+ "797": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "796": {
+ "798": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "797": {
+ "799": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "798": {
+ "800": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "SSOResponse"
},
- "799": {
+ "801": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "800": {
+ "802": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "801": {
+ "803": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserResponse"
},
- "802": {
+ "804": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "803": {
+ "805": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "804": {
+ "806": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Session"
},
- "805": {
+ "807": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMRMethod"
},
- "806": {
+ "808": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "807": {
+ "809": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMREntry"
},
- "808": {
+ "810": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMREntry.method"
},
- "809": {
+ "811": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AMREntry.timestamp"
},
- "810": {
+ "812": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity"
},
- "811": {
+ "813": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.id"
},
- "812": {
+ "814": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.user_id"
},
- "813": {
+ "815": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_data"
},
- "814": {
+ "816": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "815": {
+ "817": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "817": {
+ "819": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "818": {
+ "820": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "819": {
+ "821": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "820": {
+ "822": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "821": {
+ "823": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "822": {
+ "824": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "823": {
+ "825": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Factor"
},
- "824": {
+ "826": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "825": {
+ "827": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "826": {
+ "828": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "827": {
+ "829": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "828": {
+ "830": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "829": {
+ "831": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "830": {
+ "832": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "831": {
+ "833": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Type"
},
- "832": {
+ "834": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "Status"
},
- "833": {
+ "835": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "834": {
+ "836": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "835": {
+ "837": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.providers"
},
- "836": {
+ "838": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "838": {
+ "840": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "839": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserMetadata.__index"
- },
"841": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "User"
- },
- "842": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes"
+ "qualifiedName": "UserMetadata.__index"
},
"843": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.email"
+ "qualifiedName": "User"
},
"844": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.phone"
+ "qualifiedName": "UserAttributes"
},
"845": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.password"
+ "qualifiedName": "UserAttributes.email"
},
"846": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.nonce"
+ "qualifiedName": "UserAttributes.phone"
},
"847": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UserAttributes.data"
+ "qualifiedName": "UserAttributes.password"
},
"848": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes"
+ "qualifiedName": "UserAttributes.nonce"
},
"849": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.user_metadata"
+ "qualifiedName": "UserAttributes.data"
},
"850": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.app_metadata"
+ "qualifiedName": "AdminUserAttributes"
},
"851": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.email_confirm"
+ "qualifiedName": "AdminUserAttributes.user_metadata"
},
"852": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.phone_confirm"
+ "qualifiedName": "AdminUserAttributes.app_metadata"
},
"853": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.ban_duration"
+ "qualifiedName": "AdminUserAttributes.email_confirm"
},
"854": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.role"
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
},
"855": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.password_hash"
+ "qualifiedName": "AdminUserAttributes.ban_duration"
},
"856": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AdminUserAttributes.id"
+ "qualifiedName": "AdminUserAttributes.role"
},
"857": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "nonce"
+ "qualifiedName": "AdminUserAttributes.password_hash"
},
"858": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "email"
+ "qualifiedName": "AdminUserAttributes.id"
},
"859": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "password"
+ "qualifiedName": "nonce"
},
"860": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "email"
},
"861": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription"
+ "qualifiedName": "password"
},
"862": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.id"
+ "qualifiedName": "phone"
},
"863": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.callback"
+ "qualifiedName": "Subscription"
},
"864": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.id"
},
"865": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.callback"
},
"866": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type"
},
"867": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "session"
+ "qualifiedName": "__type"
},
"868": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Subscription.unsubscribe"
+ "qualifiedName": "event"
},
"869": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "session"
},
"870": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "Subscription.unsubscribe"
},
"871": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInAnonymouslyCredentials"
+ "qualifiedName": "__type"
},
"872": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56826,7 +57235,7 @@
},
"873": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignInAnonymouslyCredentials"
},
"874": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56834,23 +57243,23 @@
},
"875": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.options"
},
"876": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"877": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignUpWithPasswordCredentials"
+ "qualifiedName": "__type.data"
},
"878": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"879": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignUpWithPasswordCredentials"
},
"880": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56858,31 +57267,31 @@
},
"881": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type.options"
},
"882": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"883": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.emailRedirectTo"
},
"884": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.data"
},
"885": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordCredentials"
+ "qualifiedName": "__type.captchaToken"
},
"886": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.channel"
},
"887": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "SignInWithPasswordCredentials"
},
"888": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -56890,135 +57299,135 @@
},
"889": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"890": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithPasswordlessCredentials"
+ "qualifiedName": "__type"
},
"891": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"892": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "SignInWithPasswordlessCredentials"
},
"893": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"894": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email"
},
"895": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type.options"
},
"896": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type"
},
"897": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.emailRedirectTo"
},
"898": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.shouldCreateUser"
},
"899": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.data"
},
"900": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type.captchaToken"
},
"901": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"902": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.phone"
},
"903": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.shouldCreateUser"
+ "qualifiedName": "__type.options"
},
"904": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type"
},
"905": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.shouldCreateUser"
},
"906": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.channel"
+ "qualifiedName": "__type.data"
},
"907": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthFlowType"
+ "qualifiedName": "__type.captchaToken"
},
"908": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithOAuthCredentials"
+ "qualifiedName": "__type.channel"
},
"909": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthFlowType"
},
"910": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "SignInWithOAuthCredentials"
},
"911": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"912": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.provider"
},
"913": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.options"
},
"914": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scopes"
+ "qualifiedName": "__type"
},
"915": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.queryParams"
+ "qualifiedName": "__type.redirectTo"
},
"916": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.scopes"
},
"917": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.queryParams"
},
- "919": {
+ "918": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
- "920": {
+ "919": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithIdTokenCredentials"
+ "qualifiedName": "__type.__index"
},
"921": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"922": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.provider"
+ "qualifiedName": "SignInWithIdTokenCredentials"
},
"923": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57026,39 +57435,39 @@
},
"924": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token"
+ "qualifiedName": "__type.provider"
},
"925": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "__type"
},
"926": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nonce"
+ "qualifiedName": "__type.token"
},
"927": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.access_token"
},
"928": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.nonce"
},
"929": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"930": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SolanaWallet"
+ "qualifiedName": "__type"
},
"931": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"932": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signIn"
+ "qualifiedName": "SolanaWallet"
},
"933": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57066,23 +57475,23 @@
},
"934": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signIn"
},
"935": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "inputs"
+ "qualifiedName": "__type"
},
"936": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type"
},
"937": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "inputs"
},
"938": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.toBase58"
+ "qualifiedName": "__type.publicKey"
},
"939": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57090,11 +57499,11 @@
},
"940": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.toBase58"
},
"941": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signMessage"
+ "qualifiedName": "__type"
},
"942": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57102,559 +57511,559 @@
},
"943": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signMessage"
},
"944": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "message"
+ "qualifiedName": "__type"
},
"945": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "encoding"
+ "qualifiedName": "__type"
},
"946": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SolanaWeb3Credentials"
+ "qualifiedName": "message"
},
"947": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "encoding"
},
"948": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "SolanaWeb3Credentials"
},
"949": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type"
},
"950": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.chain"
},
"951": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.wallet"
},
"952": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.statement"
},
"953": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.options"
},
"954": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"955": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signInWithSolana"
+ "qualifiedName": "__type.url"
},
"956": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"957": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signInWithSolana"
},
"958": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type"
},
"959": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.chain"
},
"960": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.message"
},
"961": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signature"
},
"962": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"963": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EthereumWallet"
+ "qualifiedName": "__type"
},
"964": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EthereumWeb3Credentials"
+ "qualifiedName": "__type.captchaToken"
},
"965": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EthereumWallet"
},
"966": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "EthereumWeb3Credentials"
},
"967": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.wallet"
+ "qualifiedName": "__type"
},
"968": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.statement"
+ "qualifiedName": "__type.chain"
},
"969": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.wallet"
},
"970": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.statement"
},
"971": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.url"
+ "qualifiedName": "__type.options"
},
"972": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"973": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signInWithEthereum"
+ "qualifiedName": "__type.url"
},
"974": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"975": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.chain"
+ "qualifiedName": "__type.signInWithEthereum"
},
"976": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.message"
+ "qualifiedName": "__type"
},
"977": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.signature"
+ "qualifiedName": "__type.chain"
},
"978": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.message"
},
"979": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.signature"
},
"980": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"981": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Web3Credentials"
+ "qualifiedName": "__type"
},
"982": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyOtpParams"
+ "qualifiedName": "__type.captchaToken"
},
"983": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams"
+ "qualifiedName": "Web3Credentials"
},
"984": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.phone"
+ "qualifiedName": "VerifyOtpParams"
},
"985": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.token"
+ "qualifiedName": "VerifyMobileOtpParams"
},
"986": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.type"
+ "qualifiedName": "VerifyMobileOtpParams.phone"
},
"987": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyMobileOtpParams.options"
+ "qualifiedName": "VerifyMobileOtpParams.token"
},
"988": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyMobileOtpParams.type"
},
"989": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "VerifyMobileOtpParams.options"
},
"990": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"991": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams"
+ "qualifiedName": "__type.redirectTo"
},
"992": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.email"
+ "qualifiedName": "__type.captchaToken"
},
"993": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.token"
+ "qualifiedName": "VerifyEmailOtpParams"
},
"994": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.type"
+ "qualifiedName": "VerifyEmailOtpParams.email"
},
"995": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyEmailOtpParams.options"
+ "qualifiedName": "VerifyEmailOtpParams.token"
},
"996": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "VerifyEmailOtpParams.type"
},
"997": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "VerifyEmailOtpParams.options"
},
"998": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"999": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams"
+ "qualifiedName": "__type.redirectTo"
},
"1000": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.token_hash"
+ "qualifiedName": "__type.captchaToken"
},
"1001": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "VerifyTokenHashParams.type"
+ "qualifiedName": "VerifyTokenHashParams"
},
"1002": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MobileOtpType"
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
},
"1003": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "EmailOtpType"
+ "qualifiedName": "VerifyTokenHashParams.type"
},
"1004": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "ResendParams"
+ "qualifiedName": "MobileOtpType"
},
"1005": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "EmailOtpType"
},
"1006": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "ResendParams"
},
"1007": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1008": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1009": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.email"
},
"1010": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.emailRedirectTo"
+ "qualifiedName": "__type.options"
},
"1011": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1012": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.emailRedirectTo"
},
"1013": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type.captchaToken"
},
"1014": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.phone"
+ "qualifiedName": "__type"
},
"1015": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1016": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.phone"
},
"1017": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type.options"
},
"1018": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignInWithSSO"
+ "qualifiedName": "__type"
},
"1019": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1020": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.providerId"
+ "qualifiedName": "SignInWithSSO"
},
"1021": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"1022": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.providerId"
},
"1023": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.options"
},
"1024": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1025": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.redirectTo"
},
"1026": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.captchaToken"
},
"1027": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.domain"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1028": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type"
},
"1029": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.domain"
},
"1030": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirectTo"
+ "qualifiedName": "__type.options"
},
"1031": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.captchaToken"
+ "qualifiedName": "__type"
},
"1032": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type.redirectTo"
},
"1033": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateSignupLinkParams"
+ "qualifiedName": "__type.captchaToken"
},
"1034": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
"1035": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateSignupLinkParams"
},
"1036": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1037": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.password"
+ "qualifiedName": "__type.type"
},
"1038": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1039": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ "qualifiedName": "__type.password"
},
"1040": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1041": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
},
"1042": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1043": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1044": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateRecoveryLinkParams"
+ "qualifiedName": "__type.email"
},
"1045": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1046": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateRecoveryLinkParams"
},
"1047": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1048": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.type"
},
"1049": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateEmailChangeLinkParams"
+ "qualifiedName": "__type.email"
},
"1050": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.options"
},
"1051": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "GenerateEmailChangeLinkParams"
},
"1052": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1053": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.newEmail"
+ "qualifiedName": "__type.type"
},
"1054": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.options"
+ "qualifiedName": "__type.email"
},
"1055": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions"
+ "qualifiedName": "__type.newEmail"
},
"1056": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.data"
+ "qualifiedName": "__type.options"
},
"1057": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkOptions.redirectTo"
+ "qualifiedName": "GenerateLinkOptions"
},
"1058": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkParams"
+ "qualifiedName": "GenerateLinkOptions.data"
},
"1059": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkResponse"
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
},
"1060": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GenerateLinkParams"
},
"1061": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.properties"
+ "qualifiedName": "GenerateLinkResponse"
},
"1062": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type"
},
"1063": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkProperties"
+ "qualifiedName": "__type.properties"
},
"1064": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.user"
},
"1065": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.action_link"
+ "qualifiedName": "GenerateLinkProperties"
},
"1066": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email_otp"
+ "qualifiedName": "__type"
},
"1067": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.hashed_token"
+ "qualifiedName": "__type.action_link"
},
"1068": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_to"
+ "qualifiedName": "__type.email_otp"
},
"1069": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.verification_type"
+ "qualifiedName": "__type.hashed_token"
},
"1070": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GenerateLinkType"
+ "qualifiedName": "__type.redirect_to"
},
"1071": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAEnrollParams"
+ "qualifiedName": "__type.verification_type"
},
"1072": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAUnenrollParams"
+ "qualifiedName": "GenerateLinkType"
},
"1073": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAEnrollParams"
},
"1074": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.factorId"
+ "qualifiedName": "MFAUnenrollParams"
},
"1075": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyTOTPParams"
+ "qualifiedName": "__type"
},
"1076": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyPhoneParams"
+ "qualifiedName": "__type.factorId"
},
"1077": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFields"
+ "qualifiedName": "MFAVerifyTOTPParams"
},
"1078": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAVerifyPhoneParams"
},
"1079": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.webauthn"
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
},
"1080": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type"
},
"1081": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParams"
+ "qualifiedName": "__type.webauthn"
},
"1082": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57662,247 +58071,247 @@
},
"1083": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAVerifyParams"
+ "qualifiedName": "MFAVerifyWebauthnParams"
},
"1084": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFATOTPChannel"
+ "qualifiedName": "T"
},
"1085": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeTOTPParams"
+ "qualifiedName": "MFAVerifyParams"
},
"1086": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengePhoneParams"
+ "qualifiedName": "MFATOTPChannel"
},
"1087": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeWebauthnParams"
+ "qualifiedName": "MFAChallengeTOTPParams"
},
"1088": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeParams"
+ "qualifiedName": "MFAChallengePhoneParams"
},
"1089": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "MFAChallengeAndVerifyParams"
+ "qualifiedName": "MFAChallengeWebauthnParams"
},
"1090": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponseData"
+ "qualifiedName": "MFAChallengeParams"
},
"1091": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "MFAChallengeAndVerifyParams"
},
"1092": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.access_token"
+ "qualifiedName": "AuthMFAVerifyResponseData"
},
"1093": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token_type"
+ "qualifiedName": "__type"
},
"1094": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.expires_in"
+ "qualifiedName": "__type.access_token"
},
"1095": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.refresh_token"
+ "qualifiedName": "__type.token_type"
},
"1096": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.expires_in"
},
"1097": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAVerifyResponse"
+ "qualifiedName": "__type.refresh_token"
},
"1098": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAEnrollResponse"
+ "qualifiedName": "__type.user"
},
"1099": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAUnenrollResponse"
+ "qualifiedName": "AuthMFAVerifyResponse"
},
"1100": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAEnrollResponse"
},
"1101": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "AuthMFAUnenrollResponse"
},
"1102": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ "qualifiedName": "__type"
},
"1103": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengePhoneResponse"
+ "qualifiedName": "__type.id"
},
"1104": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
},
"1105": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
},
"1106": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
"1107": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAChallengeResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
"1108": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAListFactorsResponse"
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
"1109": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthMFAChallengeResponse"
},
"1110": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.all"
+ "qualifiedName": "AuthMFAListFactorsResponse"
},
"1111": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "T"
+ "qualifiedName": "__type"
},
"1112": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthenticatorAssuranceLevels"
+ "qualifiedName": "__type.all"
},
"1113": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ "qualifiedName": "T"
},
"1114": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthenticatorAssuranceLevels"
},
"1115": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.currentLevel"
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
"1116": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nextLevel"
+ "qualifiedName": "__type"
},
"1117": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.currentAuthenticationMethods"
+ "qualifiedName": "__type.currentLevel"
},
"1118": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi"
+ "qualifiedName": "__type.nextLevel"
},
"1119": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "__type.currentAuthenticationMethods"
},
"1120": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "GoTrueMFAApi"
},
"1121": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1122": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1123": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "params"
},
"1124": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type"
},
"1125": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "issuer"
+ "qualifiedName": "factorType"
},
"1126": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1127": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "issuer"
},
"1128": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1129": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "params"
},
"1130": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type"
},
"1131": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "factorType"
},
"1132": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "friendlyName"
},
"1133": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "phone"
},
"1134": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1135": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorType"
+ "qualifiedName": "params"
},
"1136": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "friendlyName"
+ "qualifiedName": "__type"
},
"1137": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.enroll"
+ "qualifiedName": "factorType"
},
"1138": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "friendlyName"
},
"1139": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "GoTrueMFAApi.enroll"
},
"1140": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "params"
},
"1141": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1142": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1143": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1144": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57910,19 +58319,19 @@
},
"1145": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "factorId"
},
"1146": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1147": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1148": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1149": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57930,59 +58339,59 @@
},
"1150": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "data"
},
"1151": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1152": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "id"
},
"1153": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "type"
},
"1154": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "expires_at"
},
"1155": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "error"
},
"1156": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1157": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1158": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "channel"
+ "qualifiedName": "__type"
},
"1159": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1160": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "channel"
},
"1161": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1162": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1163": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1164": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -57990,71 +58399,71 @@
},
"1165": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "data"
},
"1166": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1167": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "id"
},
"1168": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "type"
},
"1169": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "expires_at"
},
"1170": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "error"
},
"1171": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1172": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1173": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "__type"
},
"1174": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "factorId"
},
"1175": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.rpId"
+ "qualifiedName": "webauthn"
},
"1176": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.rpOrigins"
+ "qualifiedName": "__type"
},
"1177": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.rpId"
},
"1178": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "__type.rpOrigins"
},
"1179": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1180": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "data"
},
"1181": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "data"
+ "qualifiedName": "error"
},
"1182": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58062,39 +58471,39 @@
},
"1183": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "id"
+ "qualifiedName": "data"
},
"1184": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type"
},
"1185": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "expires_at"
+ "qualifiedName": "id"
},
"1186": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "type"
},
"1187": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "expires_at"
},
"1188": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "webauthn"
},
"1189": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1190": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.type"
},
"1191": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.credential_options"
},
"1192": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58102,679 +58511,679 @@
},
"1193": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type.publicKey"
},
"1194": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.credential_options"
+ "qualifiedName": "__type"
},
"1195": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.type"
},
"1196": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.publicKey"
+ "qualifiedName": "__type.credential_options"
},
"1197": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "error"
+ "qualifiedName": "__type"
},
"1198": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challenge"
+ "qualifiedName": "__type.publicKey"
},
"1199": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "error"
},
"1200": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "GoTrueMFAApi.challenge"
},
"1201": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "params"
},
"1202": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1203": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1204": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1205": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "__type"
},
"1206": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1207": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "challengeId"
},
"1208": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "code"
},
"1209": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1210": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1211": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "__type"
},
"1212": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "factorId"
},
"1213": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "challengeId"
},
"1214": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "code"
},
"1215": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1216": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1217": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "challengeId"
+ "qualifiedName": "__type"
},
"1218": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "webauthn"
+ "qualifiedName": "factorId"
},
"1219": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.verify"
+ "qualifiedName": "challengeId"
},
"1220": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "webauthn"
},
"1221": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "GoTrueMFAApi.verify"
},
"1222": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.unenroll"
+ "qualifiedName": "params"
},
"1223": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1224": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "GoTrueMFAApi.unenroll"
},
"1225": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ "qualifiedName": "params"
},
"1226": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1227": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
"1228": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "factorId"
+ "qualifiedName": "params"
},
"1229": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "code"
+ "qualifiedName": "__type"
},
"1230": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "factorId"
},
"1231": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.listFactors"
+ "qualifiedName": "code"
},
"1232": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1233": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ "qualifiedName": "GoTrueMFAApi.listFactors"
},
"1234": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueMFAApi.webauthn"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1235": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
"1236": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueMFAApi.webauthn"
},
"1237": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
"1238": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ "qualifiedName": "__type"
},
"1239": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.id"
},
"1240": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
"1241": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "__type"
},
"1242": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ "qualifiedName": "__type.id"
},
"1243": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.userId"
},
"1244": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.factors"
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
},
"1245": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthMFAAdminListFactorsParams"
+ "qualifiedName": "__type"
},
"1246": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.factors"
},
"1247": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.userId"
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
},
"1248": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi"
+ "qualifiedName": "__type"
},
"1249": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "__type.userId"
},
"1250": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ "qualifiedName": "GoTrueAdminMFAApi"
},
"1251": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1252": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
"1253": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ "qualifiedName": "params"
},
"1254": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1255": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SupportedStorage"
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
"1256": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "params"
},
"1257": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.isServer"
+ "qualifiedName": "SupportedStorage"
},
"1258": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "InitializeResult"
+ "qualifiedName": "__type"
},
"1259": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.isServer"
},
"1260": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "InitializeResult"
},
"1261": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "CallRefreshTokenResult"
+ "qualifiedName": "__type"
},
"1262": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "Pagination"
+ "qualifiedName": "__type.error"
},
"1263": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "CallRefreshTokenResult"
},
"1264": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.nextPage"
+ "qualifiedName": "Pagination"
},
"1265": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.lastPage"
+ "qualifiedName": "__type"
},
"1266": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.total"
+ "qualifiedName": "__type.nextPage"
},
"1267": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "__type.lastPage"
+ },
+ "1268": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.total"
},
"1269": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1271": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "PageParams"
},
- "1270": {
+ "1272": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1271": {
+ "1273": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.page"
},
- "1272": {
+ "1274": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.perPage"
},
- "1273": {
+ "1275": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "SignOut"
},
- "1274": {
+ "1276": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1275": {
+ "1277": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.scope"
},
- "1276": {
+ "1278": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollTOTPParams"
},
- "1277": {
+ "1279": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollPhoneParams"
},
- "1278": {
+ "1280": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "MFAEnrollWebauthnParams"
},
- "1279": {
+ "1281": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollTOTPResponse"
},
- "1280": {
+ "1282": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollPhoneResponse"
},
- "1281": {
+ "1283": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
- "1282": {
+ "1284": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtHeader"
},
- "1283": {
+ "1285": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1284": {
+ "1286": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.alg"
},
- "1285": {
+ "1287": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.kid"
},
- "1286": {
+ "1288": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.typ"
},
- "1287": {
+ "1289": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "RequiredClaims"
},
- "1288": {
+ "1290": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type"
},
- "1289": {
+ "1291": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1290": {
+ "1292": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1291": {
+ "1293": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1292": {
+ "1294": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1293": {
+ "1295": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1294": {
+ "1296": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1295": {
+ "1297": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1296": {
+ "1298": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1297": {
+ "1299": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload"
},
- "1298": {
+ "1300": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.email"
},
- "1299": {
+ "1301": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.phone"
},
- "1300": {
+ "1302": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.is_anonymous"
},
- "1301": {
+ "1303": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.jti"
},
- "1302": {
+ "1304": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.nbf"
},
- "1303": {
+ "1305": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.app_metadata"
},
- "1304": {
+ "1306": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.user_metadata"
},
- "1305": {
+ "1307": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.amr"
},
- "1306": {
+ "1308": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.ref"
},
- "1307": {
+ "1309": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1308": {
+ "1310": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1309": {
+ "1311": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1310": {
+ "1312": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1311": {
+ "1313": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1312": {
+ "1314": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1313": {
+ "1315": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1314": {
+ "1316": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1315": {
+ "1317": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JwtPayload.__index"
},
- "1317": {
+ "1319": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK"
},
- "1318": {
+ "1320": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.kty"
},
- "1319": {
+ "1321": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.key_ops"
},
- "1320": {
+ "1322": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.alg"
},
- "1321": {
+ "1323": {
"sourceFileName": "../auth-js/src/lib/types.ts",
"qualifiedName": "JWK.kid"
},
- "1322": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "JWK.__index"
- },
"1324": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SIGN_OUT_SCOPES"
- },
- "1325": {
- "sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "SignOutScope"
+ "qualifiedName": "JWK.__index"
},
"1326": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientGrantType"
+ "qualifiedName": "SIGN_OUT_SCOPES"
},
"1327": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientResponseType"
+ "qualifiedName": "SignOutScope"
},
"1328": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientType"
+ "qualifiedName": "OAuthClientGrantType"
},
"1329": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientRegistrationType"
+ "qualifiedName": "OAuthClientResponseType"
},
"1330": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClient"
+ "qualifiedName": "OAuthClientType"
},
"1331": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientRegistrationType"
},
"1332": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "OAuthClient"
},
"1333": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1334": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_secret"
+ "qualifiedName": "__type.client_id"
},
"1335": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "__type.client_name"
},
"1336": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "__type.client_secret"
},
"1337": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "__type.client_type"
},
"1338": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.token_endpoint_auth_method"
},
"1339": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.registration_type"
},
"1340": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1341": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.logo_uri"
},
"1342": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1343": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.grant_types"
},
"1344": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "__type.response_types"
},
"1345": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "__type.scope"
},
"1346": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "__type.created_at"
},
"1347": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.updated_at"
},
"1348": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "CreateOAuthClientParams"
},
"1349": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type"
},
"1350": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_name"
},
"1351": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.client_uri"
},
"1352": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.redirect_uris"
},
"1353": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.grant_types"
},
"1354": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "UpdateOAuthClientParams"
+ "qualifiedName": "__type.response_types"
},
"1355": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.scope"
},
"1356": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "UpdateOAuthClientParams"
},
"1357": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type"
},
"1358": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.client_name"
},
"1359": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
"1360": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.logo_uri"
},
"1361": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "__type.redirect_uris"
},
"1362": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "__type.grant_types"
},
"1363": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "OAuthClientResponse"
},
"1364": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "OAuthClientListResponse"
},
"1365": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58782,23 +59191,23 @@
},
"1366": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type.data"
},
"1367": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type"
},
"1368": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.clients"
},
"1369": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.aud"
},
"1370": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.error"
},
"1371": {
"sourceFileName": "../auth-js/src/lib/types.ts",
@@ -58806,1732 +59215,1736 @@
},
"1372": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type.data"
},
"1373": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1374": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "__type.clients"
},
"1375": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "__type.error"
},
"1376": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "GoTrueAdminOAuthApi"
},
"1377": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1378": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
},
"1379": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "params"
},
"1380": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1381": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
},
"1382": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "params"
},
"1383": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1384": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
},
"1385": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ "qualifiedName": "clientId"
},
"1386": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1387": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
},
"1388": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "clientId"
},
"1389": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "params"
},
"1390": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1391": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
"1392": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "clientId"
},
"1393": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type"
},
"1394": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.data"
},
"1395": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type.error"
},
"1396": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1397": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationClient"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
"1398": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "clientId"
},
"1399": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_id"
+ "qualifiedName": "OAuthAuthorizationClient"
},
"1400": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type"
},
"1401": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.id"
},
"1402": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.logo_uri"
+ "qualifiedName": "__type.name"
},
"1403": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "OAuthAuthorizationDetails"
+ "qualifiedName": "__type.uri"
},
"1404": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.logo_uri"
},
"1405": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.authorization_id"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
"1406": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_uri"
+ "qualifiedName": "__type"
},
"1407": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.client"
+ "qualifiedName": "__type.authorization_id"
},
"1408": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.user"
+ "qualifiedName": "__type.redirect_uri"
},
"1409": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.client"
},
"1410": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.id"
+ "qualifiedName": "__type.user"
},
"1411": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.email"
+ "qualifiedName": "__type"
},
"1412": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type.id"
},
"1413": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ "qualifiedName": "__type.email"
},
"1414": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthConsentResponse"
+ "qualifiedName": "__type.scope"
},
"1415": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
"1416": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.redirect_url"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
"1417": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi"
+ "qualifiedName": "__type"
},
"1418": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "__type.redirect_url"
},
"1419": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ "qualifiedName": "OAuthGrant"
},
"1420": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "__type"
},
"1421": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "__type.client"
},
"1422": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ "qualifiedName": "__type.scopes"
},
"1423": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "__type.granted_at"
},
"1424": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "AuthOAuthGrantsResponse"
},
"1425": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthRevokeGrantResponse"
},
"1426": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "__type"
},
"1427": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "AuthOAuthServerApi"
},
"1428": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1429": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "authorizationId"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
"1430": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "options"
+ "qualifiedName": "authorizationId"
},
"1431": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1432": {
"sourceFileName": "../auth-js/src/lib/types.ts",
- "qualifiedName": "__type.skipBrowserRedirect"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
"1433": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1434": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1435": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1436": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1437": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1438": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1439": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1440": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1441": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1442": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1443": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1444": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.listGrants"
+ },
+ "1445": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1446": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.revokeGrant"
+ },
+ "1447": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1448": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1449": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clientId"
+ },
+ "1450": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1434": {
+ "1451": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1435": {
+ "1452": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1436": {
+ "1453": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1437": {
+ "1454": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1438": {
+ "1455": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1439": {
+ "1456": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1440": {
+ "1457": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1441": {
+ "1458": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1442": {
+ "1459": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1443": {
+ "1460": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1444": {
+ "1461": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1445": {
+ "1462": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1446": {
+ "1463": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1447": {
+ "1464": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1448": {
+ "1465": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1449": {
+ "1466": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1450": {
+ "1467": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "error"
},
- "1451": {
+ "1468": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1452": {
+ "1469": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__constructor"
},
- "1453": {
+ "1470": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1454": {
+ "1471": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1455": {
+ "1472": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1456": {
+ "1473": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1457": {
+ "1474": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1458": {
+ "1475": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1459": {
+ "1476": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1460": {
+ "1477": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1461": {
+ "1478": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1462": {
+ "1479": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1463": {
+ "1480": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1464": {
+ "1481": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1465": {
+ "1482": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1466": {
+ "1483": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1467": {
+ "1484": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1468": {
+ "1485": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1469": {
+ "1486": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1470": {
+ "1487": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1471": {
+ "1488": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1472": {
+ "1489": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1473": {
+ "1490": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1474": {
+ "1491": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1475": {
+ "1492": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1476": {
+ "1493": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1477": {
+ "1494": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1478": {
+ "1495": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1479": {
+ "1496": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1480": {
+ "1497": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1481": {
+ "1498": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1482": {
+ "1499": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1483": {
+ "1500": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1484": {
+ "1501": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1485": {
+ "1502": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "name"
},
- "1486": {
+ "1503": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1487": {
+ "1504": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "code"
},
- "1488": {
+ "1505": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1489": {
+ "1506": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1490": {
+ "1507": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1491": {
+ "1508": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1492": {
+ "1509": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1493": {
+ "1510": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1494": {
+ "1511": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1495": {
+ "1512": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1496": {
+ "1513": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1497": {
+ "1514": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1498": {
+ "1515": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1499": {
+ "1516": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1500": {
+ "1517": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1501": {
+ "1518": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1502": {
+ "1519": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1503": {
+ "1520": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1504": {
+ "1521": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1505": {
+ "1522": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1506": {
+ "1523": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1507": {
+ "1524": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1508": {
+ "1525": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1509": {
+ "1526": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1510": {
+ "1527": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1511": {
+ "1528": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1512": {
+ "1529": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1513": {
+ "1530": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1514": {
+ "1531": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1515": {
+ "1532": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1516": {
+ "1533": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1517": {
+ "1534": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1518": {
+ "1535": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1519": {
+ "1536": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1520": {
+ "1537": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1521": {
+ "1538": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1522": {
+ "1539": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "details"
},
- "1523": {
+ "1540": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1524": {
+ "1541": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1525": {
+ "1542": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1526": {
+ "1543": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1527": {
+ "1544": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1528": {
+ "1545": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1529": {
+ "1546": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1530": {
+ "1547": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1531": {
+ "1548": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1532": {
+ "1549": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1533": {
+ "1550": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.name"
},
- "1534": {
+ "1551": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.message"
},
- "1535": {
+ "1552": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.status"
},
- "1536": {
+ "1553": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.details"
},
- "1537": {
+ "1554": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1538": {
+ "1555": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1539": {
+ "1556": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1540": {
+ "1557": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1541": {
+ "1558": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1542": {
+ "1559": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1543": {
+ "1560": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1544": {
+ "1561": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1545": {
+ "1562": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1546": {
+ "1563": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1547": {
+ "1564": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1548": {
+ "1565": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1549": {
+ "1566": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "details"
},
- "1550": {
+ "1567": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1551": {
+ "1568": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1552": {
+ "1569": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1553": {
+ "1570": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1554": {
+ "1571": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1555": {
+ "1572": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1556": {
+ "1573": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1557": {
+ "1574": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1558": {
+ "1575": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1559": {
+ "1576": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1560": {
+ "1577": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.name"
},
- "1561": {
+ "1578": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.message"
},
- "1562": {
+ "1579": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.status"
},
- "1563": {
+ "1580": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.details"
},
- "1564": {
+ "1581": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1565": {
+ "1582": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1566": {
+ "1583": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1567": {
+ "1584": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1568": {
+ "1585": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1569": {
+ "1586": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1570": {
+ "1587": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1571": {
+ "1588": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1572": {
+ "1589": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1573": {
+ "1590": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1574": {
+ "1591": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1575": {
+ "1592": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1576": {
+ "1593": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1577": {
+ "1594": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1578": {
+ "1595": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1579": {
+ "1596": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1580": {
+ "1597": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1581": {
+ "1598": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1582": {
+ "1599": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1583": {
+ "1600": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1584": {
+ "1601": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1585": {
+ "1602": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1586": {
+ "1603": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "status"
},
- "1587": {
+ "1604": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1588": {
+ "1605": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1589": {
+ "1606": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1590": {
+ "1607": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1591": {
+ "1608": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1592": {
+ "1609": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1593": {
+ "1610": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1594": {
+ "1611": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1595": {
+ "1612": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1596": {
+ "1613": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1597": {
+ "1614": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "message"
},
- "1598": {
+ "1615": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1599": {
+ "1616": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1600": {
+ "1617": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1601": {
+ "1618": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1602": {
+ "1619": {
"sourceFileName": "../auth-js/src/lib/errors.ts",
"qualifiedName": "AuthError.__isAuthError"
},
- "1603": {
+ "1620": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default"
},
- "1604": {
+ "1621": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.__constructor"
},
- "1605": {
+ "1622": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default"
},
- "1606": {
+ "1623": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "channel"
},
- "1607": {
+ "1624": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "opts"
},
- "1608": {
+ "1625": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.channel"
},
- "1609": {
+ "1626": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.state"
},
- "1610": {
+ "1627": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.pendingDiffs"
},
- "1611": {
+ "1628": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.joinRef"
},
- "1612": {
+ "1629": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.enabled"
},
- "1613": {
+ "1630": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "default.caller"
},
- "1614": {
+ "1631": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1615": {
+ "1632": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onJoin"
},
- "1616": {
+ "1633": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onLeave"
},
- "1617": {
+ "1634": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.onSync"
},
- "1618": {
+ "1635": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1619": {
+ "1636": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "1620": {
+ "1637": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default"
},
- "1621": {
+ "1638": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.__constructor"
},
- "1622": {
+ "1639": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default"
},
- "1623": {
+ "1640": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "topic"
},
- "1624": {
+ "1641": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "params"
},
- "1625": {
+ "1642": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "socket"
},
- "1626": {
+ "1643": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.topic"
},
- "1627": {
+ "1644": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.params"
},
- "1628": {
+ "1645": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.socket"
},
- "1629": {
+ "1646": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.bindings"
},
- "1630": {
+ "1647": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1631": {
+ "1648": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1633": {
+ "1650": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1634": {
+ "1651": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1635": {
+ "1652": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.filter"
},
- "1636": {
+ "1653": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1637": {
+ "1654": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1639": {
+ "1656": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.callback"
},
- "1640": {
+ "1657": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.id"
},
- "1641": {
+ "1658": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.timeout"
},
- "1642": {
+ "1659": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.state"
},
- "1643": {
+ "1660": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.joinedOnce"
},
- "1644": {
+ "1661": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.joinPush"
},
- "1645": {
+ "1662": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.rejoinTimer"
},
- "1646": {
+ "1663": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.pushBuffer"
},
- "1647": {
+ "1664": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.presence"
},
- "1648": {
+ "1665": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.broadcastEndpointURL"
},
- "1649": {
+ "1666": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.subTopic"
},
- "1650": {
+ "1667": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.private"
},
- "1651": {
+ "1668": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.subscribe"
},
- "1652": {
+ "1669": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.subscribe"
},
- "1653": {
+ "1670": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1654": {
+ "1671": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1655": {
+ "1672": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1656": {
+ "1673": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "status"
},
- "1657": {
+ "1674": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "err"
},
- "1658": {
+ "1675": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "timeout"
},
- "1659": {
+ "1676": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.presenceState"
},
- "1660": {
+ "1677": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.presenceState"
},
- "1661": {
+ "1678": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1662": {
+ "1679": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1663": {
+ "1680": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1665": {
+ "1682": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1666": {
+ "1683": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.track"
},
- "1667": {
+ "1684": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.track"
},
- "1668": {
+ "1685": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1669": {
+ "1686": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1670": {
+ "1687": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1672": {
+ "1689": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1673": {
+ "1690": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1674": {
+ "1691": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1676": {
+ "1693": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.untrack"
},
- "1677": {
+ "1694": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.untrack"
},
- "1678": {
+ "1695": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1679": {
+ "1696": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1680": {
+ "1697": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1682": {
+ "1699": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1683": {
+ "1700": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1684": {
+ "1701": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1685": {
+ "1702": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1686": {
+ "1703": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1687": {
+ "1704": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1688": {
+ "1705": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1689": {
+ "1706": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1690": {
+ "1707": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1691": {
+ "1708": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1692": {
+ "1709": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1693": {
+ "1710": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1694": {
+ "1711": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1696": {
+ "1713": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1697": {
+ "1714": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1698": {
+ "1715": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1699": {
+ "1716": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1700": {
+ "1717": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1701": {
+ "1718": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1702": {
+ "1719": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1703": {
+ "1720": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1704": {
+ "1721": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1705": {
+ "1722": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1706": {
+ "1723": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1707": {
+ "1724": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1709": {
+ "1726": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1710": {
+ "1727": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1711": {
+ "1728": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1712": {
+ "1729": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1713": {
+ "1730": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1714": {
+ "1731": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1715": {
+ "1732": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1716": {
+ "1733": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1717": {
+ "1734": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1718": {
+ "1735": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1719": {
+ "1736": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1720": {
+ "1737": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1722": {
+ "1739": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1723": {
+ "1740": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1724": {
+ "1741": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1725": {
+ "1742": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1726": {
+ "1743": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1727": {
+ "1744": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1728": {
+ "1745": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1729": {
+ "1746": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1730": {
+ "1747": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1731": {
+ "1748": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1733": {
+ "1750": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1734": {
+ "1751": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1735": {
+ "1752": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1736": {
+ "1753": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1737": {
+ "1754": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1738": {
+ "1755": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1739": {
+ "1756": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1740": {
+ "1757": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1741": {
+ "1758": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1742": {
+ "1759": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1744": {
+ "1761": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1745": {
+ "1762": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1746": {
+ "1763": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1747": {
+ "1764": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1748": {
+ "1765": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1749": {
+ "1766": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1750": {
+ "1767": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1751": {
+ "1768": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1752": {
+ "1769": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1753": {
+ "1770": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1755": {
+ "1772": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1756": {
+ "1773": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1757": {
+ "1774": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1758": {
+ "1775": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1759": {
+ "1776": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1760": {
+ "1777": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1761": {
+ "1778": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1762": {
+ "1779": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1763": {
+ "1780": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1764": {
+ "1781": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1765": {
+ "1782": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1766": {
+ "1783": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1767": {
+ "1784": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1768": {
+ "1785": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1769": {
+ "1786": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1770": {
+ "1787": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1771": {
+ "1788": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1772": {
+ "1789": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1773": {
+ "1790": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.meta"
},
- "1774": {
+ "1791": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1775": {
+ "1792": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.replayed"
},
- "1776": {
+ "1793": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.id"
},
- "1777": {
+ "1794": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1779": {
+ "1796": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1780": {
+ "1797": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1781": {
+ "1798": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1782": {
+ "1799": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1784": {
+ "1801": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
},
- "1785": {
+ "1802": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "filter"
},
- "1786": {
+ "1803": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1787": {
+ "1804": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1788": {
+ "1805": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "callback"
},
- "1789": {
+ "1806": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1790": {
+ "1807": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1791": {
+ "1808": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1792": {
+ "1809": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1793": {
+ "1810": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1794": {
+ "1811": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1795": {
+ "1812": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.meta"
},
- "1796": {
+ "1813": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1797": {
+ "1814": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.replayed"
},
- "1798": {
+ "1815": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.id"
},
- "1799": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.payload"
- },
- "1800": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.on"
- },
- "1801": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "T"
- },
- "1802": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "type"
- },
- "1803": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "filter"
- },
- "1804": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1805": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
- },
- "1806": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
- },
- "1807": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1808": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1809": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
- },
- "1810": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1811": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
- },
- "1812": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.event"
- },
- "1813": {
+ "1816": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.payload"
},
- "1814": {
+ "1817": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.on"
},
- "1815": {
+ "1818": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "1816": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
- },
- "1817": {
- "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
- },
"1819": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "type"
@@ -60733,16 +61146,16 @@
"qualifiedName": "filter"
},
"1872": {
- "sourceFileName": "",
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
"1873": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type.event"
},
"1874": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "callback"
},
"1875": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
@@ -60750,1365 +61163,1429 @@
},
"1876": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type"
},
"1877": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.httpSend"
+ "qualifiedName": "payload"
},
"1878": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default.httpSend"
+ "qualifiedName": "__type"
},
"1879": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "event"
+ "qualifiedName": "__type.type"
},
"1880": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type.event"
},
"1881": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "opts"
+ "qualifiedName": "__type.payload"
},
"1882": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "default.on"
},
"1883": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "__type.timeout"
+ "qualifiedName": "T"
},
"1884": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
"1885": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1887": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1888": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1889": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1890": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1891": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1892": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1893": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1894": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1895": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1896": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "event"
+ },
+ "1897": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1898": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1899": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1900": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.timeout"
+ },
+ "1901": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1902": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.success"
},
- "1886": {
+ "1903": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1887": {
+ "1904": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.success"
},
- "1888": {
+ "1905": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.status"
},
- "1889": {
+ "1906": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.error"
},
- "1890": {
+ "1907": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.send"
},
- "1891": {
+ "1908": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.send"
},
- "1892": {
+ "1909": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "args"
},
- "1893": {
+ "1910": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1894": {
+ "1911": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.type"
},
- "1895": {
+ "1912": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "1896": {
+ "1913": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.payload"
},
- "1897": {
+ "1914": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1899": {
+ "1916": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "1900": {
+ "1917": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1901": {
+ "1918": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1903": {
+ "1920": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.updateJoinPayload"
},
- "1904": {
+ "1921": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.updateJoinPayload"
},
- "1905": {
+ "1922": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "1906": {
+ "1923": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1907": {
+ "1924": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "1909": {
+ "1926": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.unsubscribe"
},
- "1910": {
+ "1927": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.unsubscribe"
},
- "1911": {
+ "1928": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "timeout"
},
- "1912": {
+ "1929": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.teardown"
},
- "1913": {
+ "1930": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "default.teardown"
},
- "1914": {
+ "1931": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimeChannelOptions"
},
- "1915": {
+ "1932": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1916": {
+ "1933": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.config"
},
- "1917": {
+ "1934": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1918": {
+ "1935": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.broadcast"
},
- "1919": {
+ "1936": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1920": {
+ "1937": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.self"
},
- "1921": {
+ "1938": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.ack"
},
- "1922": {
+ "1939": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.replay"
},
- "1923": {
+ "1940": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.presence"
},
- "1924": {
+ "1941": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "1925": {
+ "1942": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.key"
},
- "1926": {
+ "1943": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.enabled"
},
- "1927": {
+ "1944": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.private"
},
- "1928": {
+ "1945": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimeChannelSendResponse"
},
- "1929": {
+ "1946": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "1930": {
+ "1947": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.__constructor"
},
- "1931": {
+ "1948": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "1932": {
+ "1949": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "endPoint"
},
- "1933": {
+ "1950": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "options"
},
- "1934": {
+ "1951": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.accessTokenValue"
},
- "1935": {
+ "1952": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.apiKey"
},
- "1936": {
+ "1953": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channels"
},
- "1937": {
+ "1954": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endPoint"
},
- "1938": {
+ "1955": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.httpEndpoint"
},
- "1939": {
+ "1956": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.headers"
},
- "1940": {
+ "1957": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1941": {
+ "1958": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "1943": {
+ "1960": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.params"
},
- "1944": {
+ "1961": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1945": {
+ "1962": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "1947": {
+ "1964": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.timeout"
},
- "1948": {
+ "1965": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.transport"
},
- "1949": {
+ "1966": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatIntervalMs"
},
- "1950": {
+ "1967": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatTimer"
},
- "1951": {
+ "1968": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.pendingHeartbeatRef"
},
- "1952": {
+ "1969": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatCallback"
},
- "1953": {
+ "1970": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1954": {
+ "1971": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1955": {
+ "1972": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "1956": {
+ "1973": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.ref"
},
- "1957": {
+ "1974": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.reconnectTimer"
},
- "1958": {
+ "1975": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.vsn"
},
- "1959": {
+ "1976": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.logger"
},
- "1960": {
+ "1977": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.logLevel"
},
- "1961": {
+ "1978": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.encode"
},
- "1962": {
+ "1979": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.decode"
},
- "1963": {
+ "1980": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.reconnectAfterMs"
},
- "1964": {
+ "1981": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.conn"
},
- "1965": {
+ "1982": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendBuffer"
},
- "1966": {
+ "1983": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.serializer"
},
- "1967": {
+ "1984": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.stateChangeCallbacks"
},
- "1968": {
+ "1985": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1969": {
+ "1986": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.open"
},
- "1970": {
+ "1987": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.close"
},
- "1971": {
+ "1988": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.error"
},
- "1972": {
+ "1989": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.message"
},
- "1973": {
+ "1990": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.fetch"
},
- "1974": {
+ "1991": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "1975": {
+ "1992": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "1976": {
+ "1993": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "input"
},
- "1977": {
+ "1994": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "init"
},
- "1978": {
+ "1995": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
- "1979": {
+ "1996": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
- "1980": {
+ "1997": {
"sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
- "1981": {
+ "1998": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.accessToken"
},
- "1982": {
+ "1999": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1983": {
+ "2000": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "1984": {
+ "2001": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.worker"
},
- "1985": {
+ "2002": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.workerUrl"
},
- "1986": {
+ "2003": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.workerRef"
},
- "1990": {
+ "2007": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connect"
},
- "1991": {
+ "2008": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connect"
},
- "1992": {
+ "2009": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endpointURL"
},
- "1993": {
+ "2010": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.endpointURL"
},
- "1994": {
+ "2011": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.disconnect"
},
- "1995": {
+ "2012": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.disconnect"
},
- "1996": {
+ "2013": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "code"
},
- "1997": {
+ "2014": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "reason"
},
- "1998": {
+ "2015": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.getChannels"
},
- "1999": {
+ "2016": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.getChannels"
},
- "2000": {
+ "2017": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeChannel"
},
- "2001": {
+ "2018": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeChannel"
},
- "2002": {
+ "2019": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "channel"
},
- "2003": {
+ "2020": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeAllChannels"
},
- "2004": {
+ "2021": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.removeAllChannels"
},
- "2005": {
+ "2022": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.log"
},
- "2006": {
+ "2023": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.log"
},
- "2007": {
+ "2024": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "kind"
},
- "2008": {
+ "2025": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "msg"
},
- "2009": {
+ "2026": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "data"
},
- "2010": {
+ "2027": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connectionState"
},
- "2011": {
+ "2028": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.connectionState"
},
- "2012": {
+ "2029": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnected"
},
- "2013": {
+ "2030": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnected"
},
- "2014": {
+ "2031": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnecting"
},
- "2015": {
+ "2032": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isConnecting"
},
- "2016": {
+ "2033": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isDisconnecting"
},
- "2017": {
+ "2034": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.isDisconnecting"
},
- "2018": {
+ "2035": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channel"
},
- "2019": {
+ "2036": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.channel"
},
- "2020": {
+ "2037": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "topic"
},
- "2021": {
+ "2038": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "params"
},
- "2022": {
+ "2039": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.push"
},
- "2023": {
+ "2040": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.push"
},
- "2024": {
+ "2041": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "data"
},
- "2025": {
+ "2042": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.setAuth"
},
- "2026": {
+ "2043": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.setAuth"
},
- "2027": {
+ "2044": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "token"
},
- "2028": {
+ "2045": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendHeartbeat"
},
- "2029": {
+ "2046": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.sendHeartbeat"
},
- "2030": {
+ "2047": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.onHeartbeat"
},
- "2031": {
+ "2048": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.onHeartbeat"
},
- "2032": {
+ "2049": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "callback"
},
- "2033": {
+ "2050": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2034": {
+ "2051": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2035": {
+ "2052": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "2036": {
+ "2053": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.flushSendBuffer"
},
- "2037": {
+ "2054": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "default.flushSendBuffer"
},
- "2039": {
+ "2056": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeClientOptions"
},
- "2040": {
+ "2057": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2041": {
+ "2058": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.transport"
},
- "2042": {
+ "2059": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.timeout"
},
- "2043": {
+ "2060": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.heartbeatIntervalMs"
},
- "2044": {
+ "2061": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.heartbeatCallback"
},
- "2045": {
+ "2062": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2046": {
+ "2063": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2047": {
+ "2064": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "2048": {
+ "2065": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.vsn"
},
- "2049": {
+ "2066": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.logger"
},
- "2050": {
+ "2067": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.encode"
},
- "2051": {
+ "2068": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.decode"
},
- "2052": {
+ "2069": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.reconnectAfterMs"
},
- "2053": {
+ "2070": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.headers"
},
- "2054": {
+ "2071": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2055": {
+ "2072": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2057": {
+ "2074": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.params"
},
- "2058": {
+ "2075": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2059": {
+ "2076": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "2061": {
+ "2078": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.log_level"
},
- "2062": {
+ "2079": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.logLevel"
},
- "2063": {
+ "2080": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.fetch"
},
- "2064": {
+ "2081": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.worker"
},
- "2065": {
+ "2082": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.workerUrl"
},
- "2066": {
+ "2083": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.accessToken"
},
- "2067": {
+ "2084": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2068": {
+ "2085": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2069": {
+ "2086": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeMessage"
},
- "2070": {
+ "2087": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "2071": {
+ "2088": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.topic"
},
- "2072": {
+ "2089": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.event"
},
- "2073": {
+ "2090": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.payload"
},
- "2074": {
+ "2091": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.ref"
},
- "2075": {
+ "2092": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type.join_ref"
},
- "2076": {
+ "2093": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesFilter"
},
- "2077": {
+ "2094": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2078": {
+ "2095": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "2079": {
+ "2096": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.schema"
},
- "2080": {
+ "2097": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.table"
},
- "2081": {
+ "2098": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.filter"
},
- "2082": {
+ "2099": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2083": {
+ "2100": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesPayload"
},
- "2084": {
+ "2101": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2085": {
+ "2102": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2086": {
+ "2103": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2088": {
+ "2105": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresInsertPayload"
},
- "2089": {
+ "2106": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2090": {
+ "2107": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2091": {
+ "2108": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2092": {
+ "2109": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2093": {
+ "2110": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2094": {
+ "2111": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2095": {
+ "2112": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2096": {
+ "2113": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2098": {
+ "2115": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresUpdatePayload"
},
- "2099": {
+ "2116": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2100": {
+ "2117": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2101": {
+ "2118": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2102": {
+ "2119": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2103": {
+ "2120": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2104": {
+ "2121": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2105": {
+ "2122": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2107": {
+ "2124": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresDeletePayload"
},
- "2108": {
+ "2125": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2109": {
+ "2126": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "2110": {
+ "2127": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "2111": {
+ "2128": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2112": {
+ "2129": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "2113": {
+ "2130": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "2114": {
+ "2131": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "2115": {
+ "2132": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "2117": {
+ "2134": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceJoinPayload"
},
- "2118": {
+ "2135": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2119": {
+ "2136": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "2120": {
+ "2137": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "2121": {
+ "2138": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "2122": {
+ "2139": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.newPresences"
},
- "2123": {
+ "2140": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2124": {
+ "2141": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2125": {
+ "2142": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2127": {
+ "2144": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceLeavePayload"
},
- "2128": {
+ "2145": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2129": {
+ "2146": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "2130": {
+ "2147": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "2131": {
+ "2148": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "2132": {
+ "2149": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.leftPresences"
},
- "2133": {
+ "2150": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2134": {
+ "2151": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2135": {
+ "2152": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2137": {
+ "2154": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceState"
},
- "2138": {
+ "2155": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2139": {
+ "2156": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2141": {
+ "2158": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "2142": {
+ "2159": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2143": {
+ "2160": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "2145": {
+ "2162": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "2146": {
+ "2163": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "RealtimeRemoveChannelResponse"
},
- "2147": {
+ "2164": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES"
},
- "2148": {
+ "2165": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST"
},
- "2149": {
+ "2166": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE"
},
- "2150": {
+ "2167": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES"
},
- "2151": {
+ "2168": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM"
},
- "2152": {
+ "2169": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT"
},
- "2153": {
+ "2170": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
},
- "2154": {
+ "2171": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
},
- "2155": {
+ "2172": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
},
- "2156": {
+ "2173": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
},
- "2157": {
+ "2174": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS"
},
- "2158": {
+ "2175": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC"
},
- "2159": {
+ "2176": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN"
},
- "2160": {
+ "2177": {
"sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE"
},
- "2161": {
+ "2178": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES"
},
- "2162": {
+ "2179": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED"
},
- "2163": {
+ "2180": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT"
},
- "2164": {
+ "2181": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED"
},
- "2165": {
+ "2182": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR"
},
- "2166": {
+ "2183": {
"sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_CHANNEL_STATES"
},
- "2167": {
+ "2184": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory"
},
- "2169": {
+ "2186": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "2170": {
+ "2187": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "2171": {
+ "2188": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "2172": {
+ "2189": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "2173": {
+ "2190": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "url"
},
- "2174": {
+ "2191": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "protocols"
},
- "2175": {
+ "2192": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.createWebSocket"
},
- "2176": {
+ "2193": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.createWebSocket"
},
- "2177": {
+ "2194": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "url"
},
- "2178": {
+ "2195": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "protocols"
},
- "2179": {
+ "2196": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "2180": {
+ "2197": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "2183": {
+ "2200": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike"
},
- "2184": {
+ "2201": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CONNECTING"
},
- "2185": {
+ "2202": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.OPEN"
},
- "2186": {
+ "2203": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CLOSING"
},
- "2187": {
+ "2204": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CLOSED"
},
- "2188": {
+ "2205": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.readyState"
},
- "2189": {
+ "2206": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.url"
},
- "2190": {
+ "2207": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.protocol"
},
- "2191": {
+ "2208": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.close"
},
- "2192": {
+ "2209": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.close"
},
- "2193": {
+ "2210": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "code"
},
- "2194": {
+ "2211": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "reason"
},
- "2195": {
+ "2212": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.send"
},
- "2196": {
+ "2213": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.send"
},
- "2197": {
+ "2214": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "data"
},
- "2198": {
+ "2215": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onopen"
},
- "2199": {
+ "2216": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2200": {
+ "2217": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2201": {
+ "2218": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2202": {
+ "2219": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2203": {
+ "2220": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onmessage"
},
- "2204": {
+ "2221": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2205": {
+ "2222": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2206": {
+ "2223": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2207": {
+ "2224": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2208": {
+ "2225": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onclose"
},
- "2209": {
+ "2226": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2210": {
+ "2227": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2211": {
+ "2228": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2212": {
+ "2229": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2213": {
+ "2230": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onerror"
},
- "2214": {
+ "2231": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2215": {
+ "2232": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2216": {
+ "2233": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "2217": {
+ "2234": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "2218": {
+ "2235": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.addEventListener"
},
- "2219": {
+ "2236": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.addEventListener"
},
- "2220": {
+ "2237": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "type"
},
- "2221": {
+ "2238": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "listener"
},
- "2222": {
+ "2239": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.removeEventListener"
},
- "2223": {
+ "2240": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.removeEventListener"
},
- "2224": {
+ "2241": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "type"
},
- "2225": {
+ "2242": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "listener"
},
- "2226": {
+ "2243": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.binaryType"
},
- "2227": {
+ "2244": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.bufferedAmount"
},
- "2228": {
+ "2245": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.extensions"
},
- "2229": {
+ "2246": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.dispatchEvent"
},
- "2230": {
+ "2247": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2231": {
+ "2248": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "2232": {
+ "2249": {
"sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "event"
},
- "2233": {
+ "2250": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "2234": {
+ "2251": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "2235": {
+ "2252": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "2236": {
+ "2253": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "address"
},
- "2237": {
+ "2254": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "subprotocols"
},
- "2238": {
+ "2255": {
"sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor.__index"
}
diff --git a/apps/docs/spec/supabase_csharp_v0.yml b/apps/docs/spec/supabase_csharp_v0.yml
index 9815f36f3c24d..5ce6739942a73 100644
--- a/apps/docs/spec/supabase_csharp_v0.yml
+++ b/apps/docs/spec/supabase_csharp_v0.yml
@@ -869,7 +869,18 @@ functions:
```c#
var channels = supabase.Realtime.Subscriptions;
```
-
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
- id: list-buckets
description: |
Retrieves the details of all Storage buckets within an existing product.
diff --git a/apps/docs/spec/supabase_csharp_v1.yml b/apps/docs/spec/supabase_csharp_v1.yml
index f67e453007d50..5970d2909b672 100644
--- a/apps/docs/spec/supabase_csharp_v1.yml
+++ b/apps/docs/spec/supabase_csharp_v1.yml
@@ -869,7 +869,18 @@ functions:
```c#
var channels = supabase.Realtime.Subscriptions;
```
-
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
- id: list-buckets
description: |
Retrieves the details of all Storage buckets within an existing product.
diff --git a/apps/docs/spec/supabase_dart_v1.yml b/apps/docs/spec/supabase_dart_v1.yml
index a13ba8b73da2b..a98b0a886586b 100644
--- a/apps/docs/spec/supabase_dart_v1.yml
+++ b/apps/docs/spec/supabase_dart_v1.yml
@@ -1309,7 +1309,18 @@ functions:
}
}
```
-
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
- id: list-buckets
description: |
Retrieves the details of all Storage buckets within an existing product.
diff --git a/apps/docs/spec/supabase_dart_v2.yml b/apps/docs/spec/supabase_dart_v2.yml
index 581856679b678..caabeac6bb29e 100644
--- a/apps/docs/spec/supabase_dart_v2.yml
+++ b/apps/docs/spec/supabase_dart_v2.yml
@@ -3901,6 +3901,18 @@ functions:
}
}
```
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
- id: list-buckets
description: |
diff --git a/apps/docs/spec/supabase_js_v1.yml b/apps/docs/spec/supabase_js_v1.yml
index 2c2eebb5b63b4..a5caefbfdce59 100644
--- a/apps/docs/spec/supabase_js_v1.yml
+++ b/apps/docs/spec/supabase_js_v1.yml
@@ -1259,6 +1259,18 @@ functions:
const subscriptions = supabase.getSubscriptions()
```
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
- id: list-buckets
title: 'listBuckets()'
$ref: '@supabase/storage-js."lib/StorageBucketApi".StorageBucketApi.listBuckets'
diff --git a/apps/docs/spec/supabase_js_v2.yml b/apps/docs/spec/supabase_js_v2.yml
index f9de73a58a2ce..cd142fc4473e1 100644
--- a/apps/docs/spec/supabase_js_v2.yml
+++ b/apps/docs/spec/supabase_js_v2.yml
@@ -18,11 +18,6 @@ functions:
- id: initializing
title: 'Initializing'
$ref: '@supabase/supabase-js.SupabaseClient.constructor'
- description: |
- You can initialize a new Supabase client using the `createClient()` method.
-
- The Supabase client is your entrypoint to the rest of the Supabase functionality
- and is the easiest way to interact with everything we offer within the Supabase ecosystem.
examples:
- id: create-client
@@ -186,6 +181,20 @@ functions:
- You keep the `expo-secure-storage`, `aes-js` and `react-native-get-random-values` libraries up-to-date.
- Choose the correct [`SecureStoreOptions`](https://docs.expo.dev/versions/latest/sdk/securestore/#securestoreoptions) for your app's needs. E.g. [`SecureStore.WHEN_UNLOCKED`](https://docs.expo.dev/versions/latest/sdk/securestore/#securestorewhen_unlocked) regulates when the data can be accessed.
- Carefully consider optimizations or other modifications to the above example, as those can lead to introducing subtle security vulnerabilities.
+ - id: initializing-typedoc-example-1
+ name: Example 8
+ code: >-
+ ```ts
+
+ import { createClient } from '@supabase/supabase-js'
+
+
+ const supabase = createClient('https://xyzcompany.supabase.co',
+ 'public-anon-key')
+
+ const { data } = await supabase.from('profiles').select('*')
+
+ ```
- id: auth-api
title: 'Overview'
@@ -798,7 +807,9 @@ functions:
- id: sign-in-with-email
name: Sign in with email
isSpotlight: true
- description: The user will be sent an email which contains either a magiclink or a OTP or both. By default, a given user can only request a OTP once every 60 seconds.
+ description: The user will be sent an email which contains either a magiclink or
+ a OTP or both. By default, a given user can only request a OTP once
+ every 60 seconds.
code: |
```js
const { data, error } = await supabase.auth.signInWithOtp({
@@ -821,7 +832,8 @@ functions:
- id: sign-in-with-sms-otp
name: Sign in with SMS OTP
isSpotlight: false
- description: The user will be sent a SMS which contains a OTP. By default, a given user can only request a OTP once every 60 seconds.
+ description: The user will be sent a SMS which contains a OTP. By default, a
+ given user can only request a OTP once every 60 seconds.
code: |
```js
const { data, error } = await supabase.auth.signInWithOtp({
@@ -831,7 +843,10 @@ functions:
- id: sign-in-with-whatsapp-otp
name: Sign in with WhatsApp OTP
isSpotlight: false
- description: The user will be sent a WhatsApp message which contains a OTP. By default, a given user can only request a OTP once every 60 seconds. Note that a user will need to have a valid WhatsApp account that is linked to Twilio in order to use this feature.
+ description: The user will be sent a WhatsApp message which contains a OTP. By
+ default, a given user can only request a OTP once every 60 seconds.
+ Note that a user will need to have a valid WhatsApp account that is
+ linked to Twilio in order to use this feature.
code: |
```js
const { data, error } = await supabase.auth.signInWithOtp({
@@ -1835,7 +1850,8 @@ functions:
examples:
- id: set-the-session
name: Set the session
- description: Sets the session data from an access_token and refresh_token, then returns an auth response or error.
+ description: Sets the session data from an access_token and refresh_token, then
+ returns an auth response or error.
isSpotlight: true
code: |
```js
@@ -2250,7 +2266,7 @@ functions:
Learn more about implementing MFA in your application [in the MFA guide](https://supabase.com/docs/guides/auth/auth-mfa#overview).
- id: mfa-enroll
title: 'mfa.enroll()'
- $ref: '@supabase/auth-js.GoTrueClient.mfa.enroll'
+ $ref: '@supabase/auth-js.GoTrueMFAApi.enroll'
notes: |
- Use `totp` or `phone` as the `factorType` and use the returned `id` to create a challenge.
- To create a challenge, see [`mfa.challenge()`](/docs/reference/javascript/auth-mfa-challenge).
@@ -2324,7 +2340,7 @@ functions:
```
- id: mfa-challenge
title: 'mfa.challenge()'
- $ref: '@supabase/auth-js.GoTrueClient.mfa.challenge'
+ $ref: '@supabase/auth-js.GoTrueMFAApi.challenge'
notes: |
- An [enrolled factor](/docs/reference/javascript/auth-mfa-enroll) is required before creating a challenge.
- To verify a challenge, see [`mfa.verify()`](/docs/reference/javascript/auth-mfa-verify).
@@ -2392,7 +2408,7 @@ functions:
```
- id: mfa-verify
title: 'mfa.verify()'
- $ref: '@supabase/auth-js.GoTrueClient.mfa.verify'
+ $ref: '@supabase/auth-js.GoTrueMFAApi.verify'
notes: |
- To verify a challenge, please [create a challenge](/docs/reference/javascript/auth-mfa-challenge) first.
examples:
@@ -2468,7 +2484,7 @@ functions:
```
- id: mfa-challenge-and-verify
title: 'mfa.challengeAndVerify()'
- $ref: '@supabase/auth-js.GoTrueClient.mfa.challengeAndVerify'
+ $ref: '@supabase/auth-js.GoTrueMFAApi.challengeAndVerify'
notes: |
- Intended for use with only TOTP factors.
- An [enrolled factor](/docs/reference/javascript/auth-mfa-enroll) is required before invoking `challengeAndVerify()`.
@@ -2545,7 +2561,7 @@ functions:
```
- id: mfa-unenroll
title: 'mfa.unenroll()'
- $ref: '@supabase/auth-js.GoTrueClient.mfa.unenroll'
+ $ref: '@supabase/auth-js.GoTrueMFAApi.unenroll'
examples:
- id: unenroll-a-factor
name: Unenroll a factor
@@ -2567,7 +2583,7 @@ functions:
```
- id: mfa-get-authenticator-assurance-level
title: 'mfa.getAuthenticatorAssuranceLevel()'
- $ref: '@supabase/auth-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel'
+ $ref: '@supabase/auth-js.GoTrueMFAApi.getAuthenticatorAssuranceLevel'
notes: |
- Authenticator Assurance Level (AAL) is the measure of the strength of an authentication mechanism.
- In Supabase, having an AAL of `aal1` refers to having the 1st factor of authentication such as an email and password or OAuth sign-in while `aal2` refers to the 2nd factor of authentication such as a time-based, one-time-password (TOTP) or Phone factor.
@@ -2942,7 +2958,8 @@ functions:
type: GenerateLinkParams
subContent:
- name: type
- type: 'signup | invite | magiclink | recovery | email_change_current | email_change_new'
+ type: 'signup | invite | magiclink | recovery | email_change_current |
+ email_change_new'
- name: email
type: string
- name: password
@@ -2952,7 +2969,8 @@ functions:
- name: newEmail
type: string
isOptional: true
- description: Only required if type is `email_change_current` or `email_change_new`.
+ description: Only required if type is `email_change_current` or
+ `email_change_new`.
- name: options
type: object
isOptional: true
@@ -2960,12 +2978,14 @@ functions:
- name: data
type: object
description: >
- Custom JSON object containing user metadata, to be stored in the `raw_user_meta_data` column.
- Only accepted if type is `signup`, `invite`, or `magiclink`.
+ Custom JSON object containing user metadata, to be stored in
+ the `raw_user_meta_data` column. Only accepted if type is
+ `signup`, `invite`, or `magiclink`.
- name: redirectTo
type: string
description: >
- A redirect URL which will be appended to the generated email link.
+ A redirect URL which will be appended to the generated email
+ link.
examples:
- id: generate-a-signup-link
name: Generate a signup link
@@ -4458,17 +4478,6 @@ functions:
- id: rpc
title: 'Postgres functions: rpc()'
- description: |
- You can call Postgres functions as _Remote Procedure Calls_, logic in your database that you can execute from anywhere.
- Functions are useful when the logic rarely changes—like for password resets and updates.
-
- ```sql
- create or replace function hello_world() returns text as $$
- select 'Hello world';
- $$ language sql;
- ```
-
- To call Postgres functions on [Read Replicas](/docs/guides/platform/read-replicas), use the `get: true` option.
$ref: '@supabase/postgrest-js.PostgrestClient.rpc'
examples:
- id: call-a-postgres-function-without-arguments
@@ -5818,7 +5827,6 @@ functions:
can filter on range columns using the string representation of range
values.
hideCodeBlock: true
- # TODO: schema & result
- id: text-search
title: textSearch()
$ref: '@supabase/postgrest-js.PostgrestFilterBuilder.textSearch'
@@ -6882,18 +6890,26 @@ functions:
```
hideCodeBlock: true
isSpotlight: true
+ - id: overrideTypes-typedoc-example-1
+ name: Example 5
+ code: |-
+ ```typescript
+ // Merge with existing types (default behavior)
+ const query = supabase
+ .from('users')
+ .select()
+ .overrideTypes<{ custom_field: string }>()
+
+ // Replace existing types completely
+ const replaceQuery = supabase
+ .from('users')
+ .select()
+ .overrideTypes<{ id: number; name: string }, { merge: false }>()
+ ```
- id: explain
$ref: '@supabase/postgrest-js.PostgrestTransformBuilder.explain'
title: Using Explain
- description: |
- For debugging slow queries, you can get the [Postgres `EXPLAIN` execution plan](https://www.postgresql.org/docs/current/sql-explain.html) of a query
- using the `explain()` method. This works on any query, even for `rpc()` or writes.
-
- Explain is not enabled by default as it can reveal sensitive information about your database.
- It's best to only enable this for testing environments but if you wish to enable it for production you can provide additional protection by using a `pre-request` function.
-
- Follow the [Performance Debugging Guide](/docs/guides/database/debugging-performance) to enable the functionality on your project.
examples:
- id: get-execution-plan
name: Get the execution plan
@@ -7051,8 +7067,6 @@ functions:
- id: invoke
title: invoke()
- description: |
- Invoke a Supabase Edge Function.
$ref: '@supabase/functions-js.FunctionsClient.invoke'
notes: |
- Requires an Authorization header.
@@ -7167,6 +7181,14 @@ functions:
method: 'GET'
})
```
+ - id: invoke-typedoc-example-1
+ name: Example 7
+ code: |-
+ ```ts
+ const { data, error } = await functions.invoke('hello-world', {
+ body: { name: 'Ada' },
+ })
+ ```
- id: subscribe
title: on().subscribe()
@@ -7317,7 +7339,8 @@ functions:
```
- id: listen-to-multiple-events
name: Listen to multiple events
- description: You can chain listeners if you want to listen to multiple events for each table.
+ description: You can chain listeners if you want to listen to multiple events
+ for each table.
code: |
```js
supabase
@@ -7328,7 +7351,9 @@ functions:
```
- id: listening-to-row-level-changes
name: Listen to row level changes
- description: You can listen to individual rows using the format `{table}:{col}=eq.{val}` - where `{col}` is the column name, and `{val}` is the value which you want to match.
+ description: You can listen to individual rows using the format
+ `{table}:{col}=eq.{val}` - where `{col}` is the column name, and
+ `{val}` is the value which you want to match.
notes: |
- ``eq`` filter works with all database types as under the hood, it's casting both the filter value and the database value to the correct type and then comparing them.
code: |
@@ -7340,8 +7365,6 @@ functions:
```
- id: broadcast-message
title: broadcastMessage()
- description: |
- Broadcast a message to all connected clients to a channel.
notes: |
- When using REST you don't need to subscribe to the channel
- REST calls are only available from 2.37.0 onwards
@@ -7417,6 +7440,10 @@ functions:
supabase.removeAllChannels()
```
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
- id: list-buckets
title: listBuckets()
$ref: '@supabase/storage-js.packages/StorageBucketApi.default.listBuckets'
@@ -7425,36 +7452,6 @@ functions:
- `buckets` table permissions: `select`
- `objects` table permissions: none
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: list-buckets
- name: List buckets
- isSpotlight: true
- code: |
- ```ts
- const { data, error } = await supabase
- .storage
- .listBuckets()
- ```
- response: |
- ```json
- {
- "data": [
- {
- "id": "avatars",
- "name": "avatars",
- "owner": "",
- "public": false,
- "file_size_limit": 1024,
- "allowed_mime_types": [
- "image/png"
- ],
- "created_at": "2024-05-22T22:26:05.100Z",
- "updated_at": "2024-05-22T22:26:05.100Z"
- }
- ],
- "error": null
- }
- ```
- id: get-bucket
title: getBucket()
@@ -7464,34 +7461,6 @@ functions:
- `buckets` table permissions: `select`
- `objects` table permissions: none
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: get-bucket
- name: Get bucket
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .getBucket('avatars')
- ```
- response: |
- ```json
- {
- "data": {
- "id": "avatars",
- "name": "avatars",
- "owner": "",
- "public": false,
- "file_size_limit": 1024,
- "allowed_mime_types": [
- "image/png"
- ],
- "created_at": "2024-05-22T22:26:05.100Z",
- "updated_at": "2024-05-22T22:26:05.100Z"
- },
- "error": null
- }
- ```
- id: create-bucket
title: createBucket()
@@ -7501,29 +7470,6 @@ functions:
- `buckets` table permissions: `insert`
- `objects` table permissions: none
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: create-bucket
- name: Create bucket
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .createBucket('avatars', {
- public: false,
- allowedMimeTypes: ['image/png'],
- fileSizeLimit: 1024
- })
- ```
- response: |
- ```json
- {
- "data": {
- "name": "avatars"
- },
- "error": null
- }
- ```
- id: empty-bucket
title: emptyBucket()
@@ -7533,25 +7479,7 @@ functions:
- `buckets` table permissions: `select`
- `objects` table permissions: `select` and `delete`
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: empty-bucket
- name: Empty bucket
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .emptyBucket('avatars')
- ```
- response: |
- ```json
- {
- "data": {
- "message": "Successfully emptied"
- },
- "error": null
- }
- ```
+
- id: update-bucket
title: updateBucket()
$ref: '@supabase/storage-js.packages/StorageBucketApi.default.updateBucket'
@@ -7560,29 +7488,6 @@ functions:
- `buckets` table permissions: `select` and `update`
- `objects` table permissions: none
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: update-bucket
- name: Update bucket
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .updateBucket('avatars', {
- public: false,
- allowedMimeTypes: ['image/png'],
- fileSizeLimit: 1024
- })
- ```
- response: |
- ```json
- {
- "data": {
- "message": "Successfully updated"
- },
- "error": null
- }
- ```
- id: delete-bucket
title: deleteBucket()
@@ -7592,25 +7497,30 @@ functions:
- `buckets` table permissions: `select` and `delete`
- `objects` table permissions: none
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: delete-bucket
- name: Delete bucket
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .deleteBucket('avatars')
- ```
- response: |
- ```json
- {
- "data": {
- "message": "Successfully deleted"
- },
- "error": null
- }
- ```
+
+ - id: analytics-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with Analytics Buckets.
+ - id: storageanalyticsclient-createbucket
+ title: Create a new analytics bucket
+ $ref: '@supabase/storage-js.packages/StorageAnalyticsClient.default.createBucket'
+ notes: |
+ - Creates a new analytics bucket using Iceberg tables
+ - Analytics buckets are optimized for analytical queries and data processing
+
+ - id: storageanalyticsclient-listbuckets
+ title: List analytics buckets
+ $ref: '@supabase/storage-js.packages/StorageAnalyticsClient.default.listBuckets'
+ notes: |
+ - Retrieves the details of all Analytics Storage buckets within an existing project
+ - Only returns buckets of type 'ANALYTICS'
+
+ - id: storageanalyticsclient-deletebucket
+ title: Delete an analytics bucket
+ $ref: '@supabase/storage-js.packages/StorageAnalyticsClient.default.deleteBucket'
+ notes: |
+ - Deletes an analytics bucket
- id: from-upload
title: from.upload()
@@ -7621,43 +7531,6 @@ functions:
- `objects` table permissions: only `insert` when you are uploading new files and `select`, `insert` and `update` when you are upserting files
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- For React Native, using either `Blob`, `File` or `FormData` does not work as intended. Upload file using `ArrayBuffer` from base64 file data instead, see example below.
- examples:
- - id: upload-file
- name: Upload file
- isSpotlight: true
- code: |
- ```js
- const avatarFile = event.target.files[0]
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .upload('public/avatar1.png', avatarFile, {
- cacheControl: '3600',
- upsert: false
- })
- ```
- response: |
- ```json
- {
- "data": {
- "path": "public/avatar1.png",
- "fullPath": "avatars/public/avatar1.png"
- },
- "error": null
- }
- - id: upload-file-using-arraybuffer-from-base64-file-data
- name: Upload file using `ArrayBuffer` from base64 file data
- code: |
- ```js
- import { decode } from 'base64-arraybuffer'
-
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .upload('public/avatar1.png', decode('base64FileData'), {
- contentType: 'image/png'
- })
- ```
- id: from-update
title: from.update()
@@ -7668,44 +7541,6 @@ functions:
- `objects` table permissions: `update` and `select`
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- For React Native, using either `Blob`, `File` or `FormData` does not work as intended. Update file using `ArrayBuffer` from base64 file data instead, see example below.
- examples:
- - id: update-file
- name: Update file
- isSpotlight: true
- code: |
- ```js
- const avatarFile = event.target.files[0]
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .update('public/avatar1.png', avatarFile, {
- cacheControl: '3600',
- upsert: true
- })
- ```
- response: |
- ```json
- {
- "data": {
- "path": "public/avatar1.png",
- "fullPath": "avatars/public/avatar1.png"
- },
- "error": null
- }
- ```
- - id: update-file-using-arraybuffer-from-base64-file-data
- name: Update file using `ArrayBuffer` from base64 file data
- code: |
- ```js
- import {decode} from 'base64-arraybuffer'
-
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .update('public/avatar1.png', decode('base64FileData'), {
- contentType: 'image/png'
- })
- ```
- id: from-move
title: from.move()
@@ -7715,26 +7550,6 @@ functions:
- `buckets` table permissions: none
- `objects` table permissions: `update` and `select`
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: move-file
- name: Move file
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .move('public/avatar1.png', 'private/avatar2.png')
- ```
- response: |
- ```json
- {
- "data": {
- "message": "Successfully moved"
- },
- "error": null
- }
- ```
- id: from-copy
title: from.copy()
@@ -7744,26 +7559,6 @@ functions:
- `buckets` table permissions: none
- `objects` table permissions: `insert` and `select`
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: copy-file
- name: Copy file
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .copy('public/avatar1.png', 'private/avatar2.png')
- ```
- response: |
- ```json
- {
- "data": {
- "path": "avatars/private/avatar2.png"
- },
- "error": null
- }
- ```
- id: from-create-signed-url
title: from.createSignedUrl()
@@ -7773,53 +7568,6 @@ functions:
- `buckets` table permissions: none
- `objects` table permissions: `select`
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: create-signed-url
- name: Create Signed URL
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .createSignedUrl('folder/avatar1.png', 60)
- ```
- response: |
- ```json
- {
- "data": {
- "signedUrl": "https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar1.png?token="
- },
- "error": null
- }
- ```
- - id: create-signed-url-with-transformations
- name: Create a signed URL for an asset with transformations
- isSpotlight: true
- code: |
- ```js
- const { data } = await supabase
- .storage
- .from('avatars')
- .createSignedUrl('folder/avatar1.png', 60, {
- transform: {
- width: 100,
- height: 100,
- }
- })
- ```
- - id: create-signed-url-with-download
- name: Create a signed URL which triggers the download of the asset
- isSpotlight: true
- code: |
- ```js
- const { data } = await supabase
- .storage
- .from('avatars')
- .createSignedUrl('folder/avatar1.png', 60, {
- download: true,
- })
- ```
- id: from-create-signed-urls
title: from.createSignedUrls()
@@ -7829,37 +7577,6 @@ functions:
- `buckets` table permissions: none
- `objects` table permissions: `select`
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: create-signed-urls
- name: Create Signed URLs
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .createSignedUrls(['folder/avatar1.png', 'folder/avatar2.png'], 60)
- ```
- response: |
- ```json
- {
- "data": [
- {
- "error": null,
- "path": "folder/avatar1.png",
- "signedURL": "/object/sign/avatars/folder/avatar1.png?token=",
- "signedUrl": "https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar1.png?token="
- },
- {
- "error": null,
- "path": "folder/avatar2.png",
- "signedURL": "/object/sign/avatars/folder/avatar2.png?token=",
- "signedUrl": "https://example.supabase.co/storage/v1/object/sign/avatars/folder/avatar2.png?token="
- }
- ],
- "error": null
- }
- ```
- id: from-create-signed-upload-url
title: from.createSignedUploadUrl()
@@ -7869,28 +7586,6 @@ functions:
- `buckets` table permissions: none
- `objects` table permissions: `insert`
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: create-signed-upload-url
- name: Create Signed Upload URL
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .createSignedUploadUrl('folder/cat.jpg')
- ```
- response: |
- ```json
- {
- "data": {
- "signedUrl": "https://example.supabase.co/storage/v1/object/upload/sign/avatars/folder/cat.jpg?token=",
- "path": "folder/cat.jpg",
- "token": ""
- },
- "error": null
- }
- ```
- id: from-upload-to-signed-url
title: from.uploadToSignedUrl()
@@ -7900,27 +7595,6 @@ functions:
- `buckets` table permissions: none
- `objects` table permissions: none
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: upload-to-signed-url
- name: Upload to a signed URL
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .uploadToSignedUrl('folder/cat.jpg', 'token-from-createSignedUploadUrl', file)
- ```
- response: |
- ```json
- {
- "data": {
- "path": "folder/cat.jpg",
- "fullPath": "avatars/folder/cat.jpg"
- },
- "error": null
- }
- ```
- id: from-get-public-url
title: from.getPublicUrl()
@@ -7931,52 +7605,6 @@ functions:
- `buckets` table permissions: none
- `objects` table permissions: none
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: returns-the-url-for-an-asset-in-a-public-bucket
- name: Returns the URL for an asset in a public bucket
- isSpotlight: true
- code: |
- ```js
- const { data } = supabase
- .storage
- .from('public-bucket')
- .getPublicUrl('folder/avatar1.png')
- ```
- response: |
- ```json
- {
- "data": {
- "publicUrl": "https://example.supabase.co/storage/v1/object/public/public-bucket/folder/avatar1.png"
- }
- }
- ```
- - id: transform-asset-in-public-bucket
- name: Returns the URL for an asset in a public bucket with transformations
- isSpotlight: true
- code: |
- ```js
- const { data } = supabase
- .storage
- .from('public-bucket')
- .getPublicUrl('folder/avatar1.png', {
- transform: {
- width: 100,
- height: 100,
- }
- })
- ```
- - id: download-asset-in-public-bucket
- name: Returns the URL which triggers the download of an asset in a public bucket
- isSpotlight: true
- code: |
- ```js
- const { data } = supabase
- .storage
- .from('public-bucket')
- .getPublicUrl('folder/avatar1.png', {
- download: true,
- })
- ```
- id: from-download
title: from.download()
@@ -7986,40 +7614,6 @@ functions:
- `buckets` table permissions: none
- `objects` table permissions: `select`
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: download-file
- name: Download file
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .download('folder/avatar1.png')
- ```
- response: |
- ```json
- {
- "data": ,
- "error": null
- }
- ```
- - id: download-file-with-transformations
- name: Download file with transformations
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .download('folder/avatar1.png', {
- transform: {
- width: 100,
- height: 100,
- quality: 80
- }
- })
- ```
- id: from-remove
title: from.remove()
@@ -8029,24 +7623,6 @@ functions:
- `buckets` table permissions: none
- `objects` table permissions: `delete` and `select`
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
- examples:
- - id: delete-file
- name: Delete file
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .remove(['folder/avatar1.png'])
- ```
- response: |
- ```json
- {
- "data": [],
- "error": null
- }
- ```
- id: from-list
title: from.list()
@@ -8056,56 +7632,541 @@ functions:
- `buckets` table permissions: none
- `objects` table permissions: `select`
- Refer to the [Storage guide](/docs/guides/storage/security/access-control) on how access control works
+
+ - id: supabase-js-supabaseclient-channel
+ title: SupabaseClient.channel()
+ $ref: '@supabase/supabase-js.SupabaseClient.channel'
+ - id: supabase-js-supabaseclient-from
+ title: SupabaseClient.from()
+ $ref: '@supabase/supabase-js.SupabaseClient.from'
+ - id: supabase-js-supabaseclient-rpc
+ title: SupabaseClient.rpc()
+ $ref: '@supabase/supabase-js.SupabaseClient.rpc'
+ - id: supabase-js-supabaseclient-schema
+ title: SupabaseClient.schema()
+ $ref: '@supabase/supabase-js.SupabaseClient.schema'
+ - id: auth-js-gotrueadminapi-constructor
+ title: new GoTrueAdminApi()
+ $ref: '@supabase/auth-js.GoTrueAdminApi.constructor'
examples:
- - id: list-files-in-a-bucket
- name: List files in a bucket
- isSpotlight: true
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .list('folder', {
- limit: 100,
- offset: 0,
- sortBy: { column: 'name', order: 'asc' },
- })
+ - id: auth-js-gotrueadminapi-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ import { GoTrueAdminApi } from '@supabase/auth-js'
+
+ const admin = new GoTrueAdminApi({
+ url: 'https://xyzcompany.supabase.co/auth/v1',
+ headers: { Authorization: `Bearer ${process.env.SUPABASE_SERVICE_ROLE_KEY}` },
+ })
```
- response: |
- ```json
- {
- "data": [
- {
- "name": "avatar1.png",
- "id": "e668cf7f-821b-4a2f-9dce-7dfa5dd1cfd2",
- "updated_at": "2024-05-22T23:06:05.580Z",
- "created_at": "2024-05-22T23:04:34.443Z",
- "last_accessed_at": "2024-05-22T23:04:34.443Z",
- "metadata": {
- "eTag": "\"c5e8c553235d9af30ef4f6e280790b92\"",
- "size": 32175,
- "mimetype": "image/png",
- "cacheControl": "max-age=3600",
- "lastModified": "2024-05-22T23:06:05.574Z",
- "contentLength": 32175,
- "httpStatusCode": 200
- }
- }
- ],
- "error": null
+ - id: auth-js-gotrueadminapi-signout
+ title: GoTrueAdminApi.signOut()
+ $ref: '@supabase/auth-js.GoTrueAdminApi.signOut'
+ - id: auth-js-gotrueclient-constructor
+ title: new GoTrueClient()
+ $ref: '@supabase/auth-js.GoTrueClient.constructor'
+ examples:
+ - id: auth-js-gotrueclient-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ import { GoTrueClient } from '@supabase/auth-js'
+
+ const auth = new GoTrueClient({
+ url: 'https://xyzcompany.supabase.co/auth/v1',
+ headers: { apikey: 'public-anon-key' },
+ storageKey: 'supabase-auth',
+ })
+ ```
+ - id: auth-js-gotrueclient-initialize
+ title: GoTrueClient.initialize()
+ $ref: '@supabase/auth-js.GoTrueClient.initialize'
+ - id: auth-js-gotrueclient-isthrowonerrorenabled
+ title: GoTrueClient.isThrowOnErrorEnabled()
+ $ref: '@supabase/auth-js.GoTrueClient.isThrowOnErrorEnabled'
+ - id: auth-js-authoauthserverapi-approveauthorization
+ title: AuthOAuthServerApi.approveAuthorization()
+ $ref: '@supabase/auth-js.AuthOAuthServerApi.approveAuthorization'
+ - id: auth-js-authoauthserverapi-denyauthorization
+ title: AuthOAuthServerApi.denyAuthorization()
+ $ref: '@supabase/auth-js.AuthOAuthServerApi.denyAuthorization'
+ - id: auth-js-authoauthserverapi-getauthorizationdetails
+ title: AuthOAuthServerApi.getAuthorizationDetails()
+ $ref: '@supabase/auth-js.AuthOAuthServerApi.getAuthorizationDetails'
+ - id: auth-js-gotrueadminoauthapi-createclient
+ title: GoTrueAdminOAuthApi.createClient()
+ $ref: '@supabase/auth-js.GoTrueAdminOAuthApi.createClient'
+ - id: auth-js-gotrueadminoauthapi-deleteclient
+ title: GoTrueAdminOAuthApi.deleteClient()
+ $ref: '@supabase/auth-js.GoTrueAdminOAuthApi.deleteClient'
+ - id: auth-js-gotrueadminoauthapi-getclient
+ title: GoTrueAdminOAuthApi.getClient()
+ $ref: '@supabase/auth-js.GoTrueAdminOAuthApi.getClient'
+ - id: auth-js-gotrueadminoauthapi-listclients
+ title: GoTrueAdminOAuthApi.listClients()
+ $ref: '@supabase/auth-js.GoTrueAdminOAuthApi.listClients'
+ - id: auth-js-gotrueadminoauthapi-regenerateclientsecret
+ title: GoTrueAdminOAuthApi.regenerateClientSecret()
+ $ref: '@supabase/auth-js.GoTrueAdminOAuthApi.regenerateClientSecret'
+ - id: auth-js-gotrueadminoauthapi-updateclient
+ title: GoTrueAdminOAuthApi.updateClient()
+ $ref: '@supabase/auth-js.GoTrueAdminOAuthApi.updateClient'
+ - id: auth-js-gotruemfaapi-listfactors
+ title: GoTrueMFAApi.listFactors()
+ $ref: '@supabase/auth-js.GoTrueMFAApi.listFactors'
+ - id: postgrest-js-postgrestbuilder-constructor
+ title: new PostgrestBuilder()
+ $ref: '@supabase/postgrest-js.PostgrestBuilder.constructor'
+ examples:
+ - id: postgrest-js-postgrestbuilder-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ import PostgrestQueryBuilder from '@supabase/postgrest-js'
+
+ const builder = new PostgrestQueryBuilder(
+ new URL('https://xyzcompany.supabase.co/rest/v1/users'),
+ { headers: new Headers({ apikey: 'public-anon-key' }) }
+ )
+ ```
+ - id: postgrest-js-postgrestbuilder-returns
+ title: PostgrestBuilder.returns()
+ $ref: '@supabase/postgrest-js.PostgrestBuilder.returns'
+ - id: postgrest-js-postgrestbuilder-setheader
+ title: PostgrestBuilder.setHeader()
+ $ref: '@supabase/postgrest-js.PostgrestBuilder.setHeader'
+ - id: postgrest-js-postgrestbuilder-then
+ title: PostgrestBuilder.then()
+ $ref: '@supabase/postgrest-js.PostgrestBuilder.then'
+ - id: postgrest-js-postgrestbuilder-throwonerror
+ title: PostgrestBuilder.throwOnError()
+ $ref: '@supabase/postgrest-js.PostgrestBuilder.throwOnError'
+ - id: postgrest-js-postgrestclient-constructor
+ title: new PostgrestClient()
+ $ref: '@supabase/postgrest-js.PostgrestClient.constructor'
+ examples:
+ - id: postgrest-js-postgrestclient-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ import PostgrestClient from '@supabase/postgrest-js'
+
+ const postgrest = new PostgrestClient('https://xyzcompany.supabase.co/rest/v1', {
+ headers: { apikey: 'public-anon-key' },
+ schema: 'public',
+ })
+ ```
+ - id: postgrest-js-postgrestclient-from
+ title: PostgrestClient.from()
+ $ref: '@supabase/postgrest-js.PostgrestClient.from'
+ - id: postgrest-js-postgrestclient-schema
+ title: PostgrestClient.schema()
+ $ref: '@supabase/postgrest-js.PostgrestClient.schema'
+ - id: postgrest-js-postgrestfilterbuilder-constructor
+ title: new PostgrestFilterBuilder()
+ $ref: '@supabase/postgrest-js.PostgrestFilterBuilder.constructor'
+ examples:
+ - id: postgrest-js-postgrestfilterbuilder-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ import PostgrestQueryBuilder from '@supabase/postgrest-js'
+
+ const builder = new PostgrestQueryBuilder(
+ new URL('https://xyzcompany.supabase.co/rest/v1/users'),
+ { headers: new Headers({ apikey: 'public-anon-key' }) }
+ )
+ ```
+ - id: postgrest-js-postgrestfilterbuilder-ilikeallof
+ title: PostgrestFilterBuilder.ilikeAllOf()
+ $ref: '@supabase/postgrest-js.PostgrestFilterBuilder.ilikeAllOf'
+ - id: postgrest-js-postgrestfilterbuilder-ilikeanyof
+ title: PostgrestFilterBuilder.ilikeAnyOf()
+ $ref: '@supabase/postgrest-js.PostgrestFilterBuilder.ilikeAnyOf'
+ - id: postgrest-js-postgrestfilterbuilder-likeallof
+ title: PostgrestFilterBuilder.likeAllOf()
+ $ref: '@supabase/postgrest-js.PostgrestFilterBuilder.likeAllOf'
+ - id: postgrest-js-postgrestfilterbuilder-likeanyof
+ title: PostgrestFilterBuilder.likeAnyOf()
+ $ref: '@supabase/postgrest-js.PostgrestFilterBuilder.likeAnyOf'
+ - id: postgrest-js-postgrestquerybuilder-constructor
+ title: new PostgrestQueryBuilder()
+ $ref: '@supabase/postgrest-js.PostgrestQueryBuilder.constructor'
+ examples:
+ - id: postgrest-js-postgrestquerybuilder-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ import PostgrestQueryBuilder from '@supabase/postgrest-js'
+
+ const query = new PostgrestQueryBuilder(
+ new URL('https://xyzcompany.supabase.co/rest/v1/users'),
+ { headers: { apikey: 'public-anon-key' } }
+ )
+ ```
+ - id: postgrest-js-postgresttransformbuilder-constructor
+ title: new PostgrestTransformBuilder()
+ $ref: '@supabase/postgrest-js.PostgrestTransformBuilder.constructor'
+ examples:
+ - id: postgrest-js-postgresttransformbuilder-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ import PostgrestQueryBuilder from '@supabase/postgrest-js'
+
+ const builder = new PostgrestQueryBuilder(
+ new URL('https://xyzcompany.supabase.co/rest/v1/users'),
+ { headers: new Headers({ apikey: 'public-anon-key' }) }
+ )
+ ```
+ - id: postgrest-js-postgresttransformbuilder-geojson
+ title: PostgrestTransformBuilder.geojson()
+ $ref: '@supabase/postgrest-js.PostgrestTransformBuilder.geojson'
+ - id: postgrest-js-postgresttransformbuilder-maxaffected
+ title: PostgrestTransformBuilder.maxAffected()
+ $ref: '@supabase/postgrest-js.PostgrestTransformBuilder.maxAffected'
+ - id: postgrest-js-postgresttransformbuilder-rollback
+ title: PostgrestTransformBuilder.rollback()
+ $ref: '@supabase/postgrest-js.PostgrestTransformBuilder.rollback'
+ - id: realtime-js-realtimechannel-httpsend
+ title: RealtimeChannel.httpSend()
+ $ref: '@supabase/realtime-js.RealtimeChannel.httpSend'
+
+ - id: realtime-js-realtimechannel-subscribe
+ title: RealtimeChannel.subscribe()
+ $ref: '@supabase/realtime-js.RealtimeChannel.subscribe'
+ - id: realtime-js-realtimechannel-teardown
+ title: RealtimeChannel.teardown()
+ $ref: '@supabase/realtime-js.RealtimeChannel.teardown'
+ - id: realtime-js-realtimechannel-unsubscribe
+ title: RealtimeChannel.unsubscribe()
+ $ref: '@supabase/realtime-js.RealtimeChannel.unsubscribe'
+ - id: realtime-js-realtimeclient-constructor
+ title: new RealtimeClient()
+ $ref: '@supabase/realtime-js.RealtimeClient.constructor'
+ examples:
+ - id: realtime-js-realtimeclient-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ import RealtimeClient from '@supabase/realtime-js'
+
+ const client = new RealtimeClient('https://xyzcompany.supabase.co/realtime/v1', {
+ params: { apikey: 'public-anon-key' },
+ })
+ client.connect()
+ ```
+ - id: realtime-js-realtimeclient-connect
+ title: RealtimeClient.connect()
+ $ref: '@supabase/realtime-js.RealtimeClient.connect'
+ - id: realtime-js-realtimeclient-connectionstate
+ title: RealtimeClient.connectionState()
+ $ref: '@supabase/realtime-js.RealtimeClient.connectionState'
+ - id: realtime-js-realtimeclient-disconnect
+ title: RealtimeClient.disconnect()
+ $ref: '@supabase/realtime-js.RealtimeClient.disconnect'
+ - id: realtime-js-realtimeclient-endpointurl
+ title: RealtimeClient.endpointURL()
+ $ref: '@supabase/realtime-js.RealtimeClient.endpointURL'
+ - id: realtime-js-realtimeclient-flushsendbuffer
+ title: RealtimeClient.flushSendBuffer()
+ $ref: '@supabase/realtime-js.RealtimeClient.flushSendBuffer'
+ - id: realtime-js-realtimeclient-getchannels
+ title: RealtimeClient.getChannels()
+ $ref: '@supabase/realtime-js.RealtimeClient.getChannels'
+ - id: realtime-js-realtimeclient-isconnected
+ title: RealtimeClient.isConnected()
+ $ref: '@supabase/realtime-js.RealtimeClient.isConnected'
+ - id: realtime-js-realtimeclient-isconnecting
+ title: RealtimeClient.isConnecting()
+ $ref: '@supabase/realtime-js.RealtimeClient.isConnecting'
+ - id: realtime-js-realtimeclient-isdisconnecting
+ title: RealtimeClient.isDisconnecting()
+ $ref: '@supabase/realtime-js.RealtimeClient.isDisconnecting'
+ - id: realtime-js-realtimeclient-log
+ title: RealtimeClient.log()
+ $ref: '@supabase/realtime-js.RealtimeClient.log'
+ - id: realtime-js-realtimeclient-push
+ title: RealtimeClient.push()
+ $ref: '@supabase/realtime-js.RealtimeClient.push'
+ - id: realtime-js-realtimeclient-removeallchannels
+ title: RealtimeClient.removeAllChannels()
+ $ref: '@supabase/realtime-js.RealtimeClient.removeAllChannels'
+ - id: realtime-js-realtimeclient-removechannel
+ title: RealtimeClient.removeChannel()
+ $ref: '@supabase/realtime-js.RealtimeClient.removeChannel'
+ - id: realtime-js-realtimeclient-sendheartbeat
+ title: RealtimeClient.sendHeartbeat()
+ $ref: '@supabase/realtime-js.RealtimeClient.sendHeartbeat'
+ - id: realtime-js-realtimeclient-setauth
+ title: RealtimeClient.setAuth()
+ $ref: '@supabase/realtime-js.RealtimeClient.setAuth'
+ - id: realtime-js-websocketfactory-createwebsocket
+ title: WebSocketFactory.createWebSocket()
+ $ref: '@supabase/realtime-js.WebSocketFactory.createWebSocket'
+ examples:
+ - id: realtime-js-websocketfactory-createwebsocket-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ const socket = WebSocketFactory.createWebSocket('wss://realtime.supabase.co/socket')
+ ```
+ - id: realtime-js-websocketfactory-getwebsocketconstructor
+ title: WebSocketFactory.getWebSocketConstructor()
+ $ref: '@supabase/realtime-js.WebSocketFactory.getWebSocketConstructor'
+ examples:
+ - id: realtime-js-websocketfactory-getwebsocketconstructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ const WS = WebSocketFactory.getWebSocketConstructor()
+ const socket = new WS('wss://realtime.supabase.co/socket')
+ ```
+ - id: realtime-js-websocketfactory-iswebsocketsupported
+ title: WebSocketFactory.isWebSocketSupported()
+ $ref: '@supabase/realtime-js.WebSocketFactory.isWebSocketSupported'
+ examples:
+ - id: realtime-js-websocketfactory-iswebsocketsupported-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ if (!WebSocketFactory.isWebSocketSupported()) {
+ console.warn('Falling back to long polling')
}
```
- - id: search-files-in-a-bucket
- name: Search files in a bucket
- code: |
- ```js
- const { data, error } = await supabase
- .storage
- .from('avatars')
- .list('folder', {
- limit: 100,
- offset: 0,
- sortBy: { column: 'name', order: 'asc' },
- search: 'jon'
- })
+ - id: functions-js-functionsclient-constructor
+ title: new FunctionsClient()
+ $ref: '@supabase/functions-js.FunctionsClient.constructor'
+ examples:
+ - id: functions-js-functionsclient-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ import { FunctionsClient, FunctionRegion } from '@supabase/functions-js'
+
+ const functions = new FunctionsClient('https://xyzcompany.supabase.co/functions/v1', {
+ headers: { apikey: 'public-anon-key' },
+ region: FunctionRegion.UsEast1,
+ })
+ ```
+ - id: functions-js-functionsclient-setauth
+ title: FunctionsClient.setAuth()
+ $ref: '@supabase/functions-js.FunctionsClient.setAuth'
+ examples:
+ - id: functions-js-functionsclient-setauth-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ functions.setAuth(session.access_token)
+ ```
+
+ - id: storageclient-constructor
+ title: new StorageClient()
+ $ref: '@supabase/storage-js.StorageClient.constructor'
+
+ - id: storageclient-from
+ title: StorageClient.from()
+ $ref: '@supabase/storage-js.StorageClient.from'
+ - id: storagevectorsclient-from
+ title: StorageVectorsClient.from()
+ $ref: '@supabase/storage-js.StorageVectorsClient.from'
+
+ - id: vector-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with Vector Buckets.
+ - id: vectorbucketapi-constructor
+ title: new VectorBucketApi()
+ $ref: '@supabase/storage-js.VectorBucketApi.constructor'
+
+ - id: vectorbucketapi-createbucket
+ title: VectorBucketApi.createBucket()
+ $ref: '@supabase/storage-js.VectorBucketApi.createBucket'
+
+ - id: vectorbucketapi-deletebucket
+ title: VectorBucketApi.deleteBucket()
+ $ref: '@supabase/storage-js.VectorBucketApi.deleteBucket'
+
+ - id: vectorbucketapi-getbucket
+ title: VectorBucketApi.getBucket()
+ $ref: '@supabase/storage-js.VectorBucketApi.getBucket'
+
+ - id: vectorbucketapi-listbuckets
+ title: VectorBucketApi.listBuckets()
+ $ref: '@supabase/storage-js.VectorBucketApi.listBuckets'
+
+ - id: vectorbucketapi-throwonerror
+ title: VectorBucketApi.throwOnError()
+ $ref: '@supabase/storage-js.VectorBucketApi.throwOnError'
+
+ - id: vectorbucketscope-createindex
+ title: VectorBucketScope.createIndex()
+ $ref: '@supabase/storage-js.VectorBucketScope.createIndex'
+
+ - id: vectorbucketscope-deleteindex
+ title: VectorBucketScope.deleteIndex()
+ $ref: '@supabase/storage-js.VectorBucketScope.deleteIndex'
+
+ - id: vectorbucketscope-getindex
+ title: VectorBucketScope.getIndex()
+ $ref: '@supabase/storage-js.VectorBucketScope.getIndex'
+
+ - id: vectorbucketscope-listindexes
+ title: VectorBucketScope.listIndexes()
+ $ref: '@supabase/storage-js.VectorBucketScope.listIndexes'
+
+ - id: vector-data
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with Vector Data.
+ - id: vectordataapi-deletevectors
+ title: VectorDataApi.deleteVectors()
+ $ref: '@supabase/storage-js.VectorDataApi.deleteVectors'
+
+ - id: vectordataapi-getvectors
+ title: VectorDataApi.getVectors()
+ $ref: '@supabase/storage-js.VectorDataApi.getVectors'
+
+ - id: vectordataapi-listvectors
+ title: VectorDataApi.listVectors()
+ $ref: '@supabase/storage-js.VectorDataApi.listVectors'
+
+ - id: vectordataapi-putvectors
+ title: VectorDataApi.putVectors()
+ $ref: '@supabase/storage-js.VectorDataApi.putVectors'
+
+ - id: vectordataapi-queryvectors
+ title: VectorDataApi.queryVectors()
+ $ref: '@supabase/storage-js.VectorDataApi.queryVectors'
+
+ - id: vectordataapi-throwonerror
+ title: VectorDataApi.throwOnError()
+ $ref: '@supabase/storage-js.VectorDataApi.throwOnError'
+
+ - id: vector-index
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with Vector Index.
+ - id: vectorindexapi-createindex
+ title: VectorIndexApi.createIndex()
+ $ref: '@supabase/storage-js.VectorIndexApi.createIndex'
+
+ - id: vectorindexapi-deleteindex
+ title: VectorIndexApi.deleteIndex()
+ $ref: '@supabase/storage-js.VectorIndexApi.deleteIndex'
+
+ - id: vectorindexapi-getindex
+ title: VectorIndexApi.getIndex()
+ $ref: '@supabase/storage-js.VectorIndexApi.getIndex'
+
+ - id: vectorindexapi-listindexes
+ title: VectorIndexApi.listIndexes()
+ $ref: '@supabase/storage-js.VectorIndexApi.listIndexes'
+
+ - id: vectorindexapi-throwonerror
+ title: VectorIndexApi.throwOnError()
+ $ref: '@supabase/storage-js.VectorIndexApi.throwOnError'
+
+ - id: vectorindexscope-deletevectors
+ title: VectorIndexScope.deleteVectors()
+ $ref: '@supabase/storage-js.VectorIndexScope.deleteVectors'
+
+ - id: vectorindexscope-getvectors
+ title: VectorIndexScope.getVectors()
+ $ref: '@supabase/storage-js.VectorIndexScope.getVectors'
+
+ - id: vectorindexscope-listvectors
+ title: VectorIndexScope.listVectors()
+ $ref: '@supabase/storage-js.VectorIndexScope.listVectors'
+
+ - id: vectorindexscope-putvectors
+ title: VectorIndexScope.putVectors()
+ $ref: '@supabase/storage-js.VectorIndexScope.putVectors'
+
+ - id: vectorindexscope-queryvectors
+ title: VectorIndexScope.queryVectors()
+ $ref: '@supabase/storage-js.VectorIndexScope.queryVectors'
+
+ - id: realtime-js-realtimechannel-constructor
+ title: new RealtimeChannel()
+ $ref: '@supabase/realtime-js.RealtimeChannel.constructor'
+ examples:
+ - id: realtime-js-realtimechannel-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ import RealtimeClient from '@supabase/realtime-js'
+
+ const client = new RealtimeClient('https://xyzcompany.supabase.co/realtime/v1', {
+ params: { apikey: 'public-anon-key' },
+ })
+ const channel = new RealtimeChannel('realtime:public:messages', { config: {} }, client)
+ ```
+ - id: realtime-js-realtimechannel-presencestate
+ title: RealtimeChannel.presenceState()
+ $ref: '@supabase/realtime-js.RealtimeChannel.presenceState'
+ - id: realtime-js-realtimechannel-track
+ title: RealtimeChannel.track()
+ $ref: '@supabase/realtime-js.RealtimeChannel.track'
+ - id: realtime-js-realtimechannel-untrack
+ title: RealtimeChannel.untrack()
+ $ref: '@supabase/realtime-js.RealtimeChannel.untrack'
+ - id: realtime-js-realtimechannel-updatejoinpayload
+ title: RealtimeChannel.updateJoinPayload()
+ $ref: '@supabase/realtime-js.RealtimeChannel.updateJoinPayload'
+ - id: realtime-js-realtimeclient-channel
+ title: RealtimeClient.channel()
+ $ref: '@supabase/realtime-js.RealtimeClient.channel'
+ - id: realtime-js-realtimeclient-onheartbeat
+ title: RealtimeClient.onHeartbeat()
+ $ref: '@supabase/realtime-js.RealtimeClient.onHeartbeat'
+ - id: realtime-js-realtimepresence-constructor
+ title: new RealtimePresence()
+ $ref: '@supabase/realtime-js.RealtimePresence.constructor'
+ examples:
+ - id: realtime-js-realtimepresence-constructor-example-1
+ name: Example 1
+ code: |-
+ ```ts
+ const presence = new RealtimePresence(channel)
+
+ channel.on('presence', ({ event, key }) => {
+ console.log(`Presence ${event} on ${key}`)
+ })
```
+ - id: realtime-js-websocketlike-addeventlistener
+ title: WebSocketLike.addEventListener()
+ $ref: '@supabase/realtime-js.WebSocketLike.addEventListener'
+ - id: realtime-js-websocketlike-close
+ title: WebSocketLike.close()
+ $ref: '@supabase/realtime-js.WebSocketLike.close'
+ - id: realtime-js-websocketlike-removeeventlistener
+ title: WebSocketLike.removeEventListener()
+ $ref: '@supabase/realtime-js.WebSocketLike.removeEventListener'
+ - id: realtime-js-websocketlike-send
+ title: WebSocketLike.send()
+ $ref: '@supabase/realtime-js.WebSocketLike.send'
+ - id: storagevectorsclient-constructor
+ title: new StorageVectorsClient()
+ $ref: '@supabase/storage-js.StorageVectorsClient.constructor'
+
+ - id: vectorbucketscope-constructor
+ title: new VectorBucketScope()
+ $ref: '@supabase/storage-js.VectorBucketScope.constructor'
+
+ - id: vectordataapi-constructor
+ title: new VectorDataApi()
+ $ref: '@supabase/storage-js.VectorDataApi.constructor'
+
+ - id: vectorindexapi-constructor
+ title: new VectorIndexApi()
+ $ref: '@supabase/storage-js.VectorIndexApi.constructor'
+
+ - id: vectorindexscope-constructor
+ title: new VectorIndexScope()
+ $ref: '@supabase/storage-js.VectorIndexScope.constructor'
+
+ - id: realtime-js-websocketlikeconstructor-constructor
+ title: new WebSocketLikeConstructor()
+ $ref: '@supabase/realtime-js.WebSocketLikeConstructor.constructor'
diff --git a/apps/docs/spec/supabase_kt_v1.yml b/apps/docs/spec/supabase_kt_v1.yml
index 02e8f5d02ec6c..47fbae318fe19 100644
--- a/apps/docs/spec/supabase_kt_v1.yml
+++ b/apps/docs/spec/supabase_kt_v1.yml
@@ -3364,6 +3364,18 @@ functions:
```kotlin
val channels = supabase.realtime.subscriptions.entries
```
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
- id: list-buckets
title: listBuckets()
$ref: '@supabase/storage-js.packages/StorageBucketApi.default.listBuckets'
diff --git a/apps/docs/spec/supabase_kt_v2.yml b/apps/docs/spec/supabase_kt_v2.yml
index cc66c3da5e4c4..b5f478aebab62 100644
--- a/apps/docs/spec/supabase_kt_v2.yml
+++ b/apps/docs/spec/supabase_kt_v2.yml
@@ -4823,6 +4823,18 @@ functions:
```kotlin
val channels = supabase.realtime.subscriptions.entries
```
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
- id: list-buckets
title: listBuckets()
$ref: '@supabase/storage-js.packages/StorageBucketApi.default.listBuckets'
diff --git a/apps/docs/spec/supabase_kt_v3.yml b/apps/docs/spec/supabase_kt_v3.yml
index 047700eea790d..af00ab64b4349 100644
--- a/apps/docs/spec/supabase_kt_v3.yml
+++ b/apps/docs/spec/supabase_kt_v3.yml
@@ -4940,6 +4940,18 @@ functions:
```kotlin
val channels = supabase.realtime.subscriptions.entries
```
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
- id: list-buckets
title: listBuckets()
$ref: '@supabase/storage-js.packages/StorageBucketApi.default.listBuckets'
diff --git a/apps/docs/spec/supabase_py_v2.yml b/apps/docs/spec/supabase_py_v2.yml
index 2798e55e69817..c64487b7b8ead 100644
--- a/apps/docs/spec/supabase_py_v2.yml
+++ b/apps/docs/spec/supabase_py_v2.yml
@@ -7146,6 +7146,19 @@ functions:
await supabase.remove_all_channels()
```
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
+
- id: list-buckets
title: 'list_buckets()'
description: |
diff --git a/apps/docs/spec/supabase_swift_v1.yml b/apps/docs/spec/supabase_swift_v1.yml
index 56e98c2688afb..00a9948a285cf 100644
--- a/apps/docs/spec/supabase_swift_v1.yml
+++ b/apps/docs/spec/supabase_swift_v1.yml
@@ -3060,6 +3060,19 @@ functions:
supabase.realtime.removeAllChannels()
```
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
+
- id: list-buckets
title: listBuckets()
notes: |
diff --git a/apps/docs/spec/supabase_swift_v2.yml b/apps/docs/spec/supabase_swift_v2.yml
index a3fd138b5eb2f..e903fb6834732 100644
--- a/apps/docs/spec/supabase_swift_v2.yml
+++ b/apps/docs/spec/supabase_swift_v2.yml
@@ -4848,6 +4848,19 @@ functions:
let channels = supabase.channels
```
+ - id: file-buckets
+ title: 'Overview'
+ notes: |
+ This section contains methods for working with File Buckets.
+ # - id: analytics-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Analytics Buckets.
+ # - id: vector-buckets
+ # title: 'Overview'
+ # notes: |
+ # This section contains methods for working with Vector Buckets.
+
- id: list-buckets
title: listBuckets()
notes: |
diff --git a/apps/docs/spec/transforms/api_v1_openapi_deparsed.json b/apps/docs/spec/transforms/api_v1_openapi_deparsed.json
index ff33213e8e0bf..2842cf87d5198 100644
--- a/apps/docs/spec/transforms/api_v1_openapi_deparsed.json
+++ b/apps/docs/spec/transforms/api_v1_openapi_deparsed.json
@@ -62,7 +62,7 @@
},
{
"name": "Storage",
- "description": "Storage related endpoints"
+ "description": "Visit [https://supabase.github.io/storage/](https://supabase.github.io/storage/) for complete documentation."
}
],
"paths": {
@@ -8706,7 +8706,9 @@
"type": "string"
},
"statement_timeout": {
- "type": "string"
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"track_commit_timestamp": {
"type": "boolean"
@@ -8715,15 +8717,17 @@
"type": "string"
},
"wal_sender_timeout": {
- "type": "string"
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"work_mem": {
"type": "string"
},
"checkpoint_timeout": {
- "type": "integer",
- "minimum": 30,
- "maximum": 86400
+ "type": "string",
+ "description": "Default unit: s",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"hot_standby_feedback": {
"type": "boolean"
@@ -8852,7 +8856,9 @@
"type": "string"
},
"statement_timeout": {
- "type": "string"
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"track_commit_timestamp": {
"type": "boolean"
@@ -8861,15 +8867,17 @@
"type": "string"
},
"wal_sender_timeout": {
- "type": "string"
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"work_mem": {
"type": "string"
},
"checkpoint_timeout": {
- "type": "integer",
- "minimum": 30,
- "maximum": 86400
+ "type": "string",
+ "description": "Default unit: s",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"hot_standby_feedback": {
"type": "boolean"
@@ -8959,7 +8967,9 @@
"type": "string"
},
"statement_timeout": {
- "type": "string"
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"track_commit_timestamp": {
"type": "boolean"
@@ -8968,15 +8978,17 @@
"type": "string"
},
"wal_sender_timeout": {
- "type": "string"
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"work_mem": {
"type": "string"
},
"checkpoint_timeout": {
- "type": "integer",
- "minimum": 30,
- "maximum": 86400
+ "type": "string",
+ "description": "Default unit: s",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"hot_standby_feedback": {
"type": "boolean"
@@ -22130,7 +22142,9 @@
"type": "string"
},
"statement_timeout": {
- "type": "string"
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"track_commit_timestamp": {
"type": "boolean"
@@ -22139,15 +22153,17 @@
"type": "string"
},
"wal_sender_timeout": {
- "type": "string"
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"work_mem": {
"type": "string"
},
"checkpoint_timeout": {
- "type": "integer",
- "minimum": 30,
- "maximum": 86400
+ "type": "string",
+ "description": "Default unit: s",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"hot_standby_feedback": {
"type": "boolean"
@@ -22225,7 +22241,9 @@
"type": "string"
},
"statement_timeout": {
- "type": "string"
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"track_commit_timestamp": {
"type": "boolean"
@@ -22234,15 +22252,17 @@
"type": "string"
},
"wal_sender_timeout": {
- "type": "string"
+ "type": "string",
+ "description": "Default unit: ms",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"work_mem": {
"type": "string"
},
"checkpoint_timeout": {
- "type": "integer",
- "minimum": 30,
- "maximum": 86400
+ "type": "string",
+ "description": "Default unit: s",
+ "pattern": "^(-?[0-9]+(?:\\.[0-9]+)?)(us|ms|s|min|h|d)?$"
},
"hot_standby_feedback": {
"type": "boolean"
diff --git a/apps/studio/components/interfaces/Connect/Connect.constants.ts b/apps/studio/components/interfaces/Connect/Connect.constants.ts
index d3ca60c40ebc0..30d9246b73904 100644
--- a/apps/studio/components/interfaces/Connect/Connect.constants.ts
+++ b/apps/studio/components/interfaces/Connect/Connect.constants.ts
@@ -227,7 +227,7 @@ export const FRAMEWORKS: ConnectionType[] = [
},
{
key: 'refine',
- label: 'refine',
+ label: 'Refine',
icon: 'refine',
guideLink: `${DOCS_URL}/guides/getting-started/quickstarts/refine`,
children: [
diff --git a/apps/studio/components/interfaces/Connect/ConnectionIcon.tsx b/apps/studio/components/interfaces/Connect/ConnectionIcon.tsx
index 83d46e23472f4..50f1e2ef68daf 100644
--- a/apps/studio/components/interfaces/Connect/ConnectionIcon.tsx
+++ b/apps/studio/components/interfaces/Connect/ConnectionIcon.tsx
@@ -19,7 +19,7 @@ export const ConnectionIcon = ({ icon, iconFolder, supportsDarkMode }: Connectio
const shouldUseDarkMode =
supportsDarkMode ||
- ['expo', 'nextjs', 'prisma', 'drizzle', 'astro', 'remix'].includes(icon.toLowerCase())
+ ['expo', 'nextjs', 'prisma', 'drizzle', 'astro', 'remix', 'refine'].includes(icon.toLowerCase())
const iconImgSrc = icon.startsWith('http')
? icon
diff --git a/apps/studio/components/interfaces/Connect/content/refine/supabasejs/content.tsx b/apps/studio/components/interfaces/Connect/content/refine/supabasejs/content.tsx
index fe3f9cd88d3d7..1c2cbb08447a9 100644
--- a/apps/studio/components/interfaces/Connect/content/refine/supabasejs/content.tsx
+++ b/apps/studio/components/interfaces/Connect/content/refine/supabasejs/content.tsx
@@ -51,13 +51,13 @@ export const supabaseClient = createClient(SUPABASE_URL, SUPABASE_KEY, {
{`
-import { Refine, WelcomePage } from "@refinedev/core";
+import { Refine } from "@refinedev/core";
import { RefineKbar, RefineKbarProvider } from "@refinedev/kbar";
-import routerBindings, {
+import routerProvider, {
DocumentTitleHandler,
NavigateToResource,
UnsavedChangesNotifier,
-} from "@refinedev/react-router-v6";
+} from "@refinedev/react-router";
import { dataProvider, liveProvider } from "@refinedev/supabase";
import { BrowserRouter, Route, Routes } from "react-router-dom";
@@ -74,7 +74,7 @@ function App() {
dataProvider={dataProvider(supabaseClient)}
liveProvider={liveProvider(supabaseClient)}
authProvider={authProvider}
- routerProvider={routerBindings}
+ routerProvider={routerProvider}
options={{
syncWithLocation: true,
warnWhenUnsavedChanges: true,
diff --git a/apps/studio/components/interfaces/Database/ETL/ComingSoon.tsx b/apps/studio/components/interfaces/Database/ETL/ComingSoon.tsx
index 83c93655395f8..0a8bd5c452a51 100644
--- a/apps/studio/components/interfaces/Database/ETL/ComingSoon.tsx
+++ b/apps/studio/components/interfaces/Database/ETL/ComingSoon.tsx
@@ -199,12 +199,13 @@ const CTANode = ({ projectRef }: { projectRef: string }) => {
-
Replicate your data in real time
+ Replicate data to destinations in real-time
Early Access
- Stream database changes to multiple destinations - no manual exports, no lag. Limited
- rollout for external destinations has begun, read replicas available now.
+ Replicate database changes to multiple destinations with ETL replication - no manual
+ exports, no lag. Limited rollout for external destinations has begun, read replicas
+ available now.
}>
diff --git a/apps/studio/components/interfaces/Database/ETL/DestinationPanel/NoDestinationsAvailable.tsx b/apps/studio/components/interfaces/Database/ETL/DestinationPanel/NoDestinationsAvailable.tsx
index a99fa42a52d72..2a4c39ebc405b 100644
--- a/apps/studio/components/interfaces/Database/ETL/DestinationPanel/NoDestinationsAvailable.tsx
+++ b/apps/studio/components/interfaces/Database/ETL/DestinationPanel/NoDestinationsAvailable.tsx
@@ -8,8 +8,8 @@ export const NoDestinationsAvailable = () => {
No destinations available
- Replication destinations are not currently enabled for this project. Contact support to
- enable real-time data replication to external platforms.
+ ETL replication destinations are not currently enabled for this project. Contact support to
+ enable real-time replication to external platforms.
)
diff --git a/apps/studio/components/interfaces/Database/ETL/DestinationRow.tsx b/apps/studio/components/interfaces/Database/ETL/DestinationRow.tsx
index dda49fe9ef9f5..4fa6d64f7fddd 100644
--- a/apps/studio/components/interfaces/Database/ETL/DestinationRow.tsx
+++ b/apps/studio/components/interfaces/Database/ETL/DestinationRow.tsx
@@ -185,7 +185,8 @@ export const DestinationRow = ({
- {errorCount} table{errorCount === 1 ? '' : 's'} have replication errors
+ {errorCount} table{errorCount === 1 ? '' : 's'} encountered replication
+ errors
)}
diff --git a/apps/studio/components/interfaces/Database/ETL/Destinations.tsx b/apps/studio/components/interfaces/Database/ETL/Destinations.tsx
index dca4d6fdd74fe..4a392ad5326bc 100644
--- a/apps/studio/components/interfaces/Database/ETL/Destinations.tsx
+++ b/apps/studio/components/interfaces/Database/ETL/Destinations.tsx
@@ -6,11 +6,13 @@ import { useParams } from 'common'
import Table from 'components/to-be-cleaned/Table'
import { AlertError } from 'components/ui/AlertError'
import { DocsButton } from 'components/ui/DocsButton'
+import { UpgradePlanButton } from 'components/ui/UpgradePlanButton'
import { useReplicationDestinationsQuery } from 'data/etl/destinations-query'
import { replicationKeys } from 'data/etl/keys'
import { fetchReplicationPipelineVersion } from 'data/etl/pipeline-version-query'
import { useReplicationPipelinesQuery } from 'data/etl/pipelines-query'
import { useReplicationSourcesQuery } from 'data/etl/sources-query'
+import { useSelectedOrganizationQuery } from 'hooks/misc/useSelectedOrganization'
import { DOCS_URL } from 'lib/constants'
import { Button, cn, Input_Shadcn_ } from 'ui'
import { GenericSkeletonLoader } from 'ui-patterns'
@@ -20,6 +22,9 @@ import { EnableReplicationModal } from './EnableReplicationModal'
import { PIPELINE_ERROR_MESSAGES } from './Pipeline.utils'
export const Destinations = () => {
+ const { data: organization } = useSelectedOrganizationQuery()
+ const isPaidPlan = organization?.plan.id !== 'free'
+
const [showNewDestinationPanel, setShowNewDestinationPanel] = useState(false)
const [filterString, setFilterString] = useState('')
const { ref: projectRef } = useParams()
@@ -129,14 +134,18 @@ export const Destinations = () => {
) : replicationNotEnabled ? (
-
Stream data to external destinations in real-time
+
Replicate data to external destinations in real-time
- Enable replication to start sending your database changes to data warehouses and
- analytics platforms
+ {isPaidPlan ? 'Enable ETL replication' : 'Upgrade to the Pro plan'} to start
+ replicating your database changes to data warehouses and analytics platforms
-
+ {isPaidPlan ? (
+
+ ) : (
+
+ )}
{/* [Joshen] Placeholder for when we have documentation */}
@@ -191,10 +200,10 @@ export const Destinations = () => {
)}
>
Create your first destination
-
+
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.
+ sent. Connect to various data warehouses and analytics platforms to enable real-time
+ data pipelines.
}
diff --git a/apps/studio/components/interfaces/Database/ETL/EnableReplicationModal.tsx b/apps/studio/components/interfaces/Database/ETL/EnableReplicationModal.tsx
index a9c716873df77..b16a92f9bcf8a 100644
--- a/apps/studio/components/interfaces/Database/ETL/EnableReplicationModal.tsx
+++ b/apps/studio/components/interfaces/Database/ETL/EnableReplicationModal.tsx
@@ -23,11 +23,11 @@ export const EnableReplicationModal = () => {
const { mutate: createTenantSource, isLoading: creatingTenantSource } =
useCreateTenantSourceMutation({
onSuccess: () => {
- toast.success('Replication has been successfully enabled!')
+ toast.success('ETL replication has been successfully enabled!')
setOpen(false)
},
onError: (error) => {
- toast.error(`Failed to enable replication: ${error.message}`)
+ toast.error(`Failed to enable ETL replication: ${error.message}`)
},
})
@@ -40,26 +40,26 @@ export const EnableReplicationModal = () => {
- Enable replication
+ Enable ETL replication
- Confirm to enable Replication
+ Enable ETL Replication
This feature is in active development and may change as we gather feedback.
Availability and behavior can evolve while in Alpha.
- Pricing has not been finalized yet. You can enable replication now; we’ll announce
+ Pricing has not been finalized yet. You can enable ETL replication now; we'll announce
pricing later and notify you before any charges apply.
@@ -69,7 +69,7 @@ export const EnableReplicationModal = () => {
Cancel
- Enable replication
+ Enable ETL replication
diff --git a/apps/studio/components/interfaces/Database/ETL/NewPublicationPanel.tsx b/apps/studio/components/interfaces/Database/ETL/NewPublicationPanel.tsx
index 72d8d7e71947b..5bac190cfbce9 100644
--- a/apps/studio/components/interfaces/Database/ETL/NewPublicationPanel.tsx
+++ b/apps/studio/components/interfaces/Database/ETL/NewPublicationPanel.tsx
@@ -87,7 +87,7 @@ export const NewPublicationPanel = ({ visible, sourceId, onClose }: NewPublicati
New Publication
- Create a new publication to share table changes for replication
+ Create a new publication to replicate table changes to destinations
(
,
+ dot: ,
color: 'text-brand-600',
tooltip: stateMessages.message,
}
diff --git a/apps/studio/components/interfaces/Database/ETL/RetryOptionsDropdown.tsx b/apps/studio/components/interfaces/Database/ETL/RetryOptionsDropdown.tsx
index aba8f87b58843..16f331f8a95a6 100644
--- a/apps/studio/components/interfaces/Database/ETL/RetryOptionsDropdown.tsx
+++ b/apps/studio/components/interfaces/Database/ETL/RetryOptionsDropdown.tsx
@@ -24,7 +24,7 @@ const RETRY_OPTIONS = [
type: 'full' as RollbackType,
icon: ,
title: 'Reset from scratch',
- description: 'Completely restart the table replication',
+ description: 'Completely restart replicating this table',
},
] as const
diff --git a/apps/studio/components/interfaces/Storage/AlphaNotice.tsx b/apps/studio/components/interfaces/Storage/AlphaNotice.tsx
new file mode 100644
index 0000000000000..ee856218234e1
--- /dev/null
+++ b/apps/studio/components/interfaces/Storage/AlphaNotice.tsx
@@ -0,0 +1,56 @@
+import { ExternalLink } from 'lucide-react'
+import Link from 'next/link'
+
+import { BASE_PATH } from 'lib/constants'
+import { Badge, Button } from 'ui'
+import { Admonition } from 'ui-patterns'
+
+export const AlphaNotice = ({ type }: { type: 'analytics' | 'vector' }) => {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ New
+
+
Introducing {type} buckets
+
+
+ {type} buckets are now in private alpha. Expect
+ rapid changes, limited features, and possible breaking updates. Please share feedback as
+ we refine the experience and expand access.
+
+
+
} className="mt-2">
+
+ Share feedback
+
+
+
+
+ )
+}
diff --git a/apps/studio/components/interfaces/Storage/AnalyticsBuckets/index.tsx b/apps/studio/components/interfaces/Storage/AnalyticsBuckets/index.tsx
index 696cf307fa535..77e851fe447b6 100644
--- a/apps/studio/components/interfaces/Storage/AnalyticsBuckets/index.tsx
+++ b/apps/studio/components/interfaces/Storage/AnalyticsBuckets/index.tsx
@@ -1,5 +1,4 @@
-import { ChevronRight, ExternalLink, Search } from 'lucide-react'
-import Link from 'next/link'
+import { ChevronRight, Search } from 'lucide-react'
import { useRouter } from 'next/navigation'
import { useState } from 'react'
@@ -11,8 +10,6 @@ import { useAnalyticsBucketsQuery } from 'data/storage/analytics-buckets-query'
import { Bucket as BucketIcon } from 'icons'
import { BASE_PATH } from 'lib/constants'
import {
- Badge,
- Button,
Card,
Table,
TableBody,
@@ -24,8 +21,9 @@ import {
TooltipContent,
TooltipTrigger,
} from 'ui'
-import { Admonition, TimestampInfo } from 'ui-patterns'
+import { TimestampInfo } from 'ui-patterns'
import { Input } from 'ui-patterns/DataInputs/Input'
+import { AlphaNotice } from '../AlphaNotice'
import { EmptyBucketState } from '../EmptyBucketState'
import { CreateAnalyticsBucketModal } from './CreateAnalyticsBucketModal'
@@ -64,46 +62,7 @@ export const AnalyticsBuckets = () => {
return (
-
-
-
-
-
-
-
-
-
-
-
- New
-
-
Introducing analytics buckets
-
-
- Analytics buckets are now in private alpha. Expect rapid changes, limited features,
- and possible breaking updates. Please share feedback as we refine the experience and
- expand access.
-
-
-
} className="mt-2">
-
- Share feedback
-
-
-
-
+
{isLoadingBuckets && }
diff --git a/apps/studio/components/interfaces/Storage/BucketsComingSoon.tsx b/apps/studio/components/interfaces/Storage/BucketsComingSoon.tsx
index 1b890abb7a353..13d4992265c16 100644
--- a/apps/studio/components/interfaces/Storage/BucketsComingSoon.tsx
+++ b/apps/studio/components/interfaces/Storage/BucketsComingSoon.tsx
@@ -1,7 +1,8 @@
-import { ScaffoldSection } from 'components/layouts/Scaffold'
-import { Bucket } from 'icons'
import { ExternalLink } from 'lucide-react'
import Link from 'next/link'
+
+import { ScaffoldSection } from 'components/layouts/Scaffold'
+import { Bucket } from 'icons'
import { Button } from 'ui'
import { BUCKET_TYPES } from './Storage.constants'
diff --git a/apps/studio/components/interfaces/Storage/BucketsUpgradePlan.tsx b/apps/studio/components/interfaces/Storage/BucketsUpgradePlan.tsx
new file mode 100644
index 0000000000000..2dd500241f506
--- /dev/null
+++ b/apps/studio/components/interfaces/Storage/BucketsUpgradePlan.tsx
@@ -0,0 +1,32 @@
+import { ScaffoldSection } from 'components/layouts/Scaffold'
+import { UpgradePlanButton } from 'components/ui/UpgradePlanButton'
+import { Bucket } from 'icons'
+import { AlphaNotice } from './AlphaNotice'
+import { BUCKET_TYPES } from './Storage.constants'
+
+export const BucketsUpgradePlan = ({ type }: { type: 'analytics' | 'vector' }) => {
+ return (
+
+
+
+
+ )
+}
diff --git a/apps/studio/components/interfaces/Storage/VectorBuckets/index.tsx b/apps/studio/components/interfaces/Storage/VectorBuckets/index.tsx
index 1852cb84a4c36..429bf565fe511 100644
--- a/apps/studio/components/interfaces/Storage/VectorBuckets/index.tsx
+++ b/apps/studio/components/interfaces/Storage/VectorBuckets/index.tsx
@@ -1,5 +1,4 @@
-import { ChevronRight, ExternalLink, Search } from 'lucide-react'
-import Link from 'next/link'
+import { ChevronRight, Search } from 'lucide-react'
import { useRouter } from 'next/navigation'
import { useState, type KeyboardEvent, type MouseEvent } from 'react'
@@ -9,21 +8,10 @@ import AlertError from 'components/ui/AlertError'
import { GenericSkeletonLoader } from 'components/ui/ShimmeringLoader'
import { useVectorBucketsQuery } from 'data/storage/vector-buckets-query'
import { Bucket as BucketIcon } from 'icons'
-import { BASE_PATH } from 'lib/constants'
-import {
- Badge,
- Button,
- Card,
- Table,
- TableBody,
- TableCell,
- TableHead,
- TableHeader,
- TableRow,
-} from 'ui'
-import { Admonition } from 'ui-patterns'
+import { Card, Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from 'ui'
import { Input } from 'ui-patterns/DataInputs/Input'
import { TimestampInfo } from 'ui-patterns/TimestampInfo'
+import { AlphaNotice } from '../AlphaNotice'
import { EmptyBucketState } from '../EmptyBucketState'
import { CreateVectorBucketDialog } from './CreateVectorBucketDialog'
@@ -65,47 +53,7 @@ export const VectorsBuckets = () => {
return (
-
-
-
-
-
-
-
-
-
-
-
- New
-
-
Introducing vector buckets
-
-
- Vector buckets are now in private alpha. Expect rapid changes, limited features, and
- possible breaking updates. Please share feedback as we refine the experience and
- expand access.
-
-
-
} className="mt-2">
-
- Share feedback
-
-
-
-
+
{isLoadingBuckets && }
diff --git a/apps/studio/lib/api/self-hosted/mcp.ts b/apps/studio/lib/api/self-hosted/mcp.ts
index 5c6d6d3e37b94..2a270a4e47bcb 100644
--- a/apps/studio/lib/api/self-hosted/mcp.ts
+++ b/apps/studio/lib/api/self-hosted/mcp.ts
@@ -31,8 +31,9 @@ export function getDatabaseOperations({
}: GetDatabaseOperationsOptions): DatabaseOperations {
return {
async executeSql(_projectRef: string, options: ExecuteSqlOptions) {
- const { query, read_only: readOnly } = options
- const { data, error } = await executeQuery({ query, headers, readOnly })
+ const { query, parameters, read_only: readOnly } = options
+
+ const { data, error } = await executeQuery({ query, parameters, headers, readOnly })
if (error) {
throw error
diff --git a/apps/studio/lib/api/self-hosted/query.ts b/apps/studio/lib/api/self-hosted/query.ts
index 9834e52245a86..4bfd077f48c82 100644
--- a/apps/studio/lib/api/self-hosted/query.ts
+++ b/apps/studio/lib/api/self-hosted/query.ts
@@ -5,6 +5,7 @@ import { assertSelfHosted, encryptString, getConnectionString } from './util'
export type QueryOptions = {
query: string
+ parameters?: unknown[]
readOnly?: boolean
headers?: HeadersInit
}
@@ -16,6 +17,7 @@ export type QueryOptions = {
*/
export async function executeQuery({
query,
+ parameters,
readOnly = false,
headers,
}: QueryOptions): Promise> {
@@ -24,6 +26,11 @@ export async function executeQuery({
const connectionString = getConnectionString({ readOnly })
const connectionStringEncrypted = encryptString(connectionString)
+ const requestBody: { query: string; parameters?: unknown[] } = { query }
+ if (parameters !== undefined) {
+ requestBody.parameters = parameters
+ }
+
const response = await fetch(`${PG_META_URL}/query`, {
method: 'POST',
headers: constructHeaders({
@@ -31,7 +38,7 @@ export async function executeQuery({
'Content-Type': 'application/json',
'x-connection-encrypted': connectionStringEncrypted,
}),
- body: JSON.stringify({ query }),
+ body: JSON.stringify(requestBody),
})
try {
diff --git a/apps/studio/pages/project/[ref]/storage/analytics/index.tsx b/apps/studio/pages/project/[ref]/storage/analytics/index.tsx
index 732e8d02bca50..c9bcbbaa716eb 100644
--- a/apps/studio/pages/project/[ref]/storage/analytics/index.tsx
+++ b/apps/studio/pages/project/[ref]/storage/analytics/index.tsx
@@ -1,16 +1,27 @@
import { useParams } from 'common'
import { AnalyticsBuckets } from 'components/interfaces/Storage/AnalyticsBuckets'
import { BucketsComingSoon } from 'components/interfaces/Storage/BucketsComingSoon'
+import { BucketsUpgradePlan } from 'components/interfaces/Storage/BucketsUpgradePlan'
import DefaultLayout from 'components/layouts/DefaultLayout'
import { StorageBucketsLayout } from 'components/layouts/StorageLayout/StorageBucketsLayout'
import StorageLayout from 'components/layouts/StorageLayout/StorageLayout'
import { useIsAnalyticsBucketsEnabled } from 'data/config/project-storage-config-query'
+import { useSelectedOrganizationQuery } from 'hooks/misc/useSelectedOrganization'
import type { NextPageWithLayout } from 'types'
const StorageAnalyticsPage: NextPageWithLayout = () => {
const { ref: projectRef } = useParams()
+ const { data: organization } = useSelectedOrganizationQuery()
+ const isPaidPlan = organization?.plan.id !== 'free'
const isAnalyticsBucketsEnabled = useIsAnalyticsBucketsEnabled({ projectRef })
- return isAnalyticsBucketsEnabled ? :
+
+ if (!isAnalyticsBucketsEnabled) {
+ return
+ } else if (!isPaidPlan) {
+ return
+ } else {
+ return
+ }
}
StorageAnalyticsPage.getLayout = (page) => (
diff --git a/apps/studio/pages/project/[ref]/storage/vectors/index.tsx b/apps/studio/pages/project/[ref]/storage/vectors/index.tsx
index 0177e3311f7cb..06becdeb08808 100644
--- a/apps/studio/pages/project/[ref]/storage/vectors/index.tsx
+++ b/apps/studio/pages/project/[ref]/storage/vectors/index.tsx
@@ -1,16 +1,27 @@
import { useParams } from 'common'
import { BucketsComingSoon } from 'components/interfaces/Storage/BucketsComingSoon'
+import { BucketsUpgradePlan } from 'components/interfaces/Storage/BucketsUpgradePlan'
import { VectorsBuckets } from 'components/interfaces/Storage/VectorBuckets'
import DefaultLayout from 'components/layouts/DefaultLayout'
import { StorageBucketsLayout } from 'components/layouts/StorageLayout/StorageBucketsLayout'
import StorageLayout from 'components/layouts/StorageLayout/StorageLayout'
import { useIsVectorBucketsEnabled } from 'data/config/project-storage-config-query'
+import { useSelectedOrganizationQuery } from 'hooks/misc/useSelectedOrganization'
import type { NextPageWithLayout } from 'types'
const StorageVectorsPage: NextPageWithLayout = () => {
const { ref: projectRef } = useParams()
+ const { data: organization } = useSelectedOrganizationQuery()
+ const isPaidPlan = organization?.plan.id !== 'free'
const isVectorBucketsEnabled = useIsVectorBucketsEnabled({ projectRef })
- return isVectorBucketsEnabled ? :
+
+ if (!isVectorBucketsEnabled) {
+ return
+ } else if (!isPaidPlan) {
+ return
+ } else {
+ return
+ }
}
StorageVectorsPage.getLayout = (page) => (
diff --git a/apps/studio/public/img/libraries/refine-dark-icon.svg b/apps/studio/public/img/libraries/refine-dark-icon.svg
new file mode 100644
index 0000000000000..ae9006afbbf33
--- /dev/null
+++ b/apps/studio/public/img/libraries/refine-dark-icon.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/apps/studio/public/img/libraries/refine-icon.svg b/apps/studio/public/img/libraries/refine-icon.svg
index 81ceebe54a440..a70e01fd0f58e 100644
--- a/apps/studio/public/img/libraries/refine-icon.svg
+++ b/apps/studio/public/img/libraries/refine-icon.svg
@@ -1 +1,4 @@
-
\ No newline at end of file
+
+
+
+
diff --git a/apps/www/_blog/2023-01-05-supabase-beta-december-2022.mdx b/apps/www/_blog/2023-01-05-supabase-beta-december-2022.mdx
index 4905d9db00f87..999a56c206046 100644
--- a/apps/www/_blog/2023-01-05-supabase-beta-december-2022.mdx
+++ b/apps/www/_blog/2023-01-05-supabase-beta-december-2022.mdx
@@ -107,7 +107,7 @@ Congratulations 👏 to [@\_iamkarthikeyan](https://twitter.com/_iamkarthikeyan)
- Build any Front-end like Admin Panel or CRM for your Supabase. [Article](https://blog.jetadmin.io/how-to-build-any-front-end-such-as-admin-panel-or-crm-for-your-supabase-in-minutes/)
- Everything Svelte: a course with all you need to know to build a modern web application. [Course](https://www.everythingsvelte.com/)
- Edgy Edge Functions: a look at a new Edge Function per week. [Youtube Playlist](https://www.youtube.com/playlist?list=PL5S4mPUpp4OulD3olUW8Eq1IYKpUbk5Ob)
-- Pixels, an app that provides canvas to create pixel art. [App](https://pixels.refine.dev/) | [GitHub Repo](https://github.com/refinedev/refine/tree/next/examples/pixels)
+- Pixels, an app that provides canvas to create pixel art. [App](https://pixels.refine.dev/) | [GitHub Repo](https://github.com/refinedev/refine/tree/main/examples/pixels)
- Supabase Angular authentication with RxJS Observables. [Tutorial](https://dev.to/kylerummens/supabase-angular-authentication-with-rxjs-observables-3d0f)
- Create Calendar Events in React With Google Calendar API and Supabase. [Video Tutorial](https://www.youtube.com/watch?v=tgcCl52EN84)
- Going Serverless with Supabase. [Part 1](https://dev.to/davepar/going-serverless-with-supabase-103h)
diff --git a/apps/www/_blog/2023-03-09-supabase-beta-update-february-2023.mdx b/apps/www/_blog/2023-03-09-supabase-beta-update-february-2023.mdx
index 645ba32493026..d56fa0d3af996 100644
--- a/apps/www/_blog/2023-03-09-supabase-beta-update-february-2023.mdx
+++ b/apps/www/_blog/2023-03-09-supabase-beta-update-february-2023.mdx
@@ -104,7 +104,7 @@ Discover 100+ other apps in this [tweet](https://twitter.com/supabase/status/162
- LangChain supports our database as a vector store, using pgvector. [Doc](https://hwchase17.github.io/langchainjs/docs/modules/indexes/vector_stores/supabase/)
-- refine week: building a CRUD app with refine & Supabase. [Full series](https://refine.dev/week-of-refine/)
+- Refine week: building a CRUD app with Refine & Supabase. [Full series](https://refine.dev/week-of-refine/)
- Build an Instagram Web App with Supabase and Next.js. [Tutorial](https://livecycle.io/blogs/nextjs-supabase-instagram/)
diff --git a/apps/www/_blog/2023-07-06-supabase-beta-update-june-2023.mdx b/apps/www/_blog/2023-07-06-supabase-beta-update-june-2023.mdx
index a155970ff15f9..9b649c6c718e3 100644
--- a/apps/www/_blog/2023-07-06-supabase-beta-update-june-2023.mdx
+++ b/apps/www/_blog/2023-07-06-supabase-beta-update-june-2023.mdx
@@ -83,7 +83,7 @@ Added the popular social platform Kakao as new social provider. Allow your users
- Using Supabase with Cloudflare Workers. [Cloudflare TV](https://cloudflare.tv/event/using-supabase-with-cloudflare-workers/dgM90RgD)
- Build a Chatbot with Next.js, LangChain, OpenAI, and Supabase Vector. [Video Tutorial](https://www.youtube.com/watch?v=Tt45NrVIBn8)
-- The refine open source Hackathon is in full swing. [Join now](https://discord.com/channels/@me/1118414473108148296/1123933930702262312)
+- The Refine open source Hackathon is in full swing. [Join now](https://discord.com/channels/@me/1118414473108148296/1123933930702262312)
- Flutter database and user authentication. [Video guide](https://www.youtube.com/watch?v=r7ysVtZ5Row)
- Google authentication with Expo & Supabase. [Tutorial](https://blog.spirokit.com/google-authentication-with-expo-supabase)
- Building Stripe integrations with Supabase. [Video](https://www.youtube.com/watch?v=D5kOnnB72WA)
diff --git a/apps/www/components/Hero/HeroFrameworks.tsx b/apps/www/components/Hero/HeroFrameworks.tsx
index db7a2a87cfff6..b3d5df073e138 100644
--- a/apps/www/components/Hero/HeroFrameworks.tsx
+++ b/apps/www/components/Hero/HeroFrameworks.tsx
@@ -61,7 +61,7 @@ export const frameworks: Framework[] = [
},
{
name: 'Refine',
- icon: 'M31.7374 20.9337C32.7027 20.9337 33.6284 21.3132 34.311 21.9887C34.9936 22.6642 35.377 23.5803 35.377 24.5356V39.4661C35.377 40.4214 34.9936 41.3375 34.311 42.013C33.6284 42.6885 32.7027 43.068 31.7374 43.068C30.7721 43.068 29.8463 42.6885 29.1638 42.013C28.4812 41.3375 28.0978 40.4214 28.0978 39.4661V24.5356C28.0978 24.0626 28.1919 23.5942 28.3748 23.1572C28.5577 22.7203 28.8258 22.3232 29.1638 21.9887C29.5018 21.6543 29.903 21.3889 30.3446 21.2079C30.7861 21.0269 31.2594 20.9337 31.7374 20.9337ZM31.7371 27.1915C33.2665 27.1915 34.5063 25.9646 34.5063 24.451C34.5063 22.9375 33.2665 21.7106 31.7371 21.7106C30.2077 21.7106 28.9679 22.9375 28.9679 24.451C28.9679 25.9646 30.2077 27.1915 31.7371 27.1915Z M54.0424 32C54.0424 44.3777 44.0083 54.4118 31.6306 54.4118C19.2529 54.4118 9.21875 44.3777 9.21875 32C9.21875 19.6223 19.2529 9.58813 31.6306 9.58813C44.0083 9.58813 54.0424 19.6223 54.0424 32ZM31.7374 19.3933C30.36 19.3952 29.0396 19.9376 28.0659 20.9016C27.0921 21.8657 26.5444 23.1726 26.543 24.5356V39.4661C26.543 40.8294 27.0902 42.137 28.0644 43.101C29.0385 44.065 30.3597 44.6066 31.7374 44.6066C33.115 44.6066 34.4362 44.065 35.4104 43.101C36.3845 42.137 36.9318 40.8294 36.9318 39.4661V24.5356C36.9304 23.1726 36.3827 21.8657 35.4089 20.9016C34.4352 19.9376 33.1148 19.3952 31.7374 19.3933Z',
+ icon: 'M33.4814 11.2038C31.6046 10.2654 29.3954 10.2654 27.5186 11.2038L14.1852 17.8705C11.9267 18.9998 10.5 21.3082 10.5 23.8333V37.1667C10.5 39.6918 11.9267 42.0002 14.1852 43.1295L27.5186 49.7962C29.3954 50.7346 31.6046 50.7346 33.4814 49.7962L46.8148 43.1295C49.0733 42.0002 50.5 39.6918 50.5 37.1667V23.8333C50.5 21.3082 49.0733 18.9998 46.8148 17.8705L33.4814 11.2038ZM23.8333 23.8333C23.8333 20.1514 26.8181 17.1667 30.5 17.1667C34.1819 17.1667 37.1667 20.1514 37.1667 23.8333V37.1667C37.1667 40.8486 34.1819 43.8333 30.5 43.8333C26.8181 43.8333 23.8333 40.8486 23.8333 37.1667V23.8333Z M33.8333 23.8333C33.8333 25.6743 32.3409 27.1667 30.5 27.1667C28.6591 27.1667 27.1667 25.6743 27.1667 23.8333C27.1667 21.9924 28.6591 20.5 30.5 20.5C32.3409 20.5 33.8333 21.9924 33.8333 23.8333Z',
docs: 'https://supabase.com/docs/guides/getting-started/quickstarts/refine',
},
]
diff --git a/examples/user-management/refine-user-management/.eslintrc.cjs b/examples/user-management/refine-user-management/.eslintrc.cjs
deleted file mode 100644
index 595490efccc94..0000000000000
--- a/examples/user-management/refine-user-management/.eslintrc.cjs
+++ /dev/null
@@ -1,16 +0,0 @@
-/* eslint-env node */
-
-module.exports = {
- env: { browser: true, es2020: true },
- extends: [
- "eslint:recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:react-hooks/recommended",
- ],
- parser: "@typescript-eslint/parser",
- parserOptions: { ecmaVersion: "latest", sourceType: "module" },
- plugins: ["react-refresh"],
- rules: {
- "react-refresh/only-export-components": "warn",
- },
-};
diff --git a/examples/user-management/refine-user-management/README.MD b/examples/user-management/refine-user-management/README.MD
index 84b7682ff0655..613231429ece1 100644
--- a/examples/user-management/refine-user-management/README.MD
+++ b/examples/user-management/refine-user-management/README.MD
@@ -1,15 +1,15 @@
-# Supabase refine User Management
+# Supabase Refine User Management
-This repo is a quick sample of how you can get started building apps using [refine](https://github.com/refinedev/refine) and Supabase: users can sign up with a magic link and then update their account with public profile information, including a profile image.
+This repo is a quick sample of how you can get started building apps using [Refine](https://github.com/refinedev/refine) and Supabase: users can sign up with a magic link and then update their account with public profile information, including a profile image.
-## About refine
+## About Refine
-[refine](https://github.com/refinedev/refine) is a React-based framework for building data-intensive applications in no time ✨
+[Refine](https://github.com/refinedev/refine) is a React-based framework for building data-intensive applications in no time ✨
-refine offers lots of out-of-the box functionality for rapid development, without compromising extreme customizability. Use-cases include, but are not limited to admin panels, B2B applications and dashboards.
+Refine offers lots of out-of-the box functionality for rapid development, without compromising extreme customizability. Use-cases include, but are not limited to admin panels, B2B applications and dashboards.
- To learn more about **refine**, please check out the [Documentation](https://refine.dev/docs)
-- [Step up to refine tutorials.](https://refine.dev/docs/tutorial/introduction/index/)
+- [Step up to Refine tutorials.](https://refine.dev/docs/tutorial/introduction/index/)
## Available Scripts
diff --git a/examples/user-management/refine-user-management/index.html b/examples/user-management/refine-user-management/index.html
index 17e72529889a9..82b7f922d9850 100644
--- a/examples/user-management/refine-user-management/index.html
+++ b/examples/user-management/refine-user-management/index.html
@@ -7,7 +7,7 @@
- refine - Build your React-based CRUD applications, without constraints.
+ Refine - Build your React-based CRUD applications, without constraints.
diff --git a/examples/user-management/refine-user-management/package-lock.json b/examples/user-management/refine-user-management/package-lock.json
new file mode 100644
index 0000000000000..89ccd8b4a63e8
--- /dev/null
+++ b/examples/user-management/refine-user-management/package-lock.json
@@ -0,0 +1,7862 @@
+{
+ "name": "refine-user-management",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "refine-user-management",
+ "version": "0.1.0",
+ "dependencies": {
+ "@refinedev/cli": "^2.16.50",
+ "@refinedev/core": "^5.0.5",
+ "@refinedev/inferencer": "^6.0.2",
+ "@refinedev/kbar": "^2.0.1",
+ "@refinedev/react-hook-form": "^5.0.2",
+ "@refinedev/react-router": "^2.0.3",
+ "@refinedev/supabase": "^6.0.1",
+ "react": "^19.1.0",
+ "react-dom": "^19.1.0",
+ "react-hook-form": "^7.57.0",
+ "react-router": "^7.0.2"
+ },
+ "devDependencies": {
+ "@types/node": "^20",
+ "@types/react": "^19.1.0",
+ "@types/react-dom": "^19.1.0",
+ "@vitejs/plugin-react": "^4.2.1",
+ "typescript": "^5.8.3",
+ "vite": "^5.4.15"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
+ "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.27.1",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.1.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz",
+ "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz",
+ "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.27.1",
+ "@babel/generator": "^7.28.5",
+ "@babel/helper-compilation-targets": "^7.27.2",
+ "@babel/helper-module-transforms": "^7.28.3",
+ "@babel/helpers": "^7.28.4",
+ "@babel/parser": "^7.28.5",
+ "@babel/template": "^7.27.2",
+ "@babel/traverse": "^7.28.5",
+ "@babel/types": "^7.28.5",
+ "@jridgewell/remapping": "^2.3.5",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@babel/core/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz",
+ "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.28.5",
+ "@babel/types": "^7.28.5",
+ "@jridgewell/gen-mapping": "^0.3.12",
+ "@jridgewell/trace-mapping": "^0.3.28",
+ "jsesc": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-annotate-as-pure": {
+ "version": "7.27.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz",
+ "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.27.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets": {
+ "version": "7.27.2",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
+ "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/compat-data": "^7.27.2",
+ "@babel/helper-validator-option": "^7.27.1",
+ "browserslist": "^4.24.0",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@babel/helper-create-class-features-plugin": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.28.5.tgz",
+ "integrity": "sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.27.3",
+ "@babel/helper-member-expression-to-functions": "^7.28.5",
+ "@babel/helper-optimise-call-expression": "^7.27.1",
+ "@babel/helper-replace-supers": "^7.27.1",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
+ "@babel/traverse": "^7.28.5",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@babel/helper-globals": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-member-expression-to-functions": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.28.5.tgz",
+ "integrity": "sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.28.5",
+ "@babel/types": "^7.28.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
+ "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.27.1",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.28.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
+ "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.27.1",
+ "@babel/helper-validator-identifier": "^7.27.1",
+ "@babel/traverse": "^7.28.3"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-optimise-call-expression": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.27.1.tgz",
+ "integrity": "sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-plugin-utils": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
+ "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-replace-supers": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.27.1.tgz",
+ "integrity": "sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-member-expression-to-functions": "^7.27.1",
+ "@babel/helper-optimise-call-expression": "^7.27.1",
+ "@babel/traverse": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-skip-transparent-expression-wrappers": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.27.1.tgz",
+ "integrity": "sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.27.1",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
+ "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-option": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helpers": {
+ "version": "7.28.4",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz",
+ "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/template": "^7.27.2",
+ "@babel/types": "^7.28.4"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz",
+ "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.28.5"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-flow": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.27.1.tgz",
+ "integrity": "sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-jsx": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz",
+ "integrity": "sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-typescript": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz",
+ "integrity": "sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-class-properties": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.27.1.tgz",
+ "integrity": "sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.27.1",
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-flow-strip-types": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.27.1.tgz",
+ "integrity": "sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1",
+ "@babel/plugin-syntax-flow": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-modules-commonjs": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.27.1.tgz",
+ "integrity": "sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-transforms": "^7.27.1",
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.27.1.tgz",
+ "integrity": "sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-optional-chaining": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.28.5.tgz",
+ "integrity": "sha512-N6fut9IZlPnjPwgiQkXNhb+cT8wQKFlJNqcZkWlcTqkcqx6/kU4ynGmLFoa4LViBSirn05YAwk+sQBbPfxtYzQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-private-methods": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.27.1.tgz",
+ "integrity": "sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.27.1",
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
+ "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
+ "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-typescript": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.28.5.tgz",
+ "integrity": "sha512-x2Qa+v/CuEoX7Dr31iAfr0IhInrVOWZU/2vJMJ00FOR/2nM0BcBEclpaf9sWCDc+v5e9dMrhSH8/atq/kX7+bA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.27.3",
+ "@babel/helper-create-class-features-plugin": "^7.28.5",
+ "@babel/helper-plugin-utils": "^7.27.1",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.27.1",
+ "@babel/plugin-syntax-typescript": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/preset-flow": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.27.1.tgz",
+ "integrity": "sha512-ez3a2it5Fn6P54W8QkbfIyyIbxlXvcxyWHHvno1Wg0Ej5eiJY5hBb8ExttoIOJJk7V2dZE6prP7iby5q2aQ0Lg==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1",
+ "@babel/helper-validator-option": "^7.27.1",
+ "@babel/plugin-transform-flow-strip-types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/preset-typescript": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.28.5.tgz",
+ "integrity": "sha512-+bQy5WOI2V6LJZpPVxY+yp66XdZ2yifu0Mc1aP5CQKgjn4QM5IN2i5fAZ4xKop47pr8rpVhiAeu+nDQa12C8+g==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.27.1",
+ "@babel/helper-validator-option": "^7.27.1",
+ "@babel/plugin-syntax-jsx": "^7.27.1",
+ "@babel/plugin-transform-modules-commonjs": "^7.27.1",
+ "@babel/plugin-transform-typescript": "^7.28.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/register": {
+ "version": "7.28.3",
+ "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.28.3.tgz",
+ "integrity": "sha512-CieDOtd8u208eI49bYl4z1J22ySFw87IGwE+IswFEExH7e3rLgKb0WNQeumnacQ1+VoDJLYI5QFA3AJZuyZQfA==",
+ "license": "MIT",
+ "dependencies": {
+ "clone-deep": "^4.0.1",
+ "find-cache-dir": "^2.0.0",
+ "make-dir": "^2.1.0",
+ "pirates": "^4.0.6",
+ "source-map-support": "^0.5.16"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/template": {
+ "version": "7.27.2",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
+ "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.27.1",
+ "@babel/parser": "^7.27.2",
+ "@babel/types": "^7.27.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz",
+ "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.27.1",
+ "@babel/generator": "^7.28.5",
+ "@babel/helper-globals": "^7.28.0",
+ "@babel/parser": "^7.28.5",
+ "@babel/template": "^7.27.2",
+ "@babel/types": "^7.28.5",
+ "debug": "^4.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.28.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz",
+ "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.27.1",
+ "@babel/helper-validator-identifier": "^7.28.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@colors/colors": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
+ "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=0.1.90"
+ }
+ },
+ "node_modules/@esbuild/aix-ppc64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
+ "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "aix"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
+ "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
+ "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
+ "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
+ "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
+ "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
+ "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
+ "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
+ "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
+ "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
+ "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
+ "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
+ "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
+ "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
+ "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
+ "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
+ "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
+ "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
+ "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
+ "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
+ "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
+ "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
+ "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@inquirer/external-editor": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.3.tgz",
+ "integrity": "sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==",
+ "license": "MIT",
+ "dependencies": {
+ "chardet": "^2.1.1",
+ "iconv-lite": "^0.7.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "peerDependencies": {
+ "@types/node": ">=18"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@inquirer/external-editor/node_modules/iconv-lite": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz",
+ "integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==",
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/@isaacs/cliui": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
+ "version": "6.2.2",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
+ "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/ansi-styles": {
+ "version": "6.2.3",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz",
+ "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "license": "MIT"
+ },
+ "node_modules/@isaacs/cliui/node_modules/string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "license": "MIT",
+ "dependencies": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
+ "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.13",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.0",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ }
+ },
+ "node_modules/@jridgewell/remapping": {
+ "version": "2.3.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ }
+ },
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
+ "license": "MIT"
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.31",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@npmcli/git": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.8.tgz",
+ "integrity": "sha512-liASfw5cqhjNW9UFd+ruwwdEf/lbOAQjLL2XY2dFW/bkJheXDYZgOyul/4gVvEV4BWkTXjYGmDqMw9uegdbJNQ==",
+ "license": "ISC",
+ "dependencies": {
+ "@npmcli/promise-spawn": "^7.0.0",
+ "ini": "^4.1.3",
+ "lru-cache": "^10.0.1",
+ "npm-pick-manifest": "^9.0.0",
+ "proc-log": "^4.0.0",
+ "promise-inflight": "^1.0.1",
+ "promise-retry": "^2.0.1",
+ "semver": "^7.3.5",
+ "which": "^4.0.0"
+ },
+ "engines": {
+ "node": "^16.14.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@npmcli/package-json": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.2.1.tgz",
+ "integrity": "sha512-f7zYC6kQautXHvNbLEWgD/uGu1+xCn9izgqBfgItWSx22U0ZDekxN08A1vM8cTxj/cRVe0Q94Ode+tdoYmIOOQ==",
+ "license": "ISC",
+ "dependencies": {
+ "@npmcli/git": "^5.0.0",
+ "glob": "^10.2.2",
+ "hosted-git-info": "^7.0.0",
+ "json-parse-even-better-errors": "^3.0.0",
+ "normalize-package-data": "^6.0.0",
+ "proc-log": "^4.0.0",
+ "semver": "^7.5.3"
+ },
+ "engines": {
+ "node": "^16.14.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@npmcli/package-json/node_modules/semver": {
+ "version": "7.7.3",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
+ "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@npmcli/promise-spawn": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.2.tgz",
+ "integrity": "sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==",
+ "license": "ISC",
+ "dependencies": {
+ "which": "^4.0.0"
+ },
+ "engines": {
+ "node": "^16.14.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=14"
+ }
+ },
+ "node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz",
+ "integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-portal": {
+ "version": "1.1.10",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.10.tgz",
+ "integrity": "sha512-4kY9IVa6+9nJPsYmngK5Uk2kUmZnv7ChhHAFeQ5oaj8jrR1bIi3xww8nH71pz1/Ve4d/cXO3YxT8eikt1B0a8w==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-primitive": "2.1.4",
+ "@radix-ui/react-use-layout-effect": "1.1.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-primitive": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.4.tgz",
+ "integrity": "sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-slot": "1.2.4"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-slot": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.4.tgz",
+ "integrity": "sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-compose-refs": "1.1.2"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-layout-effect": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz",
+ "integrity": "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@reach/observe-rect": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@reach/observe-rect/-/observe-rect-1.2.0.tgz",
+ "integrity": "sha512-Ba7HmkFgfQxZqqaeIWWkNK0rEhpxVQHIoVyW1YDSkGsGIXzcaW4deC8B0pZrNSSyLTdIk7y+5olKt5+g0GmFIQ==",
+ "license": "MIT"
+ },
+ "node_modules/@refinedev/cli": {
+ "version": "2.16.50",
+ "resolved": "https://registry.npmjs.org/@refinedev/cli/-/cli-2.16.50.tgz",
+ "integrity": "sha512-cPxCUB6vjYKbBbEQqY2JLENmPE9fneqTB7ZQRv7Hy1teF+hn4Q0iNH24C07JHZ5LSXnH98SXhgnUeUvNLRXPFQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@npmcli/package-json": "^5.2.0",
+ "@refinedev/devtools-server": "2.0.1",
+ "boxen": "^5.1.2",
+ "camelcase": "^6.2.0",
+ "cardinal": "^2.1.1",
+ "center-align": "1.0.1",
+ "chalk": "^4.1.2",
+ "cli-table3": "^0.6.3",
+ "commander": "9.4.1",
+ "conf": "^10.2.0",
+ "decamelize": "^5.0.0",
+ "dedent": "^0.7.0",
+ "dotenv": "^16.0.3",
+ "envinfo": "^7.8.1",
+ "execa": "^5.1.1",
+ "figlet": "^1.5.2",
+ "fs-extra": "^10.1.0",
+ "globby": "^11.1.0",
+ "gray-matter": "^4.0.3",
+ "handlebars": "^4.7.7",
+ "inquirer": "^8.2.5",
+ "inquirer-autocomplete-prompt": "^2.0.0",
+ "jscodeshift": "^17.3.0",
+ "marked": "^4.3.0",
+ "marked-terminal": "^6.0.0",
+ "node-emoji": "^2.1.3",
+ "node-env-type": "^0.0.8",
+ "node-fetch": "^2.6.7",
+ "ora": "^5.4.1",
+ "pluralize": "^8.0.0",
+ "preferred-pm": "^3.1.3",
+ "prettier": "^2.7.1",
+ "semver": "7.5.2",
+ "semver-diff": "^3.1.1",
+ "temp": "^0.9.4",
+ "tslib": "^2.6.2"
+ },
+ "bin": {
+ "refine": "dist/cli.cjs"
+ },
+ "engines": {
+ "node": ">=20"
+ }
+ },
+ "node_modules/@refinedev/core": {
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/@refinedev/core/-/core-5.0.5.tgz",
+ "integrity": "sha512-JpvqfrX/1Zob4QRO6BxrI0gYL7dCeIMTeTWTjgTVF3vyJjCrsl1U1j5fS9L70PbWwYYerqdSVQ/yRwzd3CrDKg==",
+ "license": "MIT",
+ "dependencies": {
+ "@refinedev/devtools-internal": "2.0.1",
+ "@tanstack/react-query": "^5.81.5",
+ "lodash": "^4.17.21",
+ "lodash-es": "^4.17.21",
+ "papaparse": "^5.3.0",
+ "pluralize": "^8.0.0",
+ "qs": "^6.10.1",
+ "tslib": "^2.6.2",
+ "warn-once": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "peerDependencies": {
+ "@tanstack/react-query": "^5.81.5",
+ "@types/react": "^18.0.0 || ^19.0.0",
+ "@types/react-dom": "^18.0.0 || ^19.0.0",
+ "react": "^18.0.0 || ^19.0.0",
+ "react-dom": "^18.0.0 || ^19.0.0"
+ }
+ },
+ "node_modules/@refinedev/devtools-internal": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@refinedev/devtools-internal/-/devtools-internal-2.0.1.tgz",
+ "integrity": "sha512-B28TrwJoQ+afm2jC74r96jgaAQXhc4SHYnpenJSyMrv0nxL3Trnr+QnuRxSIjOaYm7y9pACpX8lqbzIouWPCfg==",
+ "license": "MIT",
+ "dependencies": {
+ "@refinedev/devtools-shared": "2.0.1",
+ "@tanstack/react-query": "^5.81.5",
+ "error-stack-parser": "^2.1.4"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "peerDependencies": {
+ "@types/react": "^18.0.0 || ^19.0.0",
+ "@types/react-dom": "^18.0.0 || ^19.0.0",
+ "react": "^18.0.0 || ^19.0.0",
+ "react-dom": "^18.0.0 || ^19.0.0"
+ }
+ },
+ "node_modules/@refinedev/devtools-server": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@refinedev/devtools-server/-/devtools-server-2.0.1.tgz",
+ "integrity": "sha512-BgP0A+Ag4njZ5I2GKCEYaLbYZ5AvDBBaL5xhlDnYxSwVQI7yMi5tH5vFsr2cveW5MyuLZBn7KDTyKYUVO3EnAQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@refinedev/devtools-shared": "2.0.1",
+ "body-parser": "^1.20.2",
+ "boxen": "^5.1.2",
+ "chalk": "^4.1.2",
+ "dedent": "^0.7.0",
+ "dotenv": "^16.0.3",
+ "error-stack-parser": "^2.1.4",
+ "execa": "^5.1.1",
+ "express": "^4.21.0",
+ "fs-extra": "^10.1.0",
+ "globby": "^11.1.0",
+ "gray-matter": "^4.0.3",
+ "http-proxy-middleware": "^3.0.0",
+ "jscodeshift": "^17.3.0",
+ "lodash": "^4.17.21",
+ "lodash-es": "^4.17.21",
+ "marked": "^4.3.0",
+ "node-fetch": "^2.6.7",
+ "package-manager-detector": "^0.1.1",
+ "react": "^19.1.0",
+ "react-dom": "^19.1.0",
+ "sanitize-html": "^2.11.0",
+ "ws": "^8.13.0"
+ },
+ "bin": {
+ "refine-devtools": "dist/cli.cjs"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "peerDependencies": {
+ "@types/react": "^18.0.0 || ^19.0.0",
+ "@types/react-dom": "^18.0.0 || ^19.0.0",
+ "react": "^18.0.0 || ^19.0.0",
+ "react-dom": "^18.0.0 || ^19.0.0"
+ }
+ },
+ "node_modules/@refinedev/devtools-shared": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@refinedev/devtools-shared/-/devtools-shared-2.0.1.tgz",
+ "integrity": "sha512-x9Eg7wdwx8AB9LgN9Gg/bW4icpdIYCoJLCXZA2kOoY77+CHmUY6Uv78RgimvkIGEHZucbchJLCFoLdZkvx5ceQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@tanstack/react-query": "^5.81.5",
+ "error-stack-parser": "^2.1.4"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "peerDependencies": {
+ "@types/react": "^18.0.0 || ^19.0.0",
+ "@types/react-dom": "^18.0.0 || ^19.0.0",
+ "react": "^18.0.0 || ^19.0.0",
+ "react-dom": "^18.0.0 || ^19.0.0"
+ }
+ },
+ "node_modules/@refinedev/inferencer": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/@refinedev/inferencer/-/inferencer-6.0.2.tgz",
+ "integrity": "sha512-/BgZ1FKrykYNtDa+EaKVQyXhhf7LGTZk6oJjc7+Ta3G9nb+7BeVuNFxEnf+qH25lU9koZ7pJ9bvvO67iy2fVyg==",
+ "license": "MIT",
+ "dependencies": {
+ "@refinedev/core": "^5.0.5",
+ "@tabler/icons-react": "^3.1.0",
+ "dayjs": "^1.10.7",
+ "graphql": "^15.6.1",
+ "graphql-tag": "^2.12.6",
+ "lodash": "^4.17.21",
+ "lodash-es": "^4.17.21",
+ "pluralize": "^8.0.0",
+ "prettier": "^2.7.1",
+ "prism-react-renderer": "^1.3.5",
+ "react-markdown": "^6.0.1",
+ "remark-gfm": "^1.0.0",
+ "tslib": "^2.6.2"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "peerDependencies": {
+ "@ant-design/icons": "^5.5.1",
+ "@chakra-ui/react": "^2.5.1",
+ "@emotion/react": "^11.8.2",
+ "@emotion/styled": "^11.8.1",
+ "@mantine/core": "^5.10.4",
+ "@mantine/form": "^5.10.4",
+ "@mantine/hooks": "^5.10.4",
+ "@mantine/notifications": "^5.10.4",
+ "@mui/lab": "^6.0.0-beta.14",
+ "@mui/material": "^6.1.7",
+ "@mui/x-data-grid": "^7.23.5",
+ "@refinedev/antd": "^6.0.0",
+ "@refinedev/chakra-ui": "^3.0.0",
+ "@refinedev/core": "^5.0.0",
+ "@refinedev/mantine": "^3.0.0",
+ "@refinedev/mui": "^7.0.0",
+ "@refinedev/react-hook-form": "^5.0.0",
+ "@refinedev/react-table": "^6.0.0",
+ "@tanstack/react-table": "^8.2.6",
+ "@types/react": "^18.0.0 || ^19.0.0",
+ "@types/react-dom": "^18.0.0 || ^19.0.0",
+ "antd": "^5.0.3",
+ "dayjs": "^1.10.7",
+ "react": "^18.0.0 || ^19.0.0",
+ "react-dom": "^18.0.0 || ^19.0.0",
+ "react-hook-form": "^7.57.0"
+ },
+ "peerDependenciesMeta": {
+ "@chakra-ui/react": {
+ "optional": true
+ },
+ "@emotion/react": {
+ "optional": true
+ },
+ "@emotion/styled": {
+ "optional": true
+ },
+ "@mantine/core": {
+ "optional": true
+ },
+ "@mantine/form": {
+ "optional": true
+ },
+ "@mantine/hooks": {
+ "optional": true
+ },
+ "@mantine/notifications": {
+ "optional": true
+ },
+ "@mui/lab": {
+ "optional": true
+ },
+ "@mui/material": {
+ "optional": true
+ },
+ "@mui/x-data-grid": {
+ "optional": true
+ },
+ "@refinedev/antd": {
+ "optional": true
+ },
+ "@refinedev/chakra-ui": {
+ "optional": true
+ },
+ "@refinedev/mantine": {
+ "optional": true
+ },
+ "@refinedev/mui": {
+ "optional": true
+ },
+ "@refinedev/react-hook-form": {
+ "optional": true
+ },
+ "@refinedev/react-table": {
+ "optional": true
+ },
+ "@tanstack/react-table": {
+ "optional": true
+ },
+ "antd": {
+ "optional": true
+ },
+ "dayjs": {
+ "optional": true
+ },
+ "react-hook-form": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@refinedev/kbar": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@refinedev/kbar/-/kbar-2.0.1.tgz",
+ "integrity": "sha512-QaURCSdm2YV5m169zdgoW51QSgS68InZkiqLTg4W2AB8N23or+aP8xMEPrUpWn5haZOIf0AyQP/PRBme+iGTkA==",
+ "license": "MIT",
+ "dependencies": {
+ "kbar": "0.1.0-beta.40"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "peerDependencies": {
+ "@refinedev/core": "^5.0.0",
+ "react": "^18.0.0 || ^19.0.0",
+ "react-dom": "^18.0.0 || ^19.0.0"
+ }
+ },
+ "node_modules/@refinedev/react-hook-form": {
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/@refinedev/react-hook-form/-/react-hook-form-5.0.2.tgz",
+ "integrity": "sha512-GPuJPj36xQzyZktucVfcWOVUyMGQte+UmQNTf3ZimTMl9B/FxeGykoWG/UwhmtdXG2Atm/9Ao71rGvXA59JXVQ==",
+ "license": "MIT",
+ "dependencies": {
+ "lodash": "^4.17.21",
+ "lodash-es": "^4.17.21",
+ "react-hook-form": "^7.57.0"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "peerDependencies": {
+ "@refinedev/core": "^5.0.0",
+ "@types/react": "^18.0.0 || ^19.0.0",
+ "@types/react-dom": "^18.0.0 || ^19.0.0",
+ "react": "^18.0.0 || ^19.0.0",
+ "react-dom": "^18.0.0 || ^19.0.0",
+ "react-hook-form": "^7.57.0"
+ }
+ },
+ "node_modules/@refinedev/react-router": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@refinedev/react-router/-/react-router-2.0.3.tgz",
+ "integrity": "sha512-pQ/IOJJckXHIVQD2+Q220pOlGfLcDPJgpmyI4SzAhfuISeQprWsZrPDL/uLuqYosjJ+T5fWSq67tj1Bq0GMAsA==",
+ "license": "MIT",
+ "dependencies": {
+ "qs": "^6.10.1",
+ "react-router": "^7.0.2"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "peerDependencies": {
+ "@refinedev/core": "^5.0.0",
+ "@types/react": "^18.0.0 || ^19.0.0",
+ "@types/react-dom": "^18.0.0 || ^19.0.0",
+ "react": "^18.0.0 || ^19.0.0",
+ "react-dom": "^18.0.0 || ^19.0.0",
+ "react-router": "^7.0.2"
+ }
+ },
+ "node_modules/@refinedev/supabase": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/@refinedev/supabase/-/supabase-6.0.1.tgz",
+ "integrity": "sha512-YrW0pNIb7WR7eilAeLp4pk1oy1JeGzKKRhO1cAEbxl6WhXgccEwK0aFkZWX42kYil0SHPRuP4BUVi9Ft5NpZew==",
+ "license": "MIT",
+ "dependencies": {
+ "@supabase/supabase-js": "^2.7.0"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "peerDependencies": {
+ "@refinedev/core": "^5.0.0",
+ "@supabase/supabase-js": "^2.7.0"
+ }
+ },
+ "node_modules/@rolldown/pluginutils": {
+ "version": "1.0.0-beta.27",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
+ "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@rollup/rollup-android-arm-eabi": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.2.tgz",
+ "integrity": "sha512-yDPzwsgiFO26RJA4nZo8I+xqzh7sJTZIWQOxn+/XOdPE31lAvLIYCKqjV+lNH/vxE2L2iH3plKxDCRK6i+CwhA==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-android-arm64": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.2.tgz",
+ "integrity": "sha512-k8FontTxIE7b0/OGKeSN5B6j25EuppBcWM33Z19JoVT7UTXFSo3D9CdU39wGTeb29NO3XxpMNauh09B+Ibw+9g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-arm64": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.2.tgz",
+ "integrity": "sha512-A6s4gJpomNBtJ2yioj8bflM2oogDwzUiMl2yNJ2v9E7++sHrSrsQ29fOfn5DM/iCzpWcebNYEdXpaK4tr2RhfQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-darwin-x64": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.2.tgz",
+ "integrity": "sha512-e6XqVmXlHrBlG56obu9gDRPW3O3hLxpwHpLsBJvuI8qqnsrtSZ9ERoWUXtPOkY8c78WghyPHZdmPhHLWNdAGEw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-arm64": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.2.tgz",
+ "integrity": "sha512-v0E9lJW8VsrwPux5Qe5CwmH/CF/2mQs6xU1MF3nmUxmZUCHazCjLgYvToOk+YuuUqLQBio1qkkREhxhc656ViA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-freebsd-x64": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.2.tgz",
+ "integrity": "sha512-ClAmAPx3ZCHtp6ysl4XEhWU69GUB1D+s7G9YjHGhIGCSrsg00nEGRRZHmINYxkdoJehde8VIsDC5t9C0gb6yqA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.2.tgz",
+ "integrity": "sha512-EPlb95nUsz6Dd9Qy13fI5kUPXNSljaG9FiJ4YUGU1O/Q77i5DYFW5KR8g1OzTcdZUqQQ1KdDqsTohdFVwCwjqg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.2.tgz",
+ "integrity": "sha512-BOmnVW+khAUX+YZvNfa0tGTEMVVEerOxN0pDk2E6N6DsEIa2Ctj48FOMfNDdrwinocKaC7YXUZ1pHlKpnkja/Q==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.2.tgz",
+ "integrity": "sha512-Xt2byDZ+6OVNuREgBXr4+CZDJtrVso5woFtpKdGPhpTPHcNG7D8YXeQzpNbFRxzTVqJf7kvPMCub/pcGUWgBjA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.2.tgz",
+ "integrity": "sha512-+LdZSldy/I9N8+klim/Y1HsKbJ3BbInHav5qE9Iy77dtHC/pibw1SR/fXlWyAk0ThnpRKoODwnAuSjqxFRDHUQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.2.tgz",
+ "integrity": "sha512-8ms8sjmyc1jWJS6WdNSA23rEfdjWB30LH8Wqj0Cqvv7qSHnvw6kgMMXRdop6hkmGPlyYBdRPkjJnj3KCUHV/uQ==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.2.tgz",
+ "integrity": "sha512-3HRQLUQbpBDMmzoxPJYd3W6vrVHOo2cVW8RUo87Xz0JPJcBLBr5kZ1pGcQAhdZgX9VV7NbGNipah1omKKe23/g==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.2.tgz",
+ "integrity": "sha512-fMjKi+ojnmIvhk34gZP94vjogXNNUKMEYs+EDaB/5TG/wUkoeua7p7VCHnE6T2Tx+iaghAqQX8teQzcvrYpaQA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.2.tgz",
+ "integrity": "sha512-XuGFGU+VwUUV5kLvoAdi0Wz5Xbh2SrjIxCtZj6Wq8MDp4bflb/+ThZsVxokM7n0pcbkEr2h5/pzqzDYI7cCgLQ==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.2.tgz",
+ "integrity": "sha512-w6yjZF0P+NGzWR3AXWX9zc0DNEGdtvykB03uhonSHMRa+oWA6novflo2WaJr6JZakG2ucsyb+rvhrKac6NIy+w==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.2.tgz",
+ "integrity": "sha512-yo8d6tdfdeBArzC7T/PnHd7OypfI9cbuZzPnzLJIyKYFhAQ8SvlkKtKBMbXDxe1h03Rcr7u++nFS7tqXz87Gtw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-x64-musl": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.2.tgz",
+ "integrity": "sha512-ah59c1YkCxKExPP8O9PwOvs+XRLKwh/mV+3YdKqQ5AMQ0r4M4ZDuOrpWkUaqO7fzAHdINzV9tEVu8vNw48z0lA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-openharmony-arm64": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.2.tgz",
+ "integrity": "sha512-4VEd19Wmhr+Zy7hbUsFZ6YXEiP48hE//KPLCSVNY5RMGX2/7HZ+QkN55a3atM1C/BZCGIgqN+xrVgtdak2S9+A==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.2.tgz",
+ "integrity": "sha512-IlbHFYc/pQCgew/d5fslcy1KEaYVCJ44G8pajugd8VoOEI8ODhtb/j8XMhLpwHCMB3yk2J07ctup10gpw2nyMA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.2.tgz",
+ "integrity": "sha512-lNlPEGgdUfSzdCWU176ku/dQRnA7W+Gp8d+cWv73jYrb8uT7HTVVxq62DUYxjbaByuf1Yk0RIIAbDzp+CnOTFg==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.2.tgz",
+ "integrity": "sha512-S6YojNVrHybQis2lYov1sd+uj7K0Q05NxHcGktuMMdIQ2VixGwAfbJ23NnlvvVV1bdpR2m5MsNBViHJKcA4ADw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.2.tgz",
+ "integrity": "sha512-k+/Rkcyx//P6fetPoLMb8pBeqJBNGx81uuf7iljX9++yNBVRDQgD04L+SVXmXmh5ZP4/WOp4mWF0kmi06PW2tA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@sindresorhus/is": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",
+ "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/is?sponsor=1"
+ }
+ },
+ "node_modules/@supabase/auth-js": {
+ "version": "2.81.1",
+ "resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.81.1.tgz",
+ "integrity": "sha512-K20GgiSm9XeRLypxYHa5UCnybWc2K0ok0HLbqCej/wRxDpJxToXNOwKt0l7nO8xI1CyQ+GrNfU6bcRzvdbeopQ==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "2.8.1"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ }
+ },
+ "node_modules/@supabase/functions-js": {
+ "version": "2.81.1",
+ "resolved": "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.81.1.tgz",
+ "integrity": "sha512-sYgSO3mlgL0NvBFS3oRfCK4OgKGQwuOWJLzfPyWg0k8MSxSFSDeN/JtrDJD5GQrxskP6c58+vUzruBJQY78AqQ==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "2.8.1"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ }
+ },
+ "node_modules/@supabase/postgrest-js": {
+ "version": "2.81.1",
+ "resolved": "https://registry.npmjs.org/@supabase/postgrest-js/-/postgrest-js-2.81.1.tgz",
+ "integrity": "sha512-DePpUTAPXJyBurQ4IH2e42DWoA+/Qmr5mbgY4B6ZcxVc/ZUKfTVK31BYIFBATMApWraFc8Q/Sg+yxtfJ3E0wSg==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "2.8.1"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ }
+ },
+ "node_modules/@supabase/realtime-js": {
+ "version": "2.81.1",
+ "resolved": "https://registry.npmjs.org/@supabase/realtime-js/-/realtime-js-2.81.1.tgz",
+ "integrity": "sha512-ViQ+Kxm8BuUP/TcYmH9tViqYKGSD1LBjdqx2p5J+47RES6c+0QHedM0PPAjthMdAHWyb2LGATE9PD2++2rO/tw==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/phoenix": "^1.6.6",
+ "@types/ws": "^8.18.1",
+ "tslib": "2.8.1",
+ "ws": "^8.18.2"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ }
+ },
+ "node_modules/@supabase/storage-js": {
+ "version": "2.81.1",
+ "resolved": "https://registry.npmjs.org/@supabase/storage-js/-/storage-js-2.81.1.tgz",
+ "integrity": "sha512-UNmYtjnZnhouqnbEMC1D5YJot7y0rIaZx7FG2Fv8S3hhNjcGVvO+h9We/tggi273BFkiahQPS/uRsapo1cSapw==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "2.8.1"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ }
+ },
+ "node_modules/@supabase/supabase-js": {
+ "version": "2.81.1",
+ "resolved": "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.81.1.tgz",
+ "integrity": "sha512-KSdY7xb2L0DlLmlYzIOghdw/na4gsMcqJ8u4sD6tOQJr+x3hLujU9s4R8N3ob84/1bkvpvlU5PYKa1ae+OICnw==",
+ "license": "MIT",
+ "dependencies": {
+ "@supabase/auth-js": "2.81.1",
+ "@supabase/functions-js": "2.81.1",
+ "@supabase/postgrest-js": "2.81.1",
+ "@supabase/realtime-js": "2.81.1",
+ "@supabase/storage-js": "2.81.1"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ }
+ },
+ "node_modules/@tabler/icons": {
+ "version": "3.35.0",
+ "resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.35.0.tgz",
+ "integrity": "sha512-yYXe+gJ56xlZFiXwV9zVoe3FWCGuZ/D7/G4ZIlDtGxSx5CGQK110wrnT29gUj52kEZoxqF7oURTk97GQxELOFQ==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/codecalm"
+ }
+ },
+ "node_modules/@tabler/icons-react": {
+ "version": "3.35.0",
+ "resolved": "https://registry.npmjs.org/@tabler/icons-react/-/icons-react-3.35.0.tgz",
+ "integrity": "sha512-XG7t2DYf3DyHT5jxFNp5xyLVbL4hMJYJhiSdHADzAjLRYfL7AnjlRfiHDHeXxkb2N103rEIvTsBRazxXtAUz2g==",
+ "license": "MIT",
+ "dependencies": {
+ "@tabler/icons": "3.35.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/codecalm"
+ },
+ "peerDependencies": {
+ "react": ">= 16"
+ }
+ },
+ "node_modules/@tanstack/query-core": {
+ "version": "5.90.7",
+ "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.90.7.tgz",
+ "integrity": "sha512-6PN65csiuTNfBMXqQUxQhCNdtm1rV+9kC9YwWAIKcaxAauq3Wu7p18j3gQY3YIBJU70jT/wzCCZ2uqto/vQgiQ==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/tannerlinsley"
+ }
+ },
+ "node_modules/@tanstack/react-query": {
+ "version": "5.90.7",
+ "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.90.7.tgz",
+ "integrity": "sha512-wAHc/cgKzW7LZNFloThyHnV/AX9gTg3w5yAv0gvQHPZoCnepwqCMtzbuPbb2UvfvO32XZ46e8bPOYbfZhzVnnQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@tanstack/query-core": "5.90.7"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/tannerlinsley"
+ },
+ "peerDependencies": {
+ "react": "^18 || ^19"
+ }
+ },
+ "node_modules/@types/babel__core": {
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.20.7",
+ "@babel/types": "^7.20.7",
+ "@types/babel__generator": "*",
+ "@types/babel__template": "*",
+ "@types/babel__traverse": "*"
+ }
+ },
+ "node_modules/@types/babel__generator": {
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
+ "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "node_modules/@types/babel__template": {
+ "version": "7.4.4",
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.1.0",
+ "@babel/types": "^7.0.0"
+ }
+ },
+ "node_modules/@types/babel__traverse": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
+ "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.28.2"
+ }
+ },
+ "node_modules/@types/estree": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/hast": {
+ "version": "2.3.10",
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz",
+ "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2"
+ }
+ },
+ "node_modules/@types/http-proxy": {
+ "version": "1.17.17",
+ "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.17.tgz",
+ "integrity": "sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/mdast": {
+ "version": "3.0.15",
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz",
+ "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2"
+ }
+ },
+ "node_modules/@types/node": {
+ "version": "20.19.25",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.25.tgz",
+ "integrity": "sha512-ZsJzA5thDQMSQO788d7IocwwQbI8B5OPzmqNvpf3NY/+MHDAS759Wo0gd2WQeXYt5AAAQjzcrTVC6SKCuYgoCQ==",
+ "license": "MIT",
+ "dependencies": {
+ "undici-types": "~6.21.0"
+ }
+ },
+ "node_modules/@types/phoenix": {
+ "version": "1.6.6",
+ "resolved": "https://registry.npmjs.org/@types/phoenix/-/phoenix-1.6.6.tgz",
+ "integrity": "sha512-PIzZZlEppgrpoT2QgbnDU+MMzuR6BbCjllj0bM70lWoejMeNJAxCchxnv7J3XFkI8MpygtRpzXrIlmWUBclP5A==",
+ "license": "MIT"
+ },
+ "node_modules/@types/react": {
+ "version": "19.2.3",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.3.tgz",
+ "integrity": "sha512-k5dJVszUiNr1DSe8Cs+knKR6IrqhqdhpUwzqhkS8ecQTSf3THNtbfIp/umqHMpX2bv+9dkx3fwDv/86LcSfvSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "csstype": "^3.0.2"
+ }
+ },
+ "node_modules/@types/react-dom": {
+ "version": "19.2.3",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "^19.2.0"
+ }
+ },
+ "node_modules/@types/unist": {
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
+ "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
+ "license": "MIT"
+ },
+ "node_modules/@types/ws": {
+ "version": "8.18.1",
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz",
+ "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@vitejs/plugin-react": {
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
+ "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.28.0",
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
+ "@rolldown/pluginutils": "1.0.0-beta.27",
+ "@types/babel__core": "^7.20.5",
+ "react-refresh": "^0.17.0"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "peerDependencies": {
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
+ }
+ },
+ "node_modules/accepts": {
+ "version": "1.3.8",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
+ "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-types": "~2.1.34",
+ "negotiator": "0.6.3"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "8.17.1",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
+ "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3",
+ "fast-uri": "^3.0.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/ajv-formats": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
+ "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
+ "license": "MIT",
+ "dependencies": {
+ "ajv": "^8.0.0"
+ },
+ "peerDependencies": {
+ "ajv": "^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "ajv": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/align-text": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/align-text/-/align-text-1.0.2.tgz",
+ "integrity": "sha512-uBPDs72zrRTdiTBY0YjBbuBOdXtRyT4qsKPb4bL4O7vH4utz/7KjwTJVsVbdThxMbVzkRGAfk8Ml3xoMvXSEYw==",
+ "license": "MIT",
+ "dependencies": {
+ "kind-of": "^5.0.2",
+ "longest": "^2.0.1",
+ "repeat-string": "^1.6.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/ansi-align": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz",
+ "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==",
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.1.0"
+ }
+ },
+ "node_modules/ansi-escapes": {
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
+ "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
+ "license": "MIT",
+ "dependencies": {
+ "type-fest": "^0.21.3"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ansi-escapes/node_modules/type-fest": {
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/ansicolors": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz",
+ "integrity": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==",
+ "license": "MIT"
+ },
+ "node_modules/argparse": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
+ "license": "MIT",
+ "dependencies": {
+ "sprintf-js": "~1.0.2"
+ }
+ },
+ "node_modules/array-flatten": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
+ "license": "MIT"
+ },
+ "node_modules/array-union": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
+ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ast-types": {
+ "version": "0.16.1",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz",
+ "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/atomically": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/atomically/-/atomically-1.7.0.tgz",
+ "integrity": "sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10.12.0"
+ }
+ },
+ "node_modules/bail": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz",
+ "integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "license": "MIT"
+ },
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/baseline-browser-mapping": {
+ "version": "2.8.26",
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.26.tgz",
+ "integrity": "sha512-73lC1ugzwoaWCLJ1LvOgrR5xsMLTqSKIEoMHVtL9E/HNk0PXtTM76ZIm84856/SF7Nv8mPZxKoBsgpm0tR1u1Q==",
+ "license": "Apache-2.0",
+ "bin": {
+ "baseline-browser-mapping": "dist/cli.js"
+ }
+ },
+ "node_modules/bl": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
+ "license": "MIT",
+ "dependencies": {
+ "buffer": "^5.5.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.4.0"
+ }
+ },
+ "node_modules/body-parser": {
+ "version": "1.20.3",
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
+ "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "content-type": "~1.0.5",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "on-finished": "2.4.1",
+ "qs": "6.13.0",
+ "raw-body": "2.5.2",
+ "type-is": "~1.6.18",
+ "unpipe": "1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/body-parser/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/body-parser/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/body-parser/node_modules/qs": {
+ "version": "6.13.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
+ "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "side-channel": "^1.0.6"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/boxen": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz",
+ "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-align": "^3.0.0",
+ "camelcase": "^6.2.0",
+ "chalk": "^4.1.0",
+ "cli-boxes": "^2.2.1",
+ "string-width": "^4.2.2",
+ "type-fest": "^0.20.2",
+ "widest-line": "^3.1.0",
+ "wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/brace-expansion": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "license": "MIT",
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/browserslist": {
+ "version": "4.28.0",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz",
+ "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "baseline-browser-mapping": "^2.8.25",
+ "caniuse-lite": "^1.0.30001754",
+ "electron-to-chromium": "^1.5.249",
+ "node-releases": "^2.0.27",
+ "update-browserslist-db": "^1.1.4"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ }
+ },
+ "node_modules/buffer": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
+ }
+ },
+ "node_modules/buffer-from": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+ "license": "MIT"
+ },
+ "node_modules/bytes": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001754",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001754.tgz",
+ "integrity": "sha512-x6OeBXueoAceOmotzx3PO4Zpt4rzpeIFsSr6AAePTZxSkXiYDUmpypEl7e2+8NCd9bD7bXjqyef8CJYPC1jfxg==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "CC-BY-4.0"
+ },
+ "node_modules/cardinal": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz",
+ "integrity": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==",
+ "license": "MIT",
+ "dependencies": {
+ "ansicolors": "~0.3.2",
+ "redeyed": "~2.1.0"
+ },
+ "bin": {
+ "cdl": "bin/cdl.js"
+ }
+ },
+ "node_modules/ccount": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-1.1.0.tgz",
+ "integrity": "sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/center-align": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/center-align/-/center-align-1.0.1.tgz",
+ "integrity": "sha512-j6Ba1Vwtu0i9CUfM5VicnMqOsNRMYnNAoTUTB/EzUFhBKkqFPD5UE2WTCSIy49OnbjTEnJ0t2CFPYMbKNrUi/A==",
+ "license": "MIT",
+ "dependencies": {
+ "align-text": "^1.0.0",
+ "repeat-string": "^1.6.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/char-regex": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
+ "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/character-entities": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz",
+ "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-entities-legacy": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz",
+ "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/character-reference-invalid": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz",
+ "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/chardet": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/chardet/-/chardet-2.1.1.tgz",
+ "integrity": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==",
+ "license": "MIT"
+ },
+ "node_modules/cli-boxes": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz",
+ "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cli-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
+ "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
+ "license": "MIT",
+ "dependencies": {
+ "restore-cursor": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cli-spinners": {
+ "version": "2.9.2",
+ "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
+ "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cli-table3": {
+ "version": "0.6.5",
+ "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz",
+ "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==",
+ "license": "MIT",
+ "dependencies": {
+ "string-width": "^4.2.0"
+ },
+ "engines": {
+ "node": "10.* || >= 12.*"
+ },
+ "optionalDependencies": {
+ "@colors/colors": "1.5.0"
+ }
+ },
+ "node_modules/cli-width": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz",
+ "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/clone": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+ "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8"
+ }
+ },
+ "node_modules/clone-deep": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
+ "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
+ "license": "MIT",
+ "dependencies": {
+ "is-plain-object": "^2.0.4",
+ "kind-of": "^6.0.2",
+ "shallow-clone": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/clone-deep/node_modules/is-plain-object": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
+ "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
+ "license": "MIT",
+ "dependencies": {
+ "isobject": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/clone-deep/node_modules/kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "license": "MIT"
+ },
+ "node_modules/comma-separated-tokens": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
+ "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/command-score": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/command-score/-/command-score-0.1.2.tgz",
+ "integrity": "sha512-VtDvQpIJBvBatnONUsPzXYFVKQQAhuf3XTNOAsdBxCNO/QCtUUd8LSgjn0GVarBkCad6aJCZfXgrjYbl/KRr7w==",
+ "license": "MIT"
+ },
+ "node_modules/commander": {
+ "version": "9.4.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-9.4.1.tgz",
+ "integrity": "sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==",
+ "license": "MIT",
+ "engines": {
+ "node": "^12.20.0 || >=14"
+ }
+ },
+ "node_modules/commondir": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
+ "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==",
+ "license": "MIT"
+ },
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
+ "license": "MIT"
+ },
+ "node_modules/conf": {
+ "version": "10.2.0",
+ "resolved": "https://registry.npmjs.org/conf/-/conf-10.2.0.tgz",
+ "integrity": "sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==",
+ "license": "MIT",
+ "dependencies": {
+ "ajv": "^8.6.3",
+ "ajv-formats": "^2.1.1",
+ "atomically": "^1.7.0",
+ "debounce-fn": "^4.0.0",
+ "dot-prop": "^6.0.1",
+ "env-paths": "^2.2.1",
+ "json-schema-typed": "^7.0.3",
+ "onetime": "^5.1.2",
+ "pkg-up": "^3.1.0",
+ "semver": "^7.3.5"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/content-disposition": {
+ "version": "0.5.4",
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
+ "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "5.2.1"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/content-type": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "license": "MIT"
+ },
+ "node_modules/cookie": {
+ "version": "0.7.1",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
+ "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/cookie-signature": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
+ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
+ "license": "MIT"
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/cross-spawn/node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "license": "ISC"
+ },
+ "node_modules/cross-spawn/node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/csstype": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/dayjs": {
+ "version": "1.11.19",
+ "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.19.tgz",
+ "integrity": "sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==",
+ "license": "MIT"
+ },
+ "node_modules/debounce-fn": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/debounce-fn/-/debounce-fn-4.0.0.tgz",
+ "integrity": "sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==",
+ "license": "MIT",
+ "dependencies": {
+ "mimic-fn": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/debug": {
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/decamelize": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-5.0.1.tgz",
+ "integrity": "sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/dedent": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
+ "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==",
+ "license": "MIT"
+ },
+ "node_modules/deepmerge": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
+ "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/defaults": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
+ "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
+ "license": "MIT",
+ "dependencies": {
+ "clone": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/depd": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/destroy": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8",
+ "npm": "1.2.8000 || >= 1.4.16"
+ }
+ },
+ "node_modules/dir-glob": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
+ "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
+ "license": "MIT",
+ "dependencies": {
+ "path-type": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/dom-serializer": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
+ "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
+ "license": "MIT",
+ "dependencies": {
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.2",
+ "entities": "^4.2.0"
+ },
+ "funding": {
+ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
+ }
+ },
+ "node_modules/domelementtype": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
+ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/domhandler": {
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
+ "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "domelementtype": "^2.3.0"
+ },
+ "engines": {
+ "node": ">= 4"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domhandler?sponsor=1"
+ }
+ },
+ "node_modules/domutils": {
+ "version": "3.2.2",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz",
+ "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "dom-serializer": "^2.0.0",
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/domutils?sponsor=1"
+ }
+ },
+ "node_modules/dot-prop": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz",
+ "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==",
+ "license": "MIT",
+ "dependencies": {
+ "is-obj": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/dotenv": {
+ "version": "16.6.1",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
+ "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://dotenvx.com"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "license": "MIT"
+ },
+ "node_modules/ee-first": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
+ "license": "MIT"
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.250",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.250.tgz",
+ "integrity": "sha512-/5UMj9IiGDMOFBnN4i7/Ry5onJrAGSbOGo3s9FEKmwobGq6xw832ccET0CE3CkkMBZ8GJSlUIesZofpyurqDXw==",
+ "license": "ISC"
+ },
+ "node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "license": "MIT"
+ },
+ "node_modules/emojilib": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz",
+ "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==",
+ "license": "MIT"
+ },
+ "node_modules/encodeurl": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/entities": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
+ "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.12"
+ },
+ "funding": {
+ "url": "https://github.com/fb55/entities?sponsor=1"
+ }
+ },
+ "node_modules/env-paths": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
+ "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/envinfo": {
+ "version": "7.20.0",
+ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.20.0.tgz",
+ "integrity": "sha512-+zUomDcLXsVkQ37vUqWBvQwLaLlj8eZPSi61llaEFAVBY5mhcXdaSw1pSJVl4yTYD5g/gEfpNl28YYk4IPvrrg==",
+ "license": "MIT",
+ "bin": {
+ "envinfo": "dist/cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/err-code": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
+ "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
+ "license": "MIT"
+ },
+ "node_modules/error-stack-parser": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz",
+ "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==",
+ "license": "MIT",
+ "dependencies": {
+ "stackframe": "^1.3.4"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/esbuild": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
+ "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "optionalDependencies": {
+ "@esbuild/aix-ppc64": "0.21.5",
+ "@esbuild/android-arm": "0.21.5",
+ "@esbuild/android-arm64": "0.21.5",
+ "@esbuild/android-x64": "0.21.5",
+ "@esbuild/darwin-arm64": "0.21.5",
+ "@esbuild/darwin-x64": "0.21.5",
+ "@esbuild/freebsd-arm64": "0.21.5",
+ "@esbuild/freebsd-x64": "0.21.5",
+ "@esbuild/linux-arm": "0.21.5",
+ "@esbuild/linux-arm64": "0.21.5",
+ "@esbuild/linux-ia32": "0.21.5",
+ "@esbuild/linux-loong64": "0.21.5",
+ "@esbuild/linux-mips64el": "0.21.5",
+ "@esbuild/linux-ppc64": "0.21.5",
+ "@esbuild/linux-riscv64": "0.21.5",
+ "@esbuild/linux-s390x": "0.21.5",
+ "@esbuild/linux-x64": "0.21.5",
+ "@esbuild/netbsd-x64": "0.21.5",
+ "@esbuild/openbsd-x64": "0.21.5",
+ "@esbuild/sunos-x64": "0.21.5",
+ "@esbuild/win32-arm64": "0.21.5",
+ "@esbuild/win32-ia32": "0.21.5",
+ "@esbuild/win32-x64": "0.21.5"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-html": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
+ "license": "MIT"
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/esprima": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
+ "license": "BSD-2-Clause",
+ "bin": {
+ "esparse": "bin/esparse.js",
+ "esvalidate": "bin/esvalidate.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/etag": {
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/eventemitter3": {
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
+ "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
+ "license": "MIT"
+ },
+ "node_modules/execa": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
+ "license": "MIT",
+ "dependencies": {
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
+ "strip-final-newline": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
+ }
+ },
+ "node_modules/express": {
+ "version": "4.21.2",
+ "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
+ "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
+ "license": "MIT",
+ "dependencies": {
+ "accepts": "~1.3.8",
+ "array-flatten": "1.1.1",
+ "body-parser": "1.20.3",
+ "content-disposition": "0.5.4",
+ "content-type": "~1.0.4",
+ "cookie": "0.7.1",
+ "cookie-signature": "1.0.6",
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "finalhandler": "1.3.1",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "merge-descriptors": "1.0.3",
+ "methods": "~1.1.2",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "path-to-regexp": "0.1.12",
+ "proxy-addr": "~2.0.7",
+ "qs": "6.13.0",
+ "range-parser": "~1.2.1",
+ "safe-buffer": "5.2.1",
+ "send": "0.19.0",
+ "serve-static": "1.16.2",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "type-is": "~1.6.18",
+ "utils-merge": "1.0.1",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/express"
+ }
+ },
+ "node_modules/express/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/express/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/express/node_modules/qs": {
+ "version": "6.13.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
+ "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "side-channel": "^1.0.6"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/extend": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
+ "license": "MIT"
+ },
+ "node_modules/extend-shallow": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
+ "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
+ "license": "MIT",
+ "dependencies": {
+ "is-extendable": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "license": "MIT"
+ },
+ "node_modules/fast-equals": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-2.0.4.tgz",
+ "integrity": "sha512-caj/ZmjHljPrZtbzJ3kfH5ia/k4mTJe/qSiXAGzxZWRZgsgDV0cvNaQULqUX8t0/JVlzzEdYOwCN5DmzTxoD4w==",
+ "license": "MIT"
+ },
+ "node_modules/fast-glob": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz",
+ "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.8"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fast-uri": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz",
+ "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fastify"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/fastify"
+ }
+ ],
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/fastq": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
+ "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
+ "license": "ISC",
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "node_modules/figlet": {
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/figlet/-/figlet-1.9.3.tgz",
+ "integrity": "sha512-majPgOpVtrZN1iyNGbsUP6bOtZ6eaJgg5HHh0vFvm5DJhh8dc+FJpOC4GABvMZ/A7XHAJUuJujhgUY/2jPWgMA==",
+ "license": "MIT",
+ "dependencies": {
+ "commander": "^14.0.0"
+ },
+ "bin": {
+ "figlet": "bin/index.js"
+ },
+ "engines": {
+ "node": ">= 17.0.0"
+ }
+ },
+ "node_modules/figlet/node_modules/commander": {
+ "version": "14.0.2",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.2.tgz",
+ "integrity": "sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=20"
+ }
+ },
+ "node_modules/figures": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz",
+ "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==",
+ "license": "MIT",
+ "dependencies": {
+ "escape-string-regexp": "^1.0.5"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "license": "MIT",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/finalhandler": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
+ "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "on-finished": "2.4.1",
+ "parseurl": "~1.3.3",
+ "statuses": "2.0.1",
+ "unpipe": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/finalhandler/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/finalhandler/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/find-cache-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
+ "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
+ "license": "MIT",
+ "dependencies": {
+ "commondir": "^1.0.1",
+ "make-dir": "^2.0.0",
+ "pkg-dir": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/find-yarn-workspace-root2": {
+ "version": "1.2.16",
+ "resolved": "https://registry.npmjs.org/find-yarn-workspace-root2/-/find-yarn-workspace-root2-1.2.16.tgz",
+ "integrity": "sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "micromatch": "^4.0.2",
+ "pkg-dir": "^4.2.0"
+ }
+ },
+ "node_modules/find-yarn-workspace-root2/node_modules/find-up": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/find-yarn-workspace-root2/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/find-yarn-workspace-root2/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/find-yarn-workspace-root2/node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/find-yarn-workspace-root2/node_modules/pkg-dir": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/flow-parser": {
+ "version": "0.291.0",
+ "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.291.0.tgz",
+ "integrity": "sha512-MLqjFn72Dvndqrkjy280HaIs4AV9Z6nxVRmNPO3TjbYcipg4hR7QX7tEYZYsVvaaZWZPGe6Mithluk2aPGlDOw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/follow-redirects": {
+ "version": "1.15.11",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/RubenVerborgh"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependenciesMeta": {
+ "debug": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/foreground-child": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.6",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/foreground-child/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/forwarded": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fresh": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
+ "license": "ISC"
+ },
+ "node_modules/fsevents": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/get-stream": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/glob": {
+ "version": "10.4.5",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
+ "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/globby": {
+ "version": "11.1.0",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
+ "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
+ "license": "MIT",
+ "dependencies": {
+ "array-union": "^2.1.0",
+ "dir-glob": "^3.0.1",
+ "fast-glob": "^3.2.9",
+ "ignore": "^5.2.0",
+ "merge2": "^1.4.1",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "license": "ISC"
+ },
+ "node_modules/graphql": {
+ "version": "15.10.1",
+ "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.10.1.tgz",
+ "integrity": "sha512-BL/Xd/T9baO6NFzoMpiMD7YUZ62R6viR5tp/MULVEnbYJXZA//kRNW7J0j1w/wXArgL0sCxhDfK5dczSKn3+cg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.x"
+ }
+ },
+ "node_modules/graphql-tag": {
+ "version": "2.12.6",
+ "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.12.6.tgz",
+ "integrity": "sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==",
+ "license": "MIT",
+ "dependencies": {
+ "tslib": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "graphql": "^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
+ }
+ },
+ "node_modules/gray-matter": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
+ "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
+ "license": "MIT",
+ "dependencies": {
+ "js-yaml": "^3.13.1",
+ "kind-of": "^6.0.2",
+ "section-matter": "^1.0.0",
+ "strip-bom-string": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=6.0"
+ }
+ },
+ "node_modules/gray-matter/node_modules/kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/handlebars": {
+ "version": "4.7.8",
+ "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz",
+ "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==",
+ "license": "MIT",
+ "dependencies": {
+ "minimist": "^1.2.5",
+ "neo-async": "^2.6.2",
+ "source-map": "^0.6.1",
+ "wordwrap": "^1.0.0"
+ },
+ "bin": {
+ "handlebars": "bin/handlebars"
+ },
+ "engines": {
+ "node": ">=0.4.7"
+ },
+ "optionalDependencies": {
+ "uglify-js": "^3.1.4"
+ }
+ },
+ "node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/hosted-git-info": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz",
+ "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^10.0.1"
+ },
+ "engines": {
+ "node": "^16.14.0 || >=18.0.0"
+ }
+ },
+ "node_modules/htmlparser2": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz",
+ "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==",
+ "funding": [
+ "https://github.com/fb55/htmlparser2?sponsor=1",
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fb55"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "domelementtype": "^2.3.0",
+ "domhandler": "^5.0.3",
+ "domutils": "^3.0.1",
+ "entities": "^4.4.0"
+ }
+ },
+ "node_modules/http-errors": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
+ "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "depd": "2.0.0",
+ "inherits": "2.0.4",
+ "setprototypeof": "1.2.0",
+ "statuses": "2.0.1",
+ "toidentifier": "1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/http-proxy": {
+ "version": "1.18.1",
+ "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz",
+ "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==",
+ "license": "MIT",
+ "dependencies": {
+ "eventemitter3": "^4.0.0",
+ "follow-redirects": "^1.0.0",
+ "requires-port": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/http-proxy-middleware": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-3.0.5.tgz",
+ "integrity": "sha512-GLZZm1X38BPY4lkXA01jhwxvDoOkkXqjgVyUzVxiEK4iuRu03PZoYHhHRwxnfhQMDuaxi3vVri0YgSro/1oWqg==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/http-proxy": "^1.17.15",
+ "debug": "^4.3.6",
+ "http-proxy": "^1.18.1",
+ "is-glob": "^4.0.3",
+ "is-plain-object": "^5.0.0",
+ "micromatch": "^4.0.8"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/human-signals": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=10.17.0"
+ }
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.4.24",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
+ "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
+ "license": "ISC",
+ "dependencies": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "license": "ISC"
+ },
+ "node_modules/ini": {
+ "version": "4.1.3",
+ "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz",
+ "integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==",
+ "license": "ISC",
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/inline-style-parser": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz",
+ "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==",
+ "license": "MIT"
+ },
+ "node_modules/inquirer": {
+ "version": "8.2.7",
+ "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.7.tgz",
+ "integrity": "sha512-UjOaSel/iddGZJ5xP/Eixh6dY1XghiBw4XK13rCCIJcJfyhhoul/7KhLLUGtebEj6GDYM6Vnx/mVsjx2L/mFIA==",
+ "license": "MIT",
+ "dependencies": {
+ "@inquirer/external-editor": "^1.0.0",
+ "ansi-escapes": "^4.2.1",
+ "chalk": "^4.1.1",
+ "cli-cursor": "^3.1.0",
+ "cli-width": "^3.0.0",
+ "figures": "^3.0.0",
+ "lodash": "^4.17.21",
+ "mute-stream": "0.0.8",
+ "ora": "^5.4.1",
+ "run-async": "^2.4.0",
+ "rxjs": "^7.5.5",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "through": "^2.3.6",
+ "wrap-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ }
+ },
+ "node_modules/inquirer-autocomplete-prompt": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-2.0.1.tgz",
+ "integrity": "sha512-jUHrH0btO7j5r8DTQgANf2CBkTZChoVySD8zF/wp5fZCOLIuUbleXhf4ZY5jNBOc1owA3gdfWtfZuppfYBhcUg==",
+ "license": "ISC",
+ "dependencies": {
+ "ansi-escapes": "^4.3.2",
+ "figures": "^3.2.0",
+ "picocolors": "^1.0.0",
+ "run-async": "^2.4.1",
+ "rxjs": "^7.5.4"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "peerDependencies": {
+ "inquirer": "^8.0.0"
+ }
+ },
+ "node_modules/inquirer/node_modules/wrap-ansi": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
+ "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ipaddr.js": {
+ "version": "1.9.1",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/is-alphabetical": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz",
+ "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-alphanumerical": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz",
+ "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==",
+ "license": "MIT",
+ "dependencies": {
+ "is-alphabetical": "^1.0.0",
+ "is-decimal": "^1.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-buffer": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
+ "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/is-decimal": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz",
+ "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-extendable": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
+ "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "license": "MIT",
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-hexadecimal": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz",
+ "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/is-interactive": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
+ "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-obj": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
+ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-plain-obj": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
+ "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-plain-object": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
+ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-stream": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
+ "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-unicode-supported": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
+ "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/isexe": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz",
+ "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/isobject": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
+ "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/jackspeak": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "@isaacs/cliui": "^8.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ },
+ "optionalDependencies": {
+ "@pkgjs/parseargs": "^0.11.0"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "license": "MIT"
+ },
+ "node_modules/js-yaml": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/jscodeshift": {
+ "version": "17.3.0",
+ "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-17.3.0.tgz",
+ "integrity": "sha512-LjFrGOIORqXBU+jwfC9nbkjmQfFldtMIoS6d9z2LG/lkmyNXsJAySPT+2SWXJEoE68/bCWcxKpXH37npftgmow==",
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.24.7",
+ "@babel/parser": "^7.24.7",
+ "@babel/plugin-transform-class-properties": "^7.24.7",
+ "@babel/plugin-transform-modules-commonjs": "^7.24.7",
+ "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.7",
+ "@babel/plugin-transform-optional-chaining": "^7.24.7",
+ "@babel/plugin-transform-private-methods": "^7.24.7",
+ "@babel/preset-flow": "^7.24.7",
+ "@babel/preset-typescript": "^7.24.7",
+ "@babel/register": "^7.24.6",
+ "flow-parser": "0.*",
+ "graceful-fs": "^4.2.4",
+ "micromatch": "^4.0.7",
+ "neo-async": "^2.5.0",
+ "picocolors": "^1.0.1",
+ "recast": "^0.23.11",
+ "tmp": "^0.2.3",
+ "write-file-atomic": "^5.0.1"
+ },
+ "bin": {
+ "jscodeshift": "bin/jscodeshift.js"
+ },
+ "engines": {
+ "node": ">=16"
+ },
+ "peerDependencies": {
+ "@babel/preset-env": "^7.1.6"
+ },
+ "peerDependenciesMeta": {
+ "@babel/preset-env": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/jsesc": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
+ "license": "MIT",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/json-parse-even-better-errors": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz",
+ "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==",
+ "license": "MIT",
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
+ "license": "MIT"
+ },
+ "node_modules/json-schema-typed": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-7.0.3.tgz",
+ "integrity": "sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "license": "MIT",
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/kbar": {
+ "version": "0.1.0-beta.40",
+ "resolved": "https://registry.npmjs.org/kbar/-/kbar-0.1.0-beta.40.tgz",
+ "integrity": "sha512-vEV02WuEBvKaSivO2DnNtyd3gUAbruYrZCax5fXcLcVTFV6q0/w6Ew3z6Qy+AqXxbZdWguwQ3POIwgdHevp+6A==",
+ "license": "MIT",
+ "dependencies": {
+ "@radix-ui/react-portal": "^1.0.1",
+ "command-score": "^0.1.2",
+ "fast-equals": "^2.0.3",
+ "react-virtual": "^2.8.2",
+ "tiny-invariant": "^1.2.0"
+ },
+ "peerDependencies": {
+ "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
+ }
+ },
+ "node_modules/kind-of": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
+ "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/load-yaml-file": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.2.0.tgz",
+ "integrity": "sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.1.5",
+ "js-yaml": "^3.13.0",
+ "pify": "^4.0.1",
+ "strip-bom": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/locate-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/lodash": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
+ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
+ "license": "MIT"
+ },
+ "node_modules/lodash-es": {
+ "version": "4.17.21",
+ "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz",
+ "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==",
+ "license": "MIT"
+ },
+ "node_modules/log-symbols": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
+ "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "^4.1.0",
+ "is-unicode-supported": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/longest": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/longest/-/longest-2.0.1.tgz",
+ "integrity": "sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/longest-streak": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz",
+ "integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "license": "MIT",
+ "dependencies": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ },
+ "bin": {
+ "loose-envify": "cli.js"
+ }
+ },
+ "node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
+ "license": "ISC"
+ },
+ "node_modules/make-dir": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
+ "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
+ "license": "MIT",
+ "dependencies": {
+ "pify": "^4.0.1",
+ "semver": "^5.6.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/make-dir/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/markdown-table": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz",
+ "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==",
+ "license": "MIT",
+ "dependencies": {
+ "repeat-string": "^1.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/marked": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz",
+ "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==",
+ "license": "MIT",
+ "bin": {
+ "marked": "bin/marked.js"
+ },
+ "engines": {
+ "node": ">= 12"
+ }
+ },
+ "node_modules/marked-terminal": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.2.0.tgz",
+ "integrity": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-escapes": "^6.2.0",
+ "cardinal": "^2.1.1",
+ "chalk": "^5.3.0",
+ "cli-table3": "^0.6.3",
+ "node-emoji": "^2.1.3",
+ "supports-hyperlinks": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=16.0.0"
+ },
+ "peerDependencies": {
+ "marked": ">=1 <12"
+ }
+ },
+ "node_modules/marked-terminal/node_modules/ansi-escapes": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.1.tgz",
+ "integrity": "sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/marked-terminal/node_modules/chalk": {
+ "version": "5.6.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
+ "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
+ "license": "MIT",
+ "engines": {
+ "node": "^12.17.0 || ^14.13 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/mdast-util-definitions": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz",
+ "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==",
+ "license": "MIT",
+ "dependencies": {
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-find-and-replace": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-1.1.1.tgz",
+ "integrity": "sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==",
+ "license": "MIT",
+ "dependencies": {
+ "escape-string-regexp": "^4.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/mdast-util-from-markdown": {
+ "version": "0.8.5",
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz",
+ "integrity": "sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "mdast-util-to-string": "^2.0.0",
+ "micromark": "~2.11.0",
+ "parse-entities": "^2.0.0",
+ "unist-util-stringify-position": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-0.1.2.tgz",
+ "integrity": "sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==",
+ "license": "MIT",
+ "dependencies": {
+ "mdast-util-gfm-autolink-literal": "^0.1.0",
+ "mdast-util-gfm-strikethrough": "^0.2.0",
+ "mdast-util-gfm-table": "^0.1.0",
+ "mdast-util-gfm-task-list-item": "^0.1.0",
+ "mdast-util-to-markdown": "^0.6.1"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-autolink-literal": {
+ "version": "0.1.3",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-0.1.3.tgz",
+ "integrity": "sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==",
+ "license": "MIT",
+ "dependencies": {
+ "ccount": "^1.0.0",
+ "mdast-util-find-and-replace": "^1.1.0",
+ "micromark": "^2.11.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-strikethrough": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-0.2.3.tgz",
+ "integrity": "sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==",
+ "license": "MIT",
+ "dependencies": {
+ "mdast-util-to-markdown": "^0.6.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-table": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-0.1.6.tgz",
+ "integrity": "sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==",
+ "license": "MIT",
+ "dependencies": {
+ "markdown-table": "^2.0.0",
+ "mdast-util-to-markdown": "~0.6.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-gfm-task-list-item": {
+ "version": "0.1.6",
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-0.1.6.tgz",
+ "integrity": "sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==",
+ "license": "MIT",
+ "dependencies": {
+ "mdast-util-to-markdown": "~0.6.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-hast": {
+ "version": "10.2.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-10.2.0.tgz",
+ "integrity": "sha512-JoPBfJ3gBnHZ18icCwHR50orC9kNH81tiR1gs01D8Q5YpV6adHNO9nKNuFBCJQ941/32PT1a63UF/DitmS3amQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/mdast": "^3.0.0",
+ "@types/unist": "^2.0.0",
+ "mdast-util-definitions": "^4.0.0",
+ "mdurl": "^1.0.0",
+ "unist-builder": "^2.0.0",
+ "unist-util-generated": "^1.0.0",
+ "unist-util-position": "^3.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-markdown": {
+ "version": "0.6.5",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz",
+ "integrity": "sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "longest-streak": "^2.0.0",
+ "mdast-util-to-string": "^2.0.0",
+ "parse-entities": "^2.0.0",
+ "repeat-string": "^1.0.0",
+ "zwitch": "^1.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-string": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz",
+ "integrity": "sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdurl": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
+ "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==",
+ "license": "MIT"
+ },
+ "node_modules/media-typer": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/merge-descriptors": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
+ "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/merge-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
+ "license": "MIT"
+ },
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/methods": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/micromark": {
+ "version": "2.11.4",
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-2.11.4.tgz",
+ "integrity": "sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==",
+ "funding": [
+ {
+ "type": "GitHub Sponsors",
+ "url": "https://github.com/sponsors/unifiedjs"
+ },
+ {
+ "type": "OpenCollective",
+ "url": "https://opencollective.com/unified"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.0.0",
+ "parse-entities": "^2.0.0"
+ }
+ },
+ "node_modules/micromark-extension-gfm": {
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-0.3.3.tgz",
+ "integrity": "sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==",
+ "license": "MIT",
+ "dependencies": {
+ "micromark": "~2.11.0",
+ "micromark-extension-gfm-autolink-literal": "~0.5.0",
+ "micromark-extension-gfm-strikethrough": "~0.6.5",
+ "micromark-extension-gfm-table": "~0.4.0",
+ "micromark-extension-gfm-tagfilter": "~0.3.0",
+ "micromark-extension-gfm-task-list-item": "~0.3.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-autolink-literal": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-0.5.7.tgz",
+ "integrity": "sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==",
+ "license": "MIT",
+ "dependencies": {
+ "micromark": "~2.11.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-strikethrough": {
+ "version": "0.6.5",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-0.6.5.tgz",
+ "integrity": "sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==",
+ "license": "MIT",
+ "dependencies": {
+ "micromark": "~2.11.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-table": {
+ "version": "0.4.3",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-0.4.3.tgz",
+ "integrity": "sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==",
+ "license": "MIT",
+ "dependencies": {
+ "micromark": "~2.11.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-tagfilter": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-0.3.0.tgz",
+ "integrity": "sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromark-extension-gfm-task-list-item": {
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-0.3.3.tgz",
+ "integrity": "sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==",
+ "license": "MIT",
+ "dependencies": {
+ "micromark": "~2.11.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+ "license": "MIT",
+ "dependencies": {
+ "braces": "^3.0.3",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/mime": {
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
+ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
+ "license": "MIT",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mimic-fn": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz",
+ "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/minimist": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/minipass": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/mkdirp": {
+ "version": "0.5.6",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
+ "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
+ "license": "MIT",
+ "dependencies": {
+ "minimist": "^1.2.6"
+ },
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "license": "MIT"
+ },
+ "node_modules/mute-stream": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
+ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==",
+ "license": "ISC"
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/negotiator": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/neo-async": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
+ "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
+ "license": "MIT"
+ },
+ "node_modules/node-emoji": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz",
+ "integrity": "sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==",
+ "license": "MIT",
+ "dependencies": {
+ "@sindresorhus/is": "^4.6.0",
+ "char-regex": "^1.0.2",
+ "emojilib": "^2.4.0",
+ "skin-tone": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/node-env-type": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/node-env-type/-/node-env-type-0.0.8.tgz",
+ "integrity": "sha512-EXyxUOlwkuoMm6QHgX3zw06tY6NNpXm3Akf9n1zPUX8UD08FTXBQ9gcS0EWbuSPYqtxMneP72QgdPlLFrn2SpA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/node-fetch": {
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
+ "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
+ "license": "MIT",
+ "dependencies": {
+ "whatwg-url": "^5.0.0"
+ },
+ "engines": {
+ "node": "4.x || >=6.0.0"
+ },
+ "peerDependencies": {
+ "encoding": "^0.1.0"
+ },
+ "peerDependenciesMeta": {
+ "encoding": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/node-releases": {
+ "version": "2.0.27",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
+ "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
+ "license": "MIT"
+ },
+ "node_modules/normalize-package-data": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.2.tgz",
+ "integrity": "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "hosted-git-info": "^7.0.0",
+ "semver": "^7.3.5",
+ "validate-npm-package-license": "^3.0.4"
+ },
+ "engines": {
+ "node": "^16.14.0 || >=18.0.0"
+ }
+ },
+ "node_modules/npm-install-checks": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz",
+ "integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==",
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "semver": "^7.1.1"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/npm-normalize-package-bin": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz",
+ "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==",
+ "license": "ISC",
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/npm-package-arg": {
+ "version": "11.0.3",
+ "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.3.tgz",
+ "integrity": "sha512-sHGJy8sOC1YraBywpzQlIKBE4pBbGbiF95U6Auspzyem956E0+FtDtsx1ZxlOJkQCZ1AFXAY/yuvtFYrOxF+Bw==",
+ "license": "ISC",
+ "dependencies": {
+ "hosted-git-info": "^7.0.0",
+ "proc-log": "^4.0.0",
+ "semver": "^7.3.5",
+ "validate-npm-package-name": "^5.0.0"
+ },
+ "engines": {
+ "node": "^16.14.0 || >=18.0.0"
+ }
+ },
+ "node_modules/npm-pick-manifest": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.1.0.tgz",
+ "integrity": "sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==",
+ "license": "ISC",
+ "dependencies": {
+ "npm-install-checks": "^6.0.0",
+ "npm-normalize-package-bin": "^3.0.0",
+ "npm-package-arg": "^11.0.0",
+ "semver": "^7.3.5"
+ },
+ "engines": {
+ "node": "^16.14.0 || >=18.0.0"
+ }
+ },
+ "node_modules/npm-run-path": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/on-finished": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
+ "license": "MIT",
+ "dependencies": {
+ "ee-first": "1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/once": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
+ "license": "ISC",
+ "dependencies": {
+ "wrappy": "1"
+ }
+ },
+ "node_modules/onetime": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+ "license": "MIT",
+ "dependencies": {
+ "mimic-fn": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/onetime/node_modules/mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/ora": {
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz",
+ "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==",
+ "license": "MIT",
+ "dependencies": {
+ "bl": "^4.1.0",
+ "chalk": "^4.1.0",
+ "cli-cursor": "^3.1.0",
+ "cli-spinners": "^2.5.0",
+ "is-interactive": "^1.0.0",
+ "is-unicode-supported": "^0.1.0",
+ "log-symbols": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "wcwidth": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-locate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/p-try": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/package-json-from-dist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
+ "license": "BlueOak-1.0.0"
+ },
+ "node_modules/package-manager-detector": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.1.2.tgz",
+ "integrity": "sha512-iePyefLTOm2gEzbaZKSW+eBMjg+UYsQvUKxmvGXAQ987K16efBg10MxIjZs08iyX+DY2/owKY9DIdu193kX33w==",
+ "license": "MIT"
+ },
+ "node_modules/papaparse": {
+ "version": "5.5.3",
+ "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.5.3.tgz",
+ "integrity": "sha512-5QvjGxYVjxO59MGU2lHVYpRWBBtKHnlIAcSe1uNFCkkptUh63NFRj0FJQm7nR67puEruUci/ZkjmEFrjCAyP4A==",
+ "license": "MIT"
+ },
+ "node_modules/parse-entities": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
+ "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
+ "license": "MIT",
+ "dependencies": {
+ "character-entities": "^1.0.0",
+ "character-entities-legacy": "^1.0.0",
+ "character-reference-invalid": "^1.0.0",
+ "is-alphanumerical": "^1.0.0",
+ "is-decimal": "^1.0.0",
+ "is-hexadecimal": "^1.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/parse-srcset": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz",
+ "integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==",
+ "license": "MIT"
+ },
+ "node_modules/parseurl": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-scurry": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "lru-cache": "^10.2.0",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/path-to-regexp": {
+ "version": "0.1.12",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
+ "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
+ "license": "MIT"
+ },
+ "node_modules/path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/pify": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
+ "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/pirates": {
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz",
+ "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/pkg-dir": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
+ "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/pkg-up": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz",
+ "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==",
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pluralize": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz",
+ "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.6",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "nanoid": "^3.3.11",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/preferred-pm": {
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.4.tgz",
+ "integrity": "sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==",
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^5.0.0",
+ "find-yarn-workspace-root2": "1.2.16",
+ "path-exists": "^4.0.0",
+ "which-pm": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/preferred-pm/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/preferred-pm/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/preferred-pm/node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "license": "MIT",
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/preferred-pm/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/preferred-pm/node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/prettier": {
+ "version": "2.8.8",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
+ "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
+ "license": "MIT",
+ "bin": {
+ "prettier": "bin-prettier.js"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ },
+ "funding": {
+ "url": "https://github.com/prettier/prettier?sponsor=1"
+ }
+ },
+ "node_modules/prism-react-renderer": {
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-1.3.5.tgz",
+ "integrity": "sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=0.14.9"
+ }
+ },
+ "node_modules/proc-log": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz",
+ "integrity": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==",
+ "license": "ISC",
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/promise-inflight": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
+ "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==",
+ "license": "ISC"
+ },
+ "node_modules/promise-retry": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
+ "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
+ "license": "MIT",
+ "dependencies": {
+ "err-code": "^2.0.2",
+ "retry": "^0.12.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/prop-types": {
+ "version": "15.8.1",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
+ "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
+ "license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.13.1"
+ }
+ },
+ "node_modules/prop-types/node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "license": "MIT"
+ },
+ "node_modules/property-information": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz",
+ "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==",
+ "license": "MIT",
+ "dependencies": {
+ "xtend": "^4.0.0"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/proxy-addr": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
+ "license": "MIT",
+ "dependencies": {
+ "forwarded": "0.2.0",
+ "ipaddr.js": "1.9.1"
+ },
+ "engines": {
+ "node": ">= 0.10"
+ }
+ },
+ "node_modules/qs": {
+ "version": "6.14.0",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
+ "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">=0.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/range-parser": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/raw-body": {
+ "version": "2.5.2",
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
+ "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
+ "license": "MIT",
+ "dependencies": {
+ "bytes": "3.1.2",
+ "http-errors": "2.0.0",
+ "iconv-lite": "0.4.24",
+ "unpipe": "1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/react": {
+ "version": "19.2.0",
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz",
+ "integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-dom": {
+ "version": "19.2.0",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz",
+ "integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==",
+ "license": "MIT",
+ "dependencies": {
+ "scheduler": "^0.27.0"
+ },
+ "peerDependencies": {
+ "react": "^19.2.0"
+ }
+ },
+ "node_modules/react-hook-form": {
+ "version": "7.66.0",
+ "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.66.0.tgz",
+ "integrity": "sha512-xXBqsWGKrY46ZqaHDo+ZUYiMUgi8suYu5kdrS20EG8KiL7VRQitEbNjm+UcrDYrNi1YLyfpmAeGjCZYXLT9YBw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/react-hook-form"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17 || ^18 || ^19"
+ }
+ },
+ "node_modules/react-is": {
+ "version": "17.0.2",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
+ "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==",
+ "license": "MIT"
+ },
+ "node_modules/react-markdown": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-6.0.3.tgz",
+ "integrity": "sha512-kQbpWiMoBHnj9myLlmZG9T1JdoT/OEyHK7hqM6CqFT14MAkgWiWBUYijLyBmxbntaN6dCDicPcUhWhci1QYodg==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/hast": "^2.0.0",
+ "@types/unist": "^2.0.3",
+ "comma-separated-tokens": "^1.0.0",
+ "prop-types": "^15.7.2",
+ "property-information": "^5.3.0",
+ "react-is": "^17.0.0",
+ "remark-parse": "^9.0.0",
+ "remark-rehype": "^8.0.0",
+ "space-separated-tokens": "^1.1.0",
+ "style-to-object": "^0.3.0",
+ "unified": "^9.0.0",
+ "unist-util-visit": "^2.0.0",
+ "vfile": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ },
+ "peerDependencies": {
+ "@types/react": ">=16",
+ "react": ">=16"
+ }
+ },
+ "node_modules/react-refresh": {
+ "version": "0.17.0",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
+ "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-router": {
+ "version": "7.9.5",
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.9.5.tgz",
+ "integrity": "sha512-JmxqrnBZ6E9hWmf02jzNn9Jm3UqyeimyiwzD69NjxGySG6lIz/1LVPsoTCwN7NBX2XjCEa1LIX5EMz1j2b6u6A==",
+ "license": "MIT",
+ "dependencies": {
+ "cookie": "^1.0.1",
+ "set-cookie-parser": "^2.6.0"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ },
+ "peerDependencies": {
+ "react": ">=18",
+ "react-dom": ">=18"
+ },
+ "peerDependenciesMeta": {
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/react-router/node_modules/cookie": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz",
+ "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/react-virtual": {
+ "version": "2.10.4",
+ "resolved": "https://registry.npmjs.org/react-virtual/-/react-virtual-2.10.4.tgz",
+ "integrity": "sha512-Ir6+oPQZTVHfa6+JL9M7cvMILstFZH/H3jqeYeKI4MSUX+rIruVwFC6nGVXw9wqAw8L0Kg2KvfXxI85OvYQdpQ==",
+ "funding": [
+ "https://github.com/sponsors/tannerlinsley"
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "@reach/observe-rect": "^1.1.0"
+ },
+ "peerDependencies": {
+ "react": "^16.6.3 || ^17.0.0"
+ }
+ },
+ "node_modules/readable-stream": {
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
+ "license": "MIT",
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/recast": {
+ "version": "0.23.11",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.11.tgz",
+ "integrity": "sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==",
+ "license": "MIT",
+ "dependencies": {
+ "ast-types": "^0.16.1",
+ "esprima": "~4.0.0",
+ "source-map": "~0.6.1",
+ "tiny-invariant": "^1.3.3",
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/redeyed": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz",
+ "integrity": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==",
+ "license": "MIT",
+ "dependencies": {
+ "esprima": "~4.0.0"
+ }
+ },
+ "node_modules/remark-gfm": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-1.0.0.tgz",
+ "integrity": "sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==",
+ "license": "MIT",
+ "dependencies": {
+ "mdast-util-gfm": "^0.1.0",
+ "micromark-extension-gfm": "^0.3.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-parse": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-9.0.0.tgz",
+ "integrity": "sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==",
+ "license": "MIT",
+ "dependencies": {
+ "mdast-util-from-markdown": "^0.8.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-rehype": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-8.1.0.tgz",
+ "integrity": "sha512-EbCu9kHgAxKmW1yEYjx3QafMyGY3q8noUbNUI5xyKbaFP89wbhDrKxyIQNukNYthzjNHZu6J7hwFg7hRm1svYA==",
+ "license": "MIT",
+ "dependencies": {
+ "mdast-util-to-hast": "^10.2.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/repeat-string": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
+ "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/require-from-string": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/requires-port": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz",
+ "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==",
+ "license": "MIT"
+ },
+ "node_modules/restore-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
+ "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
+ "license": "MIT",
+ "dependencies": {
+ "onetime": "^5.1.0",
+ "signal-exit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/retry": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
+ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/reusify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
+ "license": "MIT",
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/rimraf": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
+ "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
+ "license": "ISC",
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ }
+ },
+ "node_modules/rimraf/node_modules/brace-expansion": {
+ "version": "1.1.12",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/rimraf/node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "deprecated": "Glob versions prior to v9 are no longer supported",
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/rimraf/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/rollup": {
+ "version": "4.53.2",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.2.tgz",
+ "integrity": "sha512-MHngMYwGJVi6Fmnk6ISmnk7JAHRNF0UkuucA0CUW3N3a4KnONPEZz+vUanQP/ZC/iY1Qkf3bwPWzyY84wEks1g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/estree": "1.0.8"
+ },
+ "bin": {
+ "rollup": "dist/bin/rollup"
+ },
+ "engines": {
+ "node": ">=18.0.0",
+ "npm": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "@rollup/rollup-android-arm-eabi": "4.53.2",
+ "@rollup/rollup-android-arm64": "4.53.2",
+ "@rollup/rollup-darwin-arm64": "4.53.2",
+ "@rollup/rollup-darwin-x64": "4.53.2",
+ "@rollup/rollup-freebsd-arm64": "4.53.2",
+ "@rollup/rollup-freebsd-x64": "4.53.2",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.53.2",
+ "@rollup/rollup-linux-arm-musleabihf": "4.53.2",
+ "@rollup/rollup-linux-arm64-gnu": "4.53.2",
+ "@rollup/rollup-linux-arm64-musl": "4.53.2",
+ "@rollup/rollup-linux-loong64-gnu": "4.53.2",
+ "@rollup/rollup-linux-ppc64-gnu": "4.53.2",
+ "@rollup/rollup-linux-riscv64-gnu": "4.53.2",
+ "@rollup/rollup-linux-riscv64-musl": "4.53.2",
+ "@rollup/rollup-linux-s390x-gnu": "4.53.2",
+ "@rollup/rollup-linux-x64-gnu": "4.53.2",
+ "@rollup/rollup-linux-x64-musl": "4.53.2",
+ "@rollup/rollup-openharmony-arm64": "4.53.2",
+ "@rollup/rollup-win32-arm64-msvc": "4.53.2",
+ "@rollup/rollup-win32-ia32-msvc": "4.53.2",
+ "@rollup/rollup-win32-x64-gnu": "4.53.2",
+ "@rollup/rollup-win32-x64-msvc": "4.53.2",
+ "fsevents": "~2.3.2"
+ }
+ },
+ "node_modules/run-async": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
+ "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "node_modules/rxjs": {
+ "version": "7.8.2",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz",
+ "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "tslib": "^2.1.0"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "license": "MIT"
+ },
+ "node_modules/sanitize-html": {
+ "version": "2.17.0",
+ "resolved": "https://registry.npmjs.org/sanitize-html/-/sanitize-html-2.17.0.tgz",
+ "integrity": "sha512-dLAADUSS8rBwhaevT12yCezvioCA+bmUTPH/u57xKPT8d++voeYE6HeluA/bPbQ15TwDBG2ii+QZIEmYx8VdxA==",
+ "license": "MIT",
+ "dependencies": {
+ "deepmerge": "^4.2.2",
+ "escape-string-regexp": "^4.0.0",
+ "htmlparser2": "^8.0.0",
+ "is-plain-object": "^5.0.0",
+ "parse-srcset": "^1.0.2",
+ "postcss": "^8.3.11"
+ }
+ },
+ "node_modules/sanitize-html/node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/scheduler": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
+ "license": "MIT"
+ },
+ "node_modules/section-matter": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
+ "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
+ "license": "MIT",
+ "dependencies": {
+ "extend-shallow": "^2.0.1",
+ "kind-of": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/section-matter/node_modules/kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/semver": {
+ "version": "7.5.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.2.tgz",
+ "integrity": "sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==",
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/semver-diff": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz",
+ "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==",
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/semver-diff/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/semver/node_modules/lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/semver/node_modules/yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "license": "ISC"
+ },
+ "node_modules/send": {
+ "version": "0.19.0",
+ "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
+ "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "2.6.9",
+ "depd": "2.0.0",
+ "destroy": "1.2.0",
+ "encodeurl": "~1.0.2",
+ "escape-html": "~1.0.3",
+ "etag": "~1.8.1",
+ "fresh": "0.5.2",
+ "http-errors": "2.0.0",
+ "mime": "1.6.0",
+ "ms": "2.1.3",
+ "on-finished": "2.4.1",
+ "range-parser": "~1.2.1",
+ "statuses": "2.0.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/send/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/send/node_modules/debug/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "license": "MIT"
+ },
+ "node_modules/send/node_modules/encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/serve-static": {
+ "version": "1.16.2",
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
+ "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
+ "license": "MIT",
+ "dependencies": {
+ "encodeurl": "~2.0.0",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.3",
+ "send": "0.19.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/set-cookie-parser": {
+ "version": "2.7.2",
+ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
+ "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
+ "license": "MIT"
+ },
+ "node_modules/setprototypeof": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
+ "license": "ISC"
+ },
+ "node_modules/shallow-clone": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
+ "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
+ "license": "MIT",
+ "dependencies": {
+ "kind-of": "^6.0.2"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shallow-clone/node_modules/kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "license": "MIT",
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/side-channel": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3",
+ "side-channel-list": "^1.0.0",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/signal-exit": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
+ "license": "ISC"
+ },
+ "node_modules/skin-tone": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz",
+ "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==",
+ "license": "MIT",
+ "dependencies": {
+ "unicode-emoji-modifier-base": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/slash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
+ "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-support": {
+ "version": "0.5.21",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+ "license": "MIT",
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
+ "node_modules/space-separated-tokens": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz",
+ "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/spdx-correct": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz",
+ "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "spdx-expression-parse": "^3.0.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "node_modules/spdx-exceptions": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz",
+ "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==",
+ "license": "CC-BY-3.0"
+ },
+ "node_modules/spdx-expression-parse": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz",
+ "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==",
+ "license": "MIT",
+ "dependencies": {
+ "spdx-exceptions": "^2.1.0",
+ "spdx-license-ids": "^3.0.0"
+ }
+ },
+ "node_modules/spdx-license-ids": {
+ "version": "3.0.22",
+ "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz",
+ "integrity": "sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==",
+ "license": "CC0-1.0"
+ },
+ "node_modules/sprintf-js": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/stackframe": {
+ "version": "1.3.4",
+ "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz",
+ "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==",
+ "license": "MIT"
+ },
+ "node_modules/statuses": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
+ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "~5.2.0"
+ }
+ },
+ "node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs": {
+ "name": "string-width",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi-cjs": {
+ "name": "strip-ansi",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/strip-bom-string": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
+ "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/strip-final-newline": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/style-to-object": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz",
+ "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==",
+ "license": "MIT",
+ "dependencies": {
+ "inline-style-parser": "0.1.1"
+ }
+ },
+ "node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/supports-hyperlinks": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.2.0.tgz",
+ "integrity": "sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==",
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0",
+ "supports-color": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=14.18"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1"
+ }
+ },
+ "node_modules/temp": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz",
+ "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==",
+ "license": "MIT",
+ "dependencies": {
+ "mkdirp": "^0.5.1",
+ "rimraf": "~2.6.2"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/through": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
+ "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
+ "license": "MIT"
+ },
+ "node_modules/tiny-invariant": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
+ "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
+ "license": "MIT"
+ },
+ "node_modules/tmp": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz",
+ "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "license": "MIT",
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/toidentifier": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
+ "node_modules/tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
+ "license": "MIT"
+ },
+ "node_modules/trough": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/trough/-/trough-1.0.5.tgz",
+ "integrity": "sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ },
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
+ "license": "0BSD"
+ },
+ "node_modules/type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/type-is": {
+ "version": "1.6.18",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
+ "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
+ "license": "MIT",
+ "dependencies": {
+ "media-typer": "0.3.0",
+ "mime-types": "~2.1.24"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/typescript": {
+ "version": "5.9.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
+ "node_modules/uglify-js": {
+ "version": "3.19.3",
+ "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz",
+ "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==",
+ "license": "BSD-2-Clause",
+ "optional": true,
+ "bin": {
+ "uglifyjs": "bin/uglifyjs"
+ },
+ "engines": {
+ "node": ">=0.8.0"
+ }
+ },
+ "node_modules/undici-types": {
+ "version": "6.21.0",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
+ "license": "MIT"
+ },
+ "node_modules/unicode-emoji-modifier-base": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz",
+ "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/unified": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.2.tgz",
+ "integrity": "sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==",
+ "license": "MIT",
+ "dependencies": {
+ "bail": "^1.0.0",
+ "extend": "^3.0.0",
+ "is-buffer": "^2.0.0",
+ "is-plain-obj": "^2.0.0",
+ "trough": "^1.0.0",
+ "vfile": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-builder": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-builder/-/unist-builder-2.0.3.tgz",
+ "integrity": "sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-generated": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz",
+ "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-is": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz",
+ "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-position": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-3.1.0.tgz",
+ "integrity": "sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==",
+ "license": "MIT",
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-stringify-position": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz",
+ "integrity": "sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/unpipe": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/update-browserslist-db": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz",
+ "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "escalade": "^3.2.0",
+ "picocolors": "^1.1.1"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
+ "license": "MIT"
+ },
+ "node_modules/utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4.0"
+ }
+ },
+ "node_modules/validate-npm-package-license": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+ "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "spdx-correct": "^3.0.0",
+ "spdx-expression-parse": "^3.0.0"
+ }
+ },
+ "node_modules/validate-npm-package-name": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz",
+ "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==",
+ "license": "ISC",
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/vary": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/vfile": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-4.2.1.tgz",
+ "integrity": "sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "is-buffer": "^2.0.0",
+ "unist-util-stringify-position": "^2.0.0",
+ "vfile-message": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/vfile-message": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-2.0.4.tgz",
+ "integrity": "sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-stringify-position": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/vite": {
+ "version": "5.4.21",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz",
+ "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "esbuild": "^0.21.3",
+ "postcss": "^8.4.43",
+ "rollup": "^4.20.0"
+ },
+ "bin": {
+ "vite": "bin/vite.js"
+ },
+ "engines": {
+ "node": "^18.0.0 || >=20.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/vitejs/vite?sponsor=1"
+ },
+ "optionalDependencies": {
+ "fsevents": "~2.3.3"
+ },
+ "peerDependencies": {
+ "@types/node": "^18.0.0 || >=20.0.0",
+ "less": "*",
+ "lightningcss": "^1.21.0",
+ "sass": "*",
+ "sass-embedded": "*",
+ "stylus": "*",
+ "sugarss": "*",
+ "terser": "^5.4.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/node": {
+ "optional": true
+ },
+ "less": {
+ "optional": true
+ },
+ "lightningcss": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ },
+ "sass-embedded": {
+ "optional": true
+ },
+ "stylus": {
+ "optional": true
+ },
+ "sugarss": {
+ "optional": true
+ },
+ "terser": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/warn-once": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/warn-once/-/warn-once-0.1.1.tgz",
+ "integrity": "sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==",
+ "license": "MIT"
+ },
+ "node_modules/wcwidth": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
+ "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==",
+ "license": "MIT",
+ "dependencies": {
+ "defaults": "^1.0.3"
+ }
+ },
+ "node_modules/webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "license": "MIT",
+ "dependencies": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ },
+ "node_modules/which": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz",
+ "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==",
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^3.1.1"
+ },
+ "bin": {
+ "node-which": "bin/which.js"
+ },
+ "engines": {
+ "node": "^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/which-pm": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/which-pm/-/which-pm-2.2.0.tgz",
+ "integrity": "sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==",
+ "license": "MIT",
+ "dependencies": {
+ "load-yaml-file": "^0.2.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8.15"
+ }
+ },
+ "node_modules/which-pm/node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/widest-line": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz",
+ "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==",
+ "license": "MIT",
+ "dependencies": {
+ "string-width": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/wordwrap": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
+ "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==",
+ "license": "MIT"
+ },
+ "node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs": {
+ "name": "wrap-ansi",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrappy": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
+ "license": "ISC"
+ },
+ "node_modules/write-file-atomic": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz",
+ "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==",
+ "license": "ISC",
+ "dependencies": {
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/write-file-atomic/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/ws": {
+ "version": "8.18.3",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
+ "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": ">=5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/xtend": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "license": "ISC"
+ },
+ "node_modules/yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/zwitch": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-1.0.5.tgz",
+ "integrity": "sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/wooorm"
+ }
+ }
+ }
+}
diff --git a/examples/user-management/refine-user-management/package.json b/examples/user-management/refine-user-management/package.json
index f91969089ae21..dc17e87c34d6c 100644
--- a/examples/user-management/refine-user-management/package.json
+++ b/examples/user-management/refine-user-management/package.json
@@ -4,30 +4,25 @@
"private": true,
"type": "module",
"dependencies": {
- "@refinedev/cli": "^2.5.1",
- "@refinedev/core": "^4.5.8",
- "@refinedev/inferencer": "^3.1.4",
- "@refinedev/kbar": "^1.1.0",
- "@refinedev/react-hook-form": "^4.4.0",
- "@refinedev/react-router-v6": "^4.1.0",
- "@refinedev/supabase": "^5.0.0",
- "react": "^18.0.0",
- "react-dom": "^18.0.0",
- "react-hook-form": "^7.45.0",
- "react-router-dom": "^6.8.1"
+ "@refinedev/cli": "^2.16.50",
+ "@refinedev/core": "^5.0.5",
+ "@refinedev/inferencer": "^6.0.2",
+ "@refinedev/kbar": "^2.0.1",
+ "@refinedev/react-hook-form": "^5.0.2",
+ "@refinedev/react-router": "^2.0.3",
+ "@refinedev/supabase": "^6.0.1",
+ "react": "^19.1.0",
+ "react-dom": "^19.1.0",
+ "react-hook-form": "^7.57.0",
+ "react-router": "^7.0.2"
},
"devDependencies": {
- "@types/node": "^18.16.2",
- "@types/react": "^18.0.0",
- "@types/react-dom": "^18.0.0",
- "@typescript-eslint/eslint-plugin": "^5.57.1",
- "@typescript-eslint/parser": "^5.57.1",
- "@vitejs/plugin-react": "^4.0.0",
- "eslint": "^8.38.0",
- "eslint-plugin-react-hooks": "^4.6.0",
- "eslint-plugin-react-refresh": "^0.3.4",
- "typescript": "^4.7.4",
- "vite": "^4.3.1"
+ "@types/node": "^20",
+ "@types/react": "^19.1.0",
+ "@types/react-dom": "^19.1.0",
+ "@vitejs/plugin-react": "^4.2.1",
+ "typescript": "^5.8.3",
+ "vite": "^5.4.15"
},
"scripts": {
"dev": "refine dev",
diff --git a/examples/user-management/refine-user-management/public/favicon.ico b/examples/user-management/refine-user-management/public/favicon.ico
index 2f05c5f484fbf..a3df394d64c76 100644
Binary files a/examples/user-management/refine-user-management/public/favicon.ico and b/examples/user-management/refine-user-management/public/favicon.ico differ
diff --git a/examples/user-management/refine-user-management/src/App.tsx b/examples/user-management/refine-user-management/src/App.tsx
index 98e42e2e346c8..48e3f0d979010 100644
--- a/examples/user-management/refine-user-management/src/App.tsx
+++ b/examples/user-management/refine-user-management/src/App.tsx
@@ -1,58 +1,58 @@
-import { Authenticated, Refine } from '@refinedev/core';
-import { RefineKbar, RefineKbarProvider } from '@refinedev/kbar';
+import { Authenticated, Refine } from "@refinedev/core";
-import routerBindings, {
- CatchAllNavigate,
- DocumentTitleHandler,
- UnsavedChangesNotifier,
-} from '@refinedev/react-router-v6';
-import { dataProvider, liveProvider } from '@refinedev/supabase';
-import { BrowserRouter, Outlet, Route, Routes } from 'react-router-dom';
-import './App.css';
-import authProvider from './authProvider';
-import { supabaseClient } from './utility';
-import Account from './components/account';
-import Auth from './components/auth';
+import routerProvider, {
+ CatchAllNavigate,
+ DocumentTitleHandler,
+ UnsavedChangesNotifier,
+} from "@refinedev/react-router";
+import { BrowserRouter, Outlet, Route, Routes } from "react-router";
+
+import { supabaseClient } from "./providers/supabase-client";
+import { authProvider } from "./providers/auth-provider";
+import { dataProvider, liveProvider } from "@refinedev/supabase";
+
+import Account from "./components/account";
+import Auth from "./components/auth";
+
+import "./App.css";
function App() {
- return (
-
-
-
-
- }
- >
-
-
- }
- >
- } />
-
- } />}
- >
- } />
-
-
-
-
-
-
-
-
- );
+ return (
+
+
+
+ }
+ >
+
+
+ }
+ >
+ } />
+
+ } />}
+ >
+ } />
+
+
+
+
+
+
+ );
}
export default App;
diff --git a/examples/user-management/refine-user-management/src/components/account.tsx b/examples/user-management/refine-user-management/src/components/account.tsx
index 08292fa4714c3..72177184b303d 100644
--- a/examples/user-management/refine-user-management/src/components/account.tsx
+++ b/examples/user-management/refine-user-management/src/components/account.tsx
@@ -1,20 +1,22 @@
import { BaseKey, useGetIdentity, useLogout } from "@refinedev/core";
+
import { useForm } from "@refinedev/react-hook-form";
import { Controller } from "react-hook-form";
+
import Avatar from "./avatar";
interface IUserIdentity {
id?: BaseKey;
username: string;
name: string;
-};
+}
export interface IProfile {
id?: string;
username?: string;
website?: string;
avatar_url?: string;
-};
+}
export default function Account() {
const { data: userIdentity } = useGetIdentity();
@@ -22,7 +24,7 @@ export default function Account() {
const { mutate: logOut } = useLogout();
const {
- refineCore: { formLoading, queryResult, onFinish },
+ refineCore: { formLoading, query, onFinish },
register,
control,
handleSubmit,
@@ -49,9 +51,10 @@ export default function Account() {
size={150}
onUpload={(filePath) => {
onFinish({
- ...queryResult?.data?.data,
+ ...query?.data?.data,
avatar_url: filePath,
- onMutationError: (data: { message: string; }) => alert(data?.message),
+ onMutationError: (data: { message: string }) =>
+ alert(data?.message),
});
field.onChange({
target: {
@@ -104,4 +107,4 @@ export default function Account() {
);
-};
+}
diff --git a/examples/user-management/refine-user-management/src/components/auth.tsx b/examples/user-management/refine-user-management/src/components/auth.tsx
index 1c043ffcb3154..d96d75fc235a8 100644
--- a/examples/user-management/refine-user-management/src/components/auth.tsx
+++ b/examples/user-management/refine-user-management/src/components/auth.tsx
@@ -1,20 +1,23 @@
import { useState } from "react";
+
import { useLogin } from "@refinedev/core";
export default function Auth() {
- const [email, setEmail] = useState("");
- const { isLoading, mutate: login } = useLogin();
-
- const handleLogin = async (event: { preventDefault: () => void }) => {
- event.preventDefault();
- login({ email });
- };
+ const [email, setEmail] = useState("");
+ const { isPending, mutate: login } = useLogin();
+
+ const handleLogin = async (event: { preventDefault: () => void }) => {
+ event.preventDefault();
+ login({ email });
+ };
return (
-
Supabase + refine
-
Sign in via magic link with your email below
+
Supabase + Refine
+
+ Sign in via magic link with your email below
+
);
-};
+}
diff --git a/examples/user-management/refine-user-management/src/components/avatar.tsx b/examples/user-management/refine-user-management/src/components/avatar.tsx
index 0feb85b2982e6..6299ae63181e3 100644
--- a/examples/user-management/refine-user-management/src/components/avatar.tsx
+++ b/examples/user-management/refine-user-management/src/components/avatar.tsx
@@ -1,5 +1,6 @@
import { useEffect, useState } from "react";
-import { supabaseClient } from "../utility/supabaseClient";
+
+import { supabaseClient } from "../providers/supabase-client";
type TAvatarProps = {
url?: string;
@@ -7,11 +8,7 @@ type TAvatarProps = {
onUpload: (filePath: string) => void;
};
-export default function Avatar({
- url,
- size,
- onUpload,
-}: TAvatarProps) {
+export default function Avatar({ url, size, onUpload }: TAvatarProps) {
const [avatarUrl, setAvatarUrl] = useState("");
const [uploading, setUploading] = useState(false);
@@ -96,4 +93,4 @@ export default function Avatar({